Update docker-compose.yml
This commit is contained in:
parent
7be5fa07b1
commit
9f53e7a0f7
1 changed files with 10 additions and 8 deletions
|
|
@ -45,15 +45,17 @@ services:
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD-SHELL", "pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB"]
|
test: ["CMD-SHELL", "pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB"]
|
||||||
|
|
||||||
nginx:
|
anubis:
|
||||||
image: nginx:alpine-slim
|
image: ghcr.io/minecon724/anubis:main
|
||||||
restart: unless-stopped
|
environment:
|
||||||
volumes:
|
DIFFICULTY: "1"
|
||||||
- ./nginx.conf:/etc/nginx/nginx.conf:ro
|
TARGET: "http://invidious:3000"
|
||||||
depends_on:
|
POLICY_FNAME: "/data/cfg/botPolicy.json"
|
||||||
- invidious
|
|
||||||
ports:
|
ports:
|
||||||
- "192.168.81.2:3000:3000"
|
- "192.168.81.2:8923:8923"
|
||||||
|
volumes:
|
||||||
|
- ./botPolicy.json:/data/cfg/botPolicy.json:ro
|
||||||
|
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
postgresdata:
|
postgresdata:
|
||||||
|
|
|
||||||
Reference in a new issue