Skip to content

Instantly share code, notes, and snippets.

@deeperunderstanding
Created November 24, 2019 13:43
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 deeperunderstanding/22d9340c7b79dbbc1acce206bf560372 to your computer and use it in GitHub Desktop.
Save deeperunderstanding/22d9340c7b79dbbc1acce206bf560372 to your computer and use it in GitHub Desktop.
version: '3'
services:
#-----------------
#--- Influx DB ---
#-----------------
influx:
image: influxdb:alpine
ports:
- "8086:8086"
environment:
INFLUXDB_ADMIN_ENABLED: 'true'
INFLUXDB_ADMIN_USER: 'admin'
INFLUXDB_ADMIN_PASSWORD: 'secret'
INFLUXDB_DB: 'tickbase'
volumes:
- "influx-store:/var/lib/influxdb"
#-----------------
#--- Grafana ---
#-----------------
grafana:
image: grafana/grafana
ports:
- "3000:3000"
volumes:
influx-store:
grafana-store:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment