-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
72 lines (69 loc) · 1.89 KB
/
docker-compose.yml
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
version: "3.8"
services:
proxy:
image: nginx:latest
container_name: proxy
ports:
- "80:80"
volumes:
- ./proxy/nginx.conf:/etc/nginx/nginx.conf
- ./proxy/proxy.conf:/etc/nginx/proxy.conf
deploy:
# placement:
# constraints:
# - "node.role==manager"
resources:
limits:
cpus: "1"
memory: "4g"
reservations:
cpus: "0.25"
memory: "1g"
mode: replicated
replicas: 1
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost/nginx-health"]
interval: 10s
timeout: 5s
retries: 3
start_period: 10s
depends_on:
- express
mongo:
image: mongo:latest
container_name: mongo
volumes:
- /usr/local/var/mongodb:/data/db
express:
container_name: express
image: was:latest
volumes:
- ./file:/server/file
deploy:
# placement:
# constraints:
# - "node.role==worker"
resources:
limits:
cpus: "1"
memory: "4g"
mode: replicated
replicas: 1
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000/.well-known/apollo/server-health"]
interval: 10s
timeout: 5s
retries: 3
start_period: 10s
depends_on:
- mongo
- redis
redis:
image: redis:latest
container_name: redis
restart: "unless-stopped"
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 1s
timeout: 3s
retries: 30