Skip to content

Commit

Permalink
fix: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
talboren committed Dec 28, 2024
1 parent 62052b3 commit 600a66a
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 55 deletions.
55 changes: 0 additions & 55 deletions docker-compose-with-grafana.yml

This file was deleted.

30 changes: 30 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,33 @@ services:
extends:
file: docker-compose.common.yml
service: keep-websocket-server-common

grafana:
image: grafana/grafana:latest
profiles:
- grafana
ports:
- "3001:3000"
volumes:
- ./grafana:/var/lib/grafana
- ./grafana/provisioning:/etc/grafana/provisioning
- ./grafana/dashboards:/etc/grafana/dashboards
environment:
- GF_SECURITY_ADMIN_USER=admin
- GF_SECURITY_ADMIN_PASSWORD=admin
- GF_USERS_ALLOW_SIGN_UP=false
depends_on:
- prometheus

prometheus:
image: prom/prometheus:latest
profiles:
- grafana
ports:
- "9090:9090"
volumes:
- ./prometheus/prometheus.yml:/etc/prometheus/prometheus.yml
command:
- "--config.file=/etc/prometheus/prometheus.yml"
depends_on:
- keep-backend

0 comments on commit 600a66a

Please sign in to comment.