-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
51 lines (46 loc) · 1.16 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
version: "3"
services:
orchestrator:
build:
context: .
dockerfile: Dockerfile-orchestrator
networks:
- backend
ports:
- 8080:8080
environment:
- 'MODE=master'
- 'REDIS_URL=redis://redis'
- 'WORKER=http://worker:8080/jobs'
worker:
build:
context: .
dockerfile: Dockerfile-worker
networks:
- backend
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /usr/local/bin/docker:/usr/local/bin/docker
- ./lib/sitespeedConfig.json:/opt/sitespeedDefaultConfig.json
graphite:
image: graphiteapp/graphite-statsd:1.1.6-1
networks:
- backend
ports:
- 8081:80
- 2003-2004:2003-2004
- 2023-2024:2023-2024
- 8125:8125/udp
- 8126:8126
grafana:
image: grafana/grafana:6.5.1-ubuntu
ports:
- 3000:3000
networks:
- backend
redis:
image: redis:5.0.7
networks:
- backend
networks:
backend: