-
Notifications
You must be signed in to change notification settings - Fork 331
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
60 lines (57 loc) · 1.24 KB
/
docker-compose.yml
File metadata and controls
60 lines (57 loc) · 1.24 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
services:
bugbug-http-service:
build:
context: .
image: mozilla/bugbug-http-service
environment:
- BUGBUG_BUGZILLA_TOKEN
- BUGBUG_GITHUB_TOKEN
- REDIS_URL=redis://redis:6379/0
- PORT=8000
- PULSE_USER
- PULSE_PASSWORD
- SENTRY_DSN
ports:
- target: 8000
published: 8000
protocol: tcp
mode: host
depends_on:
- redis
bugbug-http-service-bg-worker:
build:
context: .
dockerfile: Dockerfile.bg_worker
image: mozilla/bugbug-http-service-bg-worker
environment:
- BUGBUG_BUGZILLA_TOKEN
- BUGBUG_GITHUB_TOKEN
- REDIS_URL=redis://redis:6379/0
- BUGBUG_ALLOW_MISSING_MODELS
- BUGBUG_REPO_DIR
- SENTRY_DSN
depends_on:
- redis
bugbug-http-service-rq-dasboard:
build:
context: .
dockerfile: Dockerfile
image: mozilla/bugbug-http-service-bg-worker
command:
- rq-dashboard
- "-u"
- "redis://redis:6379/0"
ports:
- target: 9181
published: 9181
protocol: tcp
mode: host
depends_on:
- redis
redis:
image: redis:4
ports:
- target: 6379
published: 6379
protocol: tcp
mode: host