commit d605ae15f2cb1af48014930e26f6d3d1cc966cd9 Author: stephane.david Date: Mon Mar 23 10:27:15 2026 +0100 First version diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..1346bf0 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,73 @@ +name: scanopy + +services: + daemon: + image: ghcr.io/scanopy/scanopy/daemon:latest + container_name: scanopy-daemon + network_mode: host + privileged: true + restart: unless-stopped + environment: + SCANOPY_LOG_LEVEL: info + SCANOPY_SERVER_URL: http://127.0.0.1:60072 + 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 + environment: + POSTGRES_DB: scanopy + POSTGRES_USER: postgres + POSTGRES_PASSWORD: sda101176 + 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" + environment: + SCANOPY_LOG_LEVEL: info + SCANOPY_DATABASE_URL: postgresql://postgres:sda101176@postgres:5432/scanopy + SCANOPY_WEB_EXTERNAL_PATH: /app/static + SCANOPY_PUBLIC_URL: http://localhost:60072 + SCANOPY_INTEGRATED_DAEMON_URL: http://host.docker.internal:60073 + volumes: + - ./data:/data + extra_hosts: + - "host.docker.internal:host-gateway" + depends_on: + postgres: + condition: service_healthy + daemon: + condition: service_started + restart: unless-stopped + networks: + - scanopy + +volumes: + postgres_data: + daemon-config: + +networks: + scanopy: + driver: bridge + ipam: + config: + - subnet: 172.61.0.0/16 + gateway: 172.61.0.1 \ No newline at end of file