mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Additionally, for now, no-op usage of the MARIADB_SOCKET_DIR environment variable. This is particularly useful for a serious production setup, but we don't currently use that. Signed-off-by: Kevin Morris <kevr@0cost.org>
57 lines
1.2 KiB
YAML
57 lines
1.2 KiB
YAML
version: "3.8"
|
|
|
|
services:
|
|
mariadb_init:
|
|
depends_on:
|
|
mariadb:
|
|
condition: service_healthy
|
|
|
|
ca:
|
|
volumes:
|
|
- ./cache:/cache
|
|
|
|
git:
|
|
volumes:
|
|
- git_data:/aurweb/aur.git
|
|
- ./cache:/cache
|
|
|
|
smartgit:
|
|
volumes:
|
|
- git_data:/aurweb/aur.git
|
|
- ./cache:/cache
|
|
- smartgit_run:/var/run/smartgit
|
|
depends_on:
|
|
mariadb:
|
|
condition: service_healthy
|
|
|
|
php-fpm:
|
|
volumes:
|
|
- ./cache:/cache
|
|
- ./aurweb:/aurweb/aurweb
|
|
- ./migrations:/aurweb/migrations
|
|
- ./test:/aurweb/test
|
|
- ./web/html:/aurweb/web/html
|
|
- ./web/template:/aurweb/web/template
|
|
- ./web/lib:/aurweb/web/lib
|
|
- ./templates:/aurweb/templates
|
|
|
|
fastapi:
|
|
volumes:
|
|
- ./cache:/cache
|
|
- ./aurweb:/aurweb/aurweb
|
|
- ./migrations:/aurweb/migrations
|
|
- ./test:/aurweb/test
|
|
- ./web/html:/aurweb/web/html
|
|
- ./web/template:/aurweb/web/template
|
|
- ./web/lib:/aurweb/web/lib
|
|
- ./templates:/aurweb/templates
|
|
|
|
nginx:
|
|
volumes:
|
|
- git_data:/aurweb/aur.git
|
|
- ./cache:/cache
|
|
- ./logs:/var/log/nginx
|
|
- ./web/html:/aurweb/web/html
|
|
- ./web/template:/aurweb/web/template
|
|
- ./web/lib:/aurweb/web/lib
|
|
- smartgit_run:/var/run/smartgit
|