-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.prod.yml
65 lines (61 loc) · 1.18 KB
/
docker-compose.prod.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
services:
manager:
image: 172.40.1.52:5000/trendsearth-api
build: .
command: start
environment:
PORT: 3000
ports:
- target: 3000
published: 3001
env_file:
- prod.env
volumes:
- /var/run/docker.sock:/tmp/docker.sock
networks:
- backend
deploy:
placement:
constraints: [node.role == manager]
resources:
reservations:
cpus: "0.25"
memory: 400M
worker:
image: 172.40.1.52:5000/trendsearth-api
build: .
command: worker
environment:
PORT: 3000
env_file:
- prod.env
volumes:
- /var/run/docker.sock:/tmp/docker.sock
networks:
- backend
deploy:
placement:
constraints: [node.role == manager]
resources:
reservations:
cpus: "0.25"
memory: 400M
redis:
image: redis
ports:
- target: 6379
networks:
- backend
deploy:
placement:
constraints: [node.role == manager]
resources:
reservations:
cpus: "0.25"
memory: 100M
networks:
backend:
driver: overlay
ipam:
config:
- subnet: 10.10.0.0/16