-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
43 lines (40 loc) · 966 Bytes
/
docker-compose.yml
File metadata and controls
43 lines (40 loc) · 966 Bytes
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
services:
mysql:
image: mysql:latest
container_name: blisgo-db
environment:
- MYSQL_DATABASE=blisgo
- MYSQL_ROOT_PASSWORD=root
ports:
- 3306:3306
redis:
image: redis:latest
container_name: blisgo-documents
ports:
- 6379:6379
# prometheus:
# image: prom/prometheus:latest
# container_name: blisgo-prometheus
# volumes:
# - ./prometheus.yml:/etc/prometheus/prometheus.yml
# command:
# - '--config.file=/etc/prometheus/prometheus.yml'
# restart: unless-stopped
# ports:
# - 9090:9090
#
# grafana:
# image: grafana/grafana:latest
# container_name: blisgo-grafana
# ports:
# - 3000:3000
# environment:
# - GF_SECURITY_ADMIN_PASSWORD=admin
# - GF_SECURITY_ADMIN_USER=admin
# - GF_USERS_ALLOW_SIGN_UP=false
# - GF_USERS_ALLOW_ORG_CREATE=false
# volumes:
# - ./grafana:/var/lib/grafana
# restart: unless-stopped
networks:
network: