Advertisement
Guest User

Untitled

a guest
Jul 29th, 2016
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. version: "2.0"
  2. services:
  3. influx:
  4. image: influxdb
  5. ports:
  6. - "8083:8083"
  7. - "8086:8086"
  8.  
  9. grafana:
  10. image: grafana/grafana
  11. environment:
  12. - GF_INSTALL_PLUGINS=grafana-clock-panel,grafana-simple-json-datasource
  13. - INFLUXDB_USER=root
  14. - INFLUXDB_PASS=root
  15. - INFLUXDB_NAME=environment
  16. ports:
  17. - "3000:3000"
  18. links:
  19. - influx
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement