66 lines
1.4 KiB
YAML
66 lines
1.4 KiB
YAML
name: scanopy
|
|
|
|
services:
|
|
daemon:
|
|
image: ghcr.io/scanopy/scanopy/daemon:latest
|
|
container_name: scanopy-daemon
|
|
network_mode: host
|
|
privileged: true
|
|
restart: unless-stopped
|
|
ports:
|
|
- "60073:60073"
|
|
env_file:
|
|
- daemon.env
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "curl -f http://localhost:60073/api/health || exit 1"]
|
|
interval: 5s
|
|
timeout: 3s
|
|
retries: 15
|
|
volumes:
|
|
- daemon-config:/root/.config/daemon
|
|
# Comment out the line below to disable docker discovery
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
|
|
postgres:
|
|
image: postgres:17-alpine
|
|
env_file:
|
|
- pgsql.env
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U postgres"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
restart: unless-stopped
|
|
networks:
|
|
- scanopy
|
|
|
|
server:
|
|
image: ghcr.io/scanopy/scanopy/server:latest
|
|
ports:
|
|
- "60072:60072"
|
|
env_file:
|
|
- server.env
|
|
volumes:
|
|
- ./data:/data
|
|
depends_on:
|
|
postgres:
|
|
condition: service_healthy
|
|
daemon:
|
|
condition: service_healthy
|
|
restart: unless-stopped
|
|
networks:
|
|
- scanopy
|
|
|
|
volumes:
|
|
postgres_data:
|
|
daemon-config:
|
|
|
|
networks:
|
|
scanopy:
|
|
driver: bridge
|
|
ipam:
|
|
config:
|
|
- subnet: 172.31.0.0/16
|
|
gateway: 172.31.0.1 |