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 342 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
  1. version: '3.8'
  2. services:
  3. backend:
  4. build:
  5. context: .
  6. dockerfile: Dockerfile
  7. ports:
  8. - "5000:5000"
  9. frontend:
  10. build:
  11. context: ./src/client
  12. dockerfile: Dockerfile
  13. ports:
  14. - "3000:3000"
  15. environment:
  16. - REACT_APP_BACKEND_API_URL=http://backend:5000
  17. depends_on:
  18. - backend
Tip!

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

Comments

Loading...