-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
compose.yml
87 lines (79 loc) · 1.7 KB
/
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
77
78
79
80
81
82
83
84
85
86
87
services:
redis:
image: redis:6.2-alpine
restart: always
ports:
- '6379:6379'
redis-insight:
image: redislabs/redisinsight:latest
restart: always
ports:
- '8001:8001'
dynamodb:
image: amazon/dynamodb-local
restart: always
ports:
- '8000:8000'
postgres:
image: postgres:15-alpine
restart: always
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- '5432:5432'
mysql:
image: mysql:8.0
restart: always
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: mysql
ports:
- '3306:3306'
loki:
image: grafana/loki:2.8.0
ports:
- '3100:3100'
command: -config.file=/etc/loki/local-config.yaml
networks:
- loki
prometheus:
image: prom/prometheus:v2.45.2
ports:
- '9090:9090'
volumes:
- ./docker/prometheus.yml:/etc/prometheus/prometheus.yml
networks:
- loki
grafana:
environment:
- GF_PATHS_PROVISIONING=/etc/grafana/provisioning
- GF_AUTH_ANONYMOUS_ENABLED=true
- GF_AUTH_ANONYMOUS_ORG_ROLE=Admin
entrypoint:
- sh
- -euc
- |
mkdir -p /etc/grafana/provisioning/datasources
cat <<EOF > /etc/grafana/provisioning/datasources/ds.yaml
apiVersion: 1
datasources:
- name: Loki
type: loki
access: proxy
orgId: 1
url: http://loki:3100
basicAuth: false
isDefault: true
version: 1
editable: false
EOF
/run.sh
image: grafana/grafana:latest
ports:
- '3000:3000'
networks:
- loki
networks:
loki: