Created
January 18, 2016 19:57
-
-
Save Dnile/1ad986c9f4c48c30bd06 to your computer and use it in GitHub Desktop.
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
FROM prom/prometheus | |
EXPOSE 9090 | |
VOLUME [ "/prometheus" ] | |
WORKDIR /prometheus | |
ENTRYPOINT [ "/bin/prometheus" ] | |
CMD [ "-config.file=/etc/prometheus/prometheus.yml", \ | |
"-storage.local.path=/prometheus", \ | |
"-alertmanager.url=http://localhost:9093", \ | |
"-web.console.libraries=/etc/prometheus/console_libraries", \ | |
"-web.console.templates=/etc/prometheus/consoles" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment