mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
fix(docker): fix cgit clone-prefix
Additionally, clone-prefix is now configurable via environment variables: - CGIT_CLONE_PREFIX_PHP - CGIT_CLONE_PREFIX_FASTAPI These vars can be used by production to customize the clone prefix. Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
parent
c4163547f6
commit
db730ad8cb
3 changed files with 7 additions and 3 deletions
|
@ -88,8 +88,9 @@ services:
|
|||
init: true
|
||||
environment:
|
||||
- AUR_CONFIG=/aurweb/conf/config
|
||||
- CGIT_CLONE_PREFIX=$CGIT_CLONE_PREFIX_PHP
|
||||
entrypoint: /docker/cgit-entrypoint.sh
|
||||
command: /docker/scripts/run-cgit.sh 3000 "https://localhost:8443/cgit"
|
||||
command: /docker/scripts/run-cgit.sh 3000
|
||||
healthcheck:
|
||||
test: "bash /docker/health/cgit.sh 3000"
|
||||
depends_on:
|
||||
|
@ -103,8 +104,9 @@ services:
|
|||
init: true
|
||||
environment:
|
||||
- AUR_CONFIG=/aurweb/conf/config
|
||||
- CGIT_CLONE_PREFIX=$CGIT_CLONE_PREFIX_FASTAPI
|
||||
entrypoint: /docker/cgit-entrypoint.sh
|
||||
command: /docker/scripts/run-cgit.sh 3000 "https://localhost:8444/cgit"
|
||||
command: /docker/scripts/run-cgit.sh 3000
|
||||
healthcheck:
|
||||
test: "bash /docker/health/cgit.sh 3000"
|
||||
depends_on:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue