Created
October 19, 2020 08:46
-
-
Save codebanesr/0df8573dd9fe3d75a63f4c23505d3ae5 to your computer and use it in GitHub Desktop.
Grafana-influx-db
This file contains 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: | |
influxdb: | |
container_name: influxdb | |
image: docker.io/bitnami/influxdb:1-debian-10 | |
environment: | |
- 'INFLUXDB_ADMIN_USER_PASSWORD=influxdb' | |
- 'K6_INFLUXDB_USERNAME=admin' | |
ports: | |
- 8086:8086 | |
- 8088:8088 | |
volumes: | |
- influxdb_data:/bitnami/influxdb | |
grafana: | |
image: docker.io/bitnami/grafana:7-debian-10 | |
ports: | |
- '3086:3000' | |
environment: | |
- 'GF_SECURITY_ADMIN_PASSWORD=bitnami' | |
volumes: | |
- grafana_data:/opt/bitnami/grafana/data | |
volumes: | |
grafana_data: | |
driver: local | |
influxdb_data: | |
driver: local |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment