this repo has no description

should be working now

+9 -1
+9 -1
docker-compose.yml
··· 5 - "3000:3000" 6 env_file: 7 - .env 8 volumes: 9 - ./data:/app/data 10 restart: unless-stopped 11 networks: 12 - default 13 tap: 14 image: ghcr.io/bluesky-social/indigo/tap:latest 15 platform: linux/amd64 16 depends_on: 17 - - app 18 env_file: 19 - .env 20 environment:
··· 5 - "3000:3000" 6 env_file: 7 - .env 8 + environment: 9 + HOST: 0.0.0.0 10 volumes: 11 - ./data:/app/data 12 restart: unless-stopped 13 networks: 14 - default 15 + healthcheck: 16 + test: ["CMD", "node", "-e", "fetch('http://localhost:3000/').then(() => process.exit(0)).catch(() => process.exit(1))"] 17 + interval: 5s 18 + timeout: 3s 19 + retries: 5 20 tap: 21 image: ghcr.io/bluesky-social/indigo/tap:latest 22 platform: linux/amd64 23 depends_on: 24 + app: 25 + condition: service_healthy 26 env_file: 27 - .env 28 environment: