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 341 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
  1. version: "3"
  2. services:
  3. # Container used for deploying the API
  4. api:
  5. build: .
  6. ports:
  7. - 8808:8808
  8. volumes:
  9. - ./:/app
  10. environment:
  11. # Show print() in logs:
  12. PYTHONUNBUFFERED: '1'
  13. LOG_LEVEL: 'INFO'
  14. NO_JAEGER: "true"
  15. entrypoint: uvicorn trapi.main:app --host 0.0.0.0 --port 8808 --reload
Tip!

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

Comments

Loading...