From 9f53e7a0f77f32a4c7e2d1a4ea6bf921757ae405 Mon Sep 17 00:00:00 2001 From: Minecon724 Date: Sat, 5 Apr 2025 14:23:21 +0200 Subject: [PATCH] Update docker-compose.yml --- docker-compose.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 1987613..a595387 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -45,15 +45,17 @@ services: healthcheck: test: ["CMD-SHELL", "pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB"] - nginx: - image: nginx:alpine-slim - restart: unless-stopped - volumes: - - ./nginx.conf:/etc/nginx/nginx.conf:ro - depends_on: - - invidious + anubis: + image: ghcr.io/minecon724/anubis:main + environment: + DIFFICULTY: "1" + TARGET: "http://invidious:3000" + POLICY_FNAME: "/data/cfg/botPolicy.json" ports: - - "192.168.81.2:3000:3000" + - "192.168.81.2:8923:8923" + volumes: + - ./botPolicy.json:/data/cfg/botPolicy.json:ro + volumes: postgresdata: