Last active
March 19, 2019 09:43
-
-
Save paulbrodner/3b3661267bfaa7fcb63d881be1cd3b6f to your computer and use it in GitHub Desktop.
starting prometeus and graphana
This file contains hidden or 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: '2' | |
| services: | |
| prometheus: | |
| image: prom/prometheus:latest | |
| volumes: | |
| - ./prometheus.yml:/etc/prometheus/prometheus.yml | |
| command: | |
| - '--config.file=/etc/prometheus/prometheus.yml' | |
| ports: | |
| - '9090:9090' | |
| graphana: | |
| image: grafana/grafana:latest | |
| ports: | |
| - '3000:3000' |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
see official prometheus.yml file for example