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 432 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
  1. version: "3.7"
  2. services:
  3. api:
  4. container_name: api
  5. build:
  6. context: .
  7. dockerfile: Dockerfile
  8. ports:
  9. - "8000:8000"
  10. networks:
  11. - mbajk-forecast-network
  12. client:
  13. container_name: client
  14. build:
  15. context: src/client
  16. dockerfile: Dockerfile
  17. ports:
  18. - "3000:3000"
  19. networks:
  20. - mbajk-forecast-network
  21. networks:
  22. mbajk-forecast-network:
  23. driver: bridge
Tip!

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

Comments

Loading...