forked from boyney123/garie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
43 lines (43 loc) · 1.12 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
version: "3"
services:
prometheus:
image: quay.io/prometheus/prometheus:latest
ports:
- 9090:9090
volumes:
- "./prometheus/prometheus.yml:/etc/prometheus/prometheus.yml"
garie:
depends_on:
- grafana
- lighthouse
links:
- lighthouse
image: boyney123/garie
environment:
- LIGHTHOUSE_URL=http://lighthouse:8080
# https://github.com/ebidel/lighthouse-ci/blob/master/builder/README.md#using-the-container-as-a-web-service-laas
# If you don't to require keys from users, simply include the parameter but use a fake value (e.g. "abc123").
- LIGHTHOUSE_API_KEY=123abc
ports:
- 8080:8080
env_file:
- ./.variables.env
grafana:
image: grafana/grafana
ports:
- 3000:3000
environment:
- GF_SECURITY_ADMIN_PASSWORD=secret
volumes:
- "./grafana/provisioning:/etc/grafana/provisioning"
- "./grafana/dashboards:/var/lib/grafana/dashboards"
lighthouse:
image: boyney123/lighthouse_ci
container_name: lighthouse
ports:
- "4000:8080"
dns:
- 8.8.8.8
- 1.1.1.1
cap_add:
- SYS_ADMIN