Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

docker-compose.yml 809 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
  1. version: '3.7'
  2. volumes:
  3. grafana_data: {}
  4. networks:
  5. front-tier:
  6. back-tier:
  7. services:
  8. db:
  9. image: postgres
  10. restart: always
  11. environment:
  12. POSTGRES_PASSWORD: example
  13. ports:
  14. - "5432:5432"
  15. networks:
  16. - back-tier
  17. adminer:
  18. image: adminer
  19. restart: always
  20. ports:
  21. - "8080:8080"
  22. networks:
  23. - back-tier
  24. - front-tier
  25. grafana:
  26. image: grafana/grafana-enterprise
  27. user: "472"
  28. ports:
  29. - "3000:3000"
  30. volumes:
  31. - ./config/grafana_datasources.yaml:/etc/grafana/provisioning/datasources/datasource.yaml:ro
  32. - ./config/grafana_dashboards.yaml:/etc/grafana/provisioning/dashboards/dashboards.yaml:ro
  33. - ./dashboards:/opt/grafana/dashboards
  34. networks:
  35. - back-tier
  36. - front-tier
  37. restart: always
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...