forked from scanopy/scanopy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
78 lines (73 loc) · 2.33 KB
/
docker-compose.yml
File metadata and controls
78 lines (73 loc) · 2.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
x-netvisor-env: &netvisor-env
NETVISOR_LOG_LEVEL: ${NETVISOR_LOG_LEVEL:-info}
NETVISOR_SERVER_PORT: ${NETVISOR_SERVER_PORT:-60072}
NETVISOR_DAEMON_PORT: ${NETVISOR_DAEMON_PORT:-60073}
services:
daemon:
image: mayanayza/netvisor-daemon:latest
container_name: netvisor-daemon
network_mode: host
privileged: true
restart: unless-stopped
environment:
<<: *netvisor-env
NETVISOR_SERVER_TARGET: ${NETVISOR_SERVER_TARGET:-http://127.0.0.1}
NETVISOR_PORT: ${NETVISOR_DAEMON_PORT:-60073}
NETVISOR_BIND_ADDRESS: ${NETVISOR_BIND_ADDRESS:-0.0.0.0}
NETVISOR_NAME: ${NETVISOR_NAME:-netvisor-daemon}
NETVISOR_HEARTBEAT_INTERVAL: ${NETVISOR_HEARTBEAT_INTERVAL:-30}
healthcheck:
test: ["CMD-SHELL", "curl -f http://localhost:${NETVISOR_DAEMON_PORT:-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: netvisor
POSTGRES_USER: postgres
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-password}
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:
- netvisor
server:
image: mayanayza/netvisor-server:latest
ports:
- "${NETVISOR_SERVER_PORT:-60072}:${NETVISOR_SERVER_PORT:-60072}"
environment:
<<: *netvisor-env
NETVISOR_DATABASE_URL: postgresql://postgres:${POSTGRES_PASSWORD:-password}@postgres:5432/netvisor
NETVISOR_WEB_EXTERNAL_PATH: /app/static
# 172.17.0.1 is Docker's default bridge gateway. If your's is different, make sure to change it.
NETVISOR_INTEGRATED_DAEMON_URL: http://172.17.0.1:${NETVISOR_DAEMON_PORT:-60073}
volumes:
- ./data:/data
depends_on:
postgres:
condition: service_healthy
daemon:
condition: service_healthy
restart: unless-stopped
networks:
- netvisor
volumes:
postgres_data:
daemon-config:
networks:
netvisor:
driver: bridge
ipam:
config:
- subnet: 172.31.0.0/16
gateway: 172.31.0.1