Created
January 16, 2021 13:26
-
-
Save pada57/05b5f259b98001bf053c468f9c5e3336 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: '2' | |
| services: | |
| # Define an InfluxDB service | |
| influxdb: | |
| image: influxdb:alpine | |
| volumes: | |
| - D:/docker/data/influxdb:/var/lib/influxdb | |
| ports: | |
| - "8086:8086" | |
| # Define a Chronograf service | |
| chronograf: | |
| image: chronograf | |
| volumes: | |
| - D:/docker/data/chronograf:/var/lib/chronograf | |
| ports: | |
| - "8888:8888" | |
| depends_on: | |
| - influxdb | |
| environment: | |
| - INFLUXDB_URL=http://influxdb:8086 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment