Files
agiliton-account/docker-compose.yml
Christian Gick 21780d3e45 fix(deploy): correct docker-compose networks to match infra VM
Use postgres_default, redis_default, agiliton-api external networks.
Remove depends_on (services are in separate compose stacks).

Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
2026-04-10 16:09:13 +03:00

24 lines
466 B
YAML

services:
agiliton-account:
build: .
image: gitea.agiliton.internal/christian/agiliton-account:latest
restart: unless-stopped
ports:
- "4100:4100"
env_file:
- .env
labels:
- "com.centurylinklabs.watchtower.enable=true"
networks:
- postgres_default
- redis_default
- agiliton-api
networks:
postgres_default:
external: true
redis_default:
external: true
agiliton-api:
external: true