-
Notifications
You must be signed in to change notification settings - Fork 311
/
docker-compose.yml
54 lines (49 loc) · 1.18 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
version: "3.2"
services:
bugbug-base:
build:
context: .
dockerfile: infra/dockerfile.base
image: mozilla/bugbug-base
bugbug-nlp:
build:
context: .
dockerfile: infra/dockerfile.base-nlp
image: mozilla/bugbug-base-nlp
bugbug-commit-retrieval:
build:
context: .
dockerfile: infra/dockerfile.commit_retrieval
image: mozilla/bugbug-commit-retrieval
volumes:
- type: bind
source: ./cache/
target: /cache/
volume:
nocopy: true
bugbug-http-service:
build:
context: http_service
image: mozilla/bugbug-http-service
environment:
- BUGBUG_BUGZILLA_TOKEN
- BUGBUG_GITHUB_TOKEN
- PORT=8000
ports:
- target: 8000
published: 8000
protocol: tcp
mode: host
bugbug-http-service-bg-worker:
build:
context: http_service
dockerfile: Dockerfile.bg_worker
image: mozilla/bugbug-http-service-bg-worker
environment:
- BUGBUG_BUGZILLA_TOKEN
- BUGBUG_GITHUB_TOKEN
bugbug-spawn-pipeline:
build:
context: infra/
dockerfile: dockerfile.spawn_pipeline
image: mozilla/bugbug-spawn-pipeline