Skip to content

Commit

Permalink
adjust configs
Browse files Browse the repository at this point in the history
  • Loading branch information
Clivern committed Apr 13, 2024
1 parent fc25c0d commit 1834f5e
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ services:
prometheus_svc:
image: prom/prometheus:v2.51.2
command:
- --config.file=/etc/prometheus/prometheus.yml
- --web.enable-remote-write-receiver
- --enable-feature=exemplar-storage
- --storage.tsdb.path=/prometheus
- --config.file=/etc/prometheus/prometheus.yml
- --web.enable-remote-write-receiver
- --enable-feature=exemplar-storage
- --storage.tsdb.path=/prometheus
volumes:
- ./configs/prometheus/prometheus.yml:/etc/prometheus/prometheus.yml
- prometheus_data:/prometheus
Expand All @@ -50,7 +50,8 @@ services:
# Loki Container
loki_svc:
image: grafana/loki:3.0.0
command: -config.file=/etc/loki/local-config.yaml
command:
- -config.file=/etc/loki/local-config.yaml
ports:
- 3100:3100
restart: unless-stopped
Expand All @@ -66,13 +67,13 @@ services:
alertmanager_svc:
image: prom/alertmanager:v0.27.0
command:
- --config.file=/config/alertmanager.yml
- --log.level=debug
- --config.file=/etc/alertmanager/alertmanager.yml
- --log.level=debug
ports:
- 9093:9093
- 9093:9093
volumes:
- ./configs/alertmanager/alertmanager.yml:/config/alertmanager.yml"
- alertmanager_data:/data
- ./configs/alertmanager/alertmanager.yml:/etc/alertmanager/alertmanager.yml"
- alertmanager_data:/data
restart: unless-stopped

volumes:
Expand Down

0 comments on commit 1834f5e

Please sign in to comment.