Skip to content

Instantly share code, notes, and snippets.

@InsanusMokrassar
Created October 1, 2019 18:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save InsanusMokrassar/f17fb5962d280244028f09e9c71d7fbc to your computer and use it in GitHub Desktop.
Save InsanusMokrassar/f17fb5962d280244028f09e9c71d7fbc to your computer and use it in GitHub Desktop.
Grafana
version: "3.4"
services:
grafana:
image: grafana/grafana
container_name: grafana
restart: always
volumes:
- "/path/host/grafana:/var/lib/grafana:rw"
environment:
- "GF_SECURITY_ADMIN_PASSWORD=MY_PASSWORD"
- "GF_SERVER_ROOT_URL=https://some.my.address"
ports:
- "3000:3000"
network_mode: "host"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment