Auto Merge of PR 148 - scanopy-ntwk-scan_2026-03-07T12-56-56
List of Services README Generation / Generate Services List (push) Successful in 1m24s
Renovate / renovate (push) Failing after 3m51s

Merged by Trez.One
This commit was merged in pull request #148.
This commit is contained in:
2026-03-07 13:12:21 -05:00
+59
View File
@@ -147,6 +147,61 @@ services:
restart: always
ports:
- 9001:9001
scanopy-daemon:
container_name: scanopy-daemon
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
image: ghcr.io/scanopy/scanopy/daemon:latest
network_mode: host
privileged: true
restart: unless-stopped
volumes:
- scanopy-daemon-config:/root/.config/daemon
- /var/run/docker.sock:/var/run/docker.sock:ro
scanopy-pg:
container_name: scanopy-pg
environment:
POSTGRES_DB: scanopy
POSTGRES_USER: scanopy
POSTGRES_PASSWORD: ${SCANOPY_PG_PASSWORD}
expose:
- 5432
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 10s
timeout: 5s
retries: 5
image: postgres:17-alpine
restart: unless-stopped
volumes:
- scanopy-pg-data:/var/lib/postgresql/data
scanopy-server:
container_name: scanopy-server
image: ghcr.io/scanopy/scanopy/server:latest
depends_on:
scanopy-pg:
condition: service_healthy
scanopy-daemon:
condition: service_started
environment:
SCANOPY_LOG_LEVEL: info
SCANOPY_DATABASE_URL: postgresql://scanopy:${SCANOPY_PG_PASSWORD}@scanopy-pg:5432/scanopy
SCANOPY_WEB_EXTERNAL_PATH: /app/static
SCANOPY_PUBLIC_URL: http://192.168.1.248:60072
SCANOPY_INTEGRATED_DAEMON_URL: http://host.docker.internal:60073
extra_hosts:
- "host.docker.internal:host-gateway"
ports:
- 60072:60072
restart: unless-stopped
volumes:
- ${ULTIMA_DOCKER_DIR}/scanopy:/data
searxng-mcp:
container_name: searxng-mcp
environment:
@@ -211,3 +266,7 @@ services:
volumes:
ollama:
name: ollama
scanopy-daemon-config:
name: scanopy-daemon-config
scanopy-pg-data:
name: scanopy-pg-data