-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
76 lines (69 loc) · 1.51 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
version: "3"
services:
web:
container_name: butterfly_web
build: ./webpage
restart: always
volumes:
- ./webpage:/butterfly
backend:
container_name: butterfly_backend
build: ./backend
ports:
- "8000:8000"
depends_on:
- db
db:
container_name: butterfly_db
image: nouchka/sqlite3:latest
restart: always
nginx:
container_name: butterfly_nginx
image: jonasal/nginx-certbot:latest
restart: unless-stopped
env_file:
- ./nginx-certbot.env
ports:
- "80:80"
- "443:443"
volumes:
- /etc/letsencrypt/:/etc/letsencrypt
- ./user_conf.d:/etc/nginx/user_conf.d
depends_on:
- web
cadvisor:
container_name: cadvisor
image: gcr.io/cadvisor/cadvisor:latest
restart: unless-stopped
ports:
- 8080:8080
volumes:
- /:/rootfs:ro
- /var/run:/var/run/:rw
- /sys:/sys:ro
- /var/lib/docker/:/var/lib/docker:ro
prometheus:
container_name: prometheus
image: prom/prometheus:latest
restart: unless-stopped
ports:
- 9090:9090
command:
- --config.file=/etc/prometheus/prometheus.yml
volumes:
- ./prometheus.yml:/etc/prometheus/prometheus.yml:ro
depends_on:
- cadvisor
grafana:
container_name: grafana
image: grafana/grafana:latest
restart: unless-stopped
ports:
- 3000:3000
volumes:
- grafana_storage:/var/lib/grafana
depends_on:
- prometheus
volumes:
nginx_secrets:
grafana_storage: