this repo has no description

should be working now

+9 -1
+9 -1
docker-compose.yml
··· 5 5 - "3000:3000" 6 6 env_file: 7 7 - .env 8 + environment: 9 + HOST: 0.0.0.0 8 10 volumes: 9 11 - ./data:/app/data 10 12 restart: unless-stopped 11 13 networks: 12 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 13 20 tap: 14 21 image: ghcr.io/bluesky-social/indigo/tap:latest 15 22 platform: linux/amd64 16 23 depends_on: 17 - - app 24 + app: 25 + condition: service_healthy 18 26 env_file: 19 27 - .env 20 28 environment: