docker-compose.prometheus-grafana.yml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #
  2. # Copyright © 2016-2023 The Thingsboard Authors
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16. version: '3.0'
  17. volumes:
  18. prometheus_data: {}
  19. grafana_data: {}
  20. services:
  21. prometheus:
  22. image: prom/prometheus:v2.1.0
  23. volumes:
  24. - ./monitoring/prometheus/:/etc/prometheus/
  25. - prometheus_data:/prometheus
  26. command:
  27. - '--config.file=/etc/prometheus/prometheus.yml'
  28. ports:
  29. - 9090:9090
  30. restart: always
  31. grafana:
  32. image: grafana/grafana
  33. user: "472"
  34. depends_on:
  35. - prometheus
  36. ports:
  37. - 3000:3000
  38. volumes:
  39. - grafana_data:/var/lib/grafana
  40. - ./monitoring/grafana/provisioning/:/etc/grafana/provisioning/
  41. env_file:
  42. - monitoring/grafana/config.monitoring
  43. restart: always