-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
40 lines (38 loc) · 1.02 KB
/
docker-compose.yml
File metadata and controls
40 lines (38 loc) · 1.02 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
services:
wintermute:
build: .
entrypoint: ["/usr/local/bin/wintermute"]
command: ["-config", "/etc/inventory/config.json"]
volumes:
- wintermute-db:/data
- ./configs/wintermute.docker.json:/etc/inventory/config.json:ro
ports:
- "8080:8080"
- "9090:9090"
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--spider", "-q", "http://localhost:8080/health"]
interval: 30s
timeout: 5s
retries: 3
start_period: 10s
neuromancer:
build: .
entrypoint: ["/usr/local/bin/neuromancer"]
command: ["-config", "/etc/inventory/config.json"]
volumes:
- neuromancer-db:/data
- ./configs/neuromancer.docker.json:/etc/inventory/config.json:ro
ports:
- "8081:8081"
- "9091:9090"
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--spider", "-q", "http://localhost:8081/health"]
interval: 30s
timeout: 5s
retries: 3
start_period: 10s
volumes:
wintermute-db:
neuromancer-db: