Skip to content

Instantly share code, notes, and snippets.

@ohmrefresh
Created August 3, 2019 08:16
Show Gist options
  • Select an option

  • Save ohmrefresh/1025f37162238c5cdb8cc79bde31f597 to your computer and use it in GitHub Desktop.

Select an option

Save ohmrefresh/1025f37162238c5cdb8cc79bde31f597 to your computer and use it in GitHub Desktop.
influxdb & grafana
version: '3.3'
services:
influxdb:
image: influxdb:latest
container_name: influxdb
ports:
- "8083:8083"
- "8086:8086"
- "8090:8090"
environment:
- INFLUXDB_DB=jmeter
volumes:
- ./data/influxdb:/var/lib/influxdb
grafana:
image: grafana/grafana:latest
container_name: grafana
ports:
- "3000:3000"
links:
- influxdb
volumes:
- ./data/grafana:/var/lib/grafana
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment