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 380 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
  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. client:
  11. container_name: client
  12. build:
  13. context: src/client
  14. dockerfile: Dockerfile
  15. environment:
  16. - NEXT_PUBLIC_GOOGLE_MAPS_KEY=test
  17. - NEXT_PUBLIC_API_URL=http://api:8000
  18. ports:
  19. - "3000:3000"
Tip!

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

Comments

Loading...