Guest User

Untitled

a guest
Feb 17th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. version: "3"
  2. services:
  3. influxdb:
  4. image: influxdb
  5. container_name: influx_db
  6. ports:
  7. - 8086:8086
  8. - 2003:2003
  9. environment:
  10. - INFLUXDB_GRAPHITE_ENABLED=true
  11. - INFLUXDB_ADMIN_ENABLED=true
  12. - INFLUXDB_DB=monitoring
  13. - INFLUXDB_ADMIN_USER=cyberhck
  14. - INFLUXDB_ADMIN_PASSWORD:secret
  15. - INFLUXDB_USER=monitoring
  16. - INFLUXDB_USER_PASSWORD=secret
  17. volumes:
  18. - ./data/influxdb:/var/lib/influxdb
  19.  
  20. grafana:
  21. image: grafana/grafana
  22. container_name: grafana
  23. ports:
  24. - 3000:3000
  25. environment:
  26. - GF_SECURITY_ADMIN_USER=cyberhck
  27. - GF_SECURITY_ADMIN_PASSWORD=secret
  28. volumes:
  29. - ./data/grafana:/var/lib/grafana
  30.  
  31. chronograf:
  32. image: chronograf
  33. container_name: chronograf
  34. ports:
  35. - 8888:8888
  36. volumes:
  37. - ./data/chronograf:/var/lib/chronograf
Add Comment
Please, Sign In to add comment