-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
70 lines (66 loc) · 1.35 KB
/
docker-compose.yml
File metadata and controls
70 lines (66 loc) · 1.35 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
services:
api:
image: trendsearth-api
build: .
command: start
environment:
GIT_COMMIT_SHA: ${GIT_COMMIT_SHA:-local-dev}
GIT_BRANCH: ${GIT_BRANCH:-local}
DEPLOYMENT_ENVIRONMENT: ${DEPLOYMENT_ENVIRONMENT:-development}
networks:
- backend
- execution
deploy:
resources:
reservations:
cpus: "0.25"
memory: 400M
worker:
image: trendsearth-api
build: .
command: worker
environment:
CELERY_WORKER_QUEUES: default
networks:
- backend
deploy:
resources:
reservations:
cpus: "0.25"
memory: 400M
docker:
image: trendsearth-api
build: .
command: worker
user: root
environment:
CELERY_WORKER_QUEUES: build
volumes:
- /var/run/docker.sock:/var/run/docker.sock
networks:
- backend
deploy:
placement:
constraints: [node.role == manager]
resources:
reservations:
cpus: "0.25"
memory: 400M
beat:
image: ${REGISTRY_HOST:-registry.example.com:5000}/trendsearth-api
build: .
command: beat
environment:
PORT: 3000
env_file:
- prod.env
networks:
- backend
deploy:
resources:
reservations:
cpus: "0.25"
memory: 400M
networks:
backend:
execution: