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 328 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
  1. services:
  2. fastapi:
  3. image: fastapi
  4. build: ./fastapi
  5. volumes:
  6. - ./fastapi:/app
  7. ports:
  8. - 8080:8080
  9. environment:
  10. - PORT=8080
  11. streamlit:
  12. image: streamlit
  13. build: ./streamlit
  14. volumes:
  15. - ./streamlit:/app
  16. ports:
  17. - 8501:8501
  18. environment:
  19. - PORT=8501
Tip!

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

Comments

Loading...