-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
121 lines (120 loc) · 3.14 KB
/
Copy pathdocker-compose.yml
File metadata and controls
121 lines (120 loc) · 3.14 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
version: '3'
services:
redis:
container_name: redis
image: redis:alpine
ports:
- "6379:6379"
backend:
container_name: assict_backend
build:
context: backend/assiCT_api_server
ports:
- "8000:8000"
volumes:
- static:/django_static
depends_on:
- redis
frontend:
build:
context: frontend/assict_front
volumes:
- build_folder:/frontend/build
nginx:
container_name: assict_nginx
build: nginx
ports:
- "80:80"
- "443:443"
volumes:
- build_folder:/var/www/frontend
- ./ssl-certification/data/certbot/conf:/etc/letsencrypt # nginx컨테이너에 certbot컨테이너 연결
- ./ssl-certification/data/certbot/www:/var/www/certbot
- static:/django_static
depends_on:
- backend
- frontend
command : "/bin/sh -c 'while :; do sleep 6h & wait $${!}; nginx -s reload; done & nginx -g \"daemon off;\"'"
prometheus:
container_name: assict_prometheus
image: prom/prometheus
user: root
restart: always
volumes:
- ./prometheus:/prometheus
- ./prometheus/prometheus.yml:/etc/prometheus/prometheus.yml
ports:
- 9090:9090
command:
- '--web.enable-lifecycle'
- '--config.file=/etc/prometheus/prometheus.yml'
grafana:
build:
context: grafana
env_file:
- grafana/config.grafana
restart: always
volumes:
- grafana-storage:/var/lib/grafana
- ./grafana/provisioning/:/etc/grafana/provisioning/
ports:
- 3000:3000
depends_on:
- prometheus
cadvisor:
image: google/cadvisor
volumes:
- /:/rootfs:ro
- /var/run:/var/run:rw
- /sys:/sys:ro
- /var/lib/docker/:/var/lib/docker:ro
ports:
- 8080:8080
restart: always
deploy:
mode: global
restart_policy:
condition: on-failure
node-exporter:
image: prom/node-exporter
volumes:
- /proc:/host/proc:ro
- /sys:/host/sys:ro
- /:/rootfs:ro
command:
- '--path.procfs=/host/proc'
- '--path.sysfs=/host/sys'
- --collector.filesystem.ignored-mount-points
- "^/(sys|proc|dev|host|etc|rootfs/var/lib/docker/containers|rootfs/var/lib/docker/overlay2|rootfs/run/docker/netns|rootfs/var/lib/docker/aufs)($$|/)"
ports:
- 9100:9100
restart: always
deploy:
mode: global
certbot: # certbot 컨테이너 추가
image: certbot/certbot
restart: unless-stopped
container_name: certbot
volumes:
- ./ssl-certification/data/certbot/conf:/etc/letsencrypt # nginx컨테이너에 certbot컨테이너 연결
- ./ssl-certification/data/certbot/www:/var/www/certbot
depends_on:
- nginx
entrypoint: "/bin/sh -c 'trap exit TERM; while :; do certbot renew; sleep 12h & wait $${!}; done;'"
alertmanager:
image: prom/alertmanager
container_name: alertmanager
user: root
ports:
- 9093:9093
volumes:
- ./alertmanager/:/etc/alertmanager/
restart: always
command:
- '--config.file=/etc/alertmanager/config.yml'
volumes:
build_folder: null
prometheus_data: { }
grafana-storage: { }
static:
driver: local