forked from Cloud-CV/EvalAI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
105 lines (98 loc) · 2.09 KB
/
docker-compose.yml
File metadata and controls
105 lines (98 loc) · 2.09 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
services:
db:
image: postgres:16.8
ports:
- "5432:5432"
env_file:
- docker/dev/docker.env
volumes:
- ./postgres_data:/var/lib/postgresql/data
sqs:
image: softwaremill/elasticmq
hostname: sqs
ports:
- 9324:9324
django:
hostname: django
env_file:
- docker/dev/docker.env
build:
context: ./
dockerfile: docker/dev/django/Dockerfile
ports:
- "8000:8000"
depends_on:
- db
- sqs
volumes:
- .:/code
worker_py3_7:
env_file:
- docker/dev/docker.env
build:
context: ./
dockerfile: docker/dev/worker_py3_7/Dockerfile
depends_on:
- django
volumes:
- .:/code
profiles:
- worker_py3_7 # Only built when this profile is specified
worker_py3_8:
env_file:
- docker/dev/docker.env
build:
context: ./
dockerfile: docker/dev/worker_py3_8/Dockerfile
depends_on:
- django
volumes:
- .:/code
profiles:
- worker_py3_8 # Only built when this profile is specified
worker_py3_9:
env_file:
- docker/dev/docker.env
build:
context: ./
dockerfile: docker/dev/worker_py3_9/Dockerfile
depends_on:
- django
volumes:
- .:/code
profiles:
- worker_py3_9 # Only built when this profile is specified
nodejs:
hostname: nodejs
build:
context: ./
dockerfile: docker/dev/nodejs/Dockerfile
environment:
NODE_ENV: development
CHROME_BIN: /usr/bin/google-chrome
DISPLAY: :99.0
ports:
- "8888:8888"
- "35729:35729"
volumes:
- .:/code
- /code/node_modules
- /code/bower_components
deploy:
resources:
limits:
memory: 2G
cpus: '1.0'
reservations:
memory: 1G
statsd-exporter:
hostname: statsd
image: prom/statsd-exporter:latest
command:
- '--log.level=info'
- '--web.telemetry-path=/statsd/metrics'
ports:
- '9125:9125'
- '9102:9102'
profiles:
- statsd # Only built when this profile is specified