-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
44 lines (43 loc) · 1.02 KB
/
docker-compose.yaml
File metadata and controls
44 lines (43 loc) · 1.02 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
networks:
internal:
attachable: false
services:
prometheus:
image: prom/prometheus:v3.4.2
volumes:
- type: bind
source: ./prometheus-config.yaml
target: /etc/prometheus/prometheus.yml
read_only: true
networks: [internal]
ports:
- target: 9090
published: 9090
depends_on: [gleeter]
grafana:
image: grafana/grafana:12.0.2
networks: [internal]
environment:
GF_SERVER_PROTOCOL: http
GF_SECURITY_ADMIN_USER: gleeter
GF_SECURITY_ADMIN_PASSWORD: gleeter
ports:
- target: 3000
published: 3000
volumes:
- type: bind
source: ./grafana-provisioning.yaml
target: /etc/grafana/provisioning/datasources/automatic.yaml
gleeter:
image: gleeter:local-build
build:
context: ../
dockerfile: Dockerfile
ports:
- target: 9999
published: 8080
protocol: tcp
environment:
GLEETER_DEBUG: "1"
networks: [internal]
command: ["serve", "9999", "comics"]