Skip to content

Instantly share code, notes, and snippets.

@visualskyrim
Created December 27, 2017 14:16
Show Gist options
  • Save visualskyrim/413fde01d000a350508b7dbc74072f38 to your computer and use it in GitHub Desktop.
Save visualskyrim/413fde01d000a350508b7dbc74072f38 to your computer and use it in GitHub Desktop.
Docker Compose File: influxdb + grafana
version: "1"
services:
influxdb:
image: influxdb
volumes:
- <local-mnt>:/var/lib/influxdb
ports:
- 8084:8083
- 8086:8086
grafana:
image: grafana/grafana
ports:
- 8085:3000
volumes:
- <local-mnt>:/var/lib/grafana
environment:
- GF_SECURITY_ADMIN_PASSWORD=admin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment