Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.9
FROM alpine:3.9@sha256:414e0518bb9228d35e4cd5165567fb91d26c6a214e9c95899e1e056fcd349011
ADD app /
ADD index.html.tmpl /
EXPOSE 80
Expand Down
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ volumes:

services:
prometheus:
image: prom/prometheus:v2.49.0
image: prom/prometheus:v2.49.0@sha256:682a8500cb481ef780a4d60f6f1b273aae552063de02326f9f4645e395a18efc
volumes:
- ./prometheus/:/etc/prometheus/
command:
Expand All @@ -20,22 +20,22 @@ services:
- grafana

loki:
image: grafana/loki:2.9.0
image: grafana/loki:2.9.0@sha256:b025a0220f390baaab01578aea2fe0ba677584d9f248c3fe5af15f84dd1de60d
ports:
- 3100:3100
command: -config.file=/etc/loki/local-config.yaml
networks:
- grafana

promtail:
image: grafana/promtail:2.0.0
image: grafana/promtail:2.0.0@sha256:5fd12edcc6947fdb2c62bf95af6293e6828a7a376ecff04cce61797ef169fa6c
volumes:
- app_data:/var/log
networks:
- grafana

grafana:
image: grafana/grafana:12.0.1
image: grafana/grafana:12.0.1@sha256:06dc8d60e184705e5dc00e051a6d92342a44010d7d5e538d0a36339e85abb9b7
ports:
- 3000:3000
networks:
Expand All @@ -59,7 +59,7 @@ services:
- grafana

db:
image: grafana/tns-db:latest
image: grafana/tns-db:latest@sha256:c56d18439ba48f0704269f42d1f4e735cb760082c27d311b847c0007d6ad1b42
ports:
- 8082:80
networks:
Expand Down