Created
September 14, 2021 10:10
-
-
Save denisgolius/1bb389bf95547f2b7912444a557b9b23 to your computer and use it in GitHub Desktop.
run grafana from docker-compose
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.9' | |
services: | |
grafana: | |
container_name: grafana | |
image: grafana/grafana:8.1.2 | |
ports: | |
- 3000:3000 | |
volumes: | |
- grafanadata:/var/lib/grafana | |
restart: always | |
volumes: | |
grafanadata: {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment