Created
May 21, 2019 14:01
-
-
Save markmur/8a82685d1f86b637c10b325c41c1d4f6 to your computer and use it in GitHub Desktop.
Run Grafana & Prometheus through Docker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
grafana: | |
image: "grafana/grafana" | |
ports: | |
- "3000:3000" | |
prometheus: | |
image: "prom/prometheus" | |
ports: | |
- "9090:9090" | |
volumes: | |
- data:/prometheus-data | |
volumes: | |
data: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment