Skip to content

Commit

Permalink
Make correct use of volumes on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Depechie committed Aug 11, 2023
1 parent f57d7d0 commit d1ab46d
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions docker-compose-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ services:
volumes:
- /etc/localtime:/etc/localtime:ro
- ./prometheus/prometheus.yml:/etc/prometheus/prometheus.yml
- ./prometheus:/prometheus
- prometheus:/prometheus
depends_on:
- blackbox
networks:
Expand All @@ -38,7 +38,7 @@ services:
volumes:
- /etc/localtime:/etc/localtime:ro
- ./tempo/tempo.yml:/etc/tempo.yaml
- ./tempo:/tmp/tempo
- tempo:/tmp/tempo
restart: unless-stopped
ports:
- 3200:3200 # tempo
Expand All @@ -56,7 +56,7 @@ services:
volumes:
- /etc/localtime:/etc/localtime:ro
- ./loki/loki.yml:/etc/loki/local-config.yaml
- ./loki:/data/loki
- loki:/data/loki
restart: unless-stopped
ports:
- 3100:3100
Expand All @@ -73,8 +73,7 @@ services:
- GF_AUTH_DISABLE_LOGIN_FORM=true
volumes:
- /etc/localtime:/etc/localtime:ro
# Not sure what this should be because there is no such folder in the repo
#- grafana-data:/var/lib/grafana
- grafana-data:/var/lib/grafana
- ./grafana/provisioning:/etc/grafana/provisioning
restart: unless-stopped
user: root
Expand Down Expand Up @@ -117,4 +116,10 @@ services:
otel:

networks:
otel:
otel:

volumes:
loki:
prometheus:
tempo:
grafana-data:

0 comments on commit d1ab46d

Please sign in to comment.