mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
fix(docker): supply AUR_CONFIG_IMMUTABLE for docker-compose
Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
parent
5b350bc361
commit
84beacd427
1 changed files with 5 additions and 0 deletions
|
@ -72,6 +72,8 @@ services:
|
|||
mariadb_init:
|
||||
image: aurweb:latest
|
||||
init: true
|
||||
environment:
|
||||
- AUR_CONFIG_IMMUTABLE=${AUR_CONFIG_IMMUTABLE:-0}
|
||||
entrypoint: /docker/mariadb-init-entrypoint.sh
|
||||
command: echo "MariaDB tables initialized."
|
||||
volumes:
|
||||
|
@ -104,6 +106,7 @@ services:
|
|||
environment:
|
||||
- AUR_CONFIG=/aurweb/conf/config
|
||||
- SSH_CMDLINE=${SSH_CMDLINE:-ssh ssh://aur@localhost:2222}
|
||||
- AUR_CONFIG_IMMUTABLE=${AUR_CONFIG_IMMUTABLE:-0}
|
||||
entrypoint: /docker/git-entrypoint.sh
|
||||
command: /docker/scripts/run-sshd.sh
|
||||
ports:
|
||||
|
@ -190,6 +193,7 @@ services:
|
|||
- AUR_CONFIG=/aurweb/conf/config
|
||||
- AURWEB_PHP_PREFIX=${AURWEB_PHP_PREFIX}
|
||||
- AURWEB_SSHD_PREFIX=${AURWEB_SSHD_PREFIX}
|
||||
- AUR_CONFIG_IMMUTABLE=${AUR_CONFIG_IMMUTABLE:-0}
|
||||
entrypoint: /docker/php-entrypoint.sh
|
||||
command: /docker/scripts/run-php.sh
|
||||
healthcheck:
|
||||
|
@ -220,6 +224,7 @@ services:
|
|||
- AURWEB_FASTAPI_PREFIX=${AURWEB_FASTAPI_PREFIX}
|
||||
- AURWEB_SSHD_PREFIX=${AURWEB_SSHD_PREFIX}
|
||||
- PROMETHEUS_MULTIPROC_DIR=/tmp_prometheus
|
||||
- AUR_CONFIG_IMMUTABLE=${AUR_CONFIG_IMMUTABLE:-0}
|
||||
entrypoint: /docker/fastapi-entrypoint.sh
|
||||
command: /docker/scripts/run-fastapi.sh "${FASTAPI_BACKEND}"
|
||||
healthcheck:
|
||||
|
|
Loading…
Add table
Reference in a new issue