Created
November 24, 2019 13:43
-
-
Save deeperunderstanding/22d9340c7b79dbbc1acce206bf560372 to your computer and use it in GitHub Desktop.
This file contains hidden or 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' | |
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