Skip to content

Instantly share code, notes, and snippets.

@markmur
Created May 21, 2019 14:01
Show Gist options
  • Save markmur/8a82685d1f86b637c10b325c41c1d4f6 to your computer and use it in GitHub Desktop.
Save markmur/8a82685d1f86b637c10b325c41c1d4f6 to your computer and use it in GitHub Desktop.
Run Grafana & Prometheus through Docker
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