mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
feat(docker): expose cgit-{php,fastapi} on {13000,13001}
This change exposes the uwsgi daemon we use for cgit on: - PHP: docker-host:13000 - FastAPI: docker-host:13001 These ports can then be used to take advantage of cgit on a production server that hosts nginx in front of Docker. Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
parent
db730ad8cb
commit
0b1c3ea539
1 changed files with 4 additions and 0 deletions
|
@ -96,6 +96,8 @@ services:
|
||||||
depends_on:
|
depends_on:
|
||||||
git:
|
git:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
|
ports:
|
||||||
|
- "13000:3000"
|
||||||
volumes:
|
volumes:
|
||||||
- git_data:/aurweb/aur.git
|
- git_data:/aurweb/aur.git
|
||||||
|
|
||||||
|
@ -112,6 +114,8 @@ services:
|
||||||
depends_on:
|
depends_on:
|
||||||
git:
|
git:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
|
ports:
|
||||||
|
- "13001:3000"
|
||||||
volumes:
|
volumes:
|
||||||
- git_data:/aurweb/aur.git
|
- git_data:/aurweb/aur.git
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue