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.prod.yml 1.0 KB

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
28
29
30
31
32
33
34
35
  1. version: '3'
  2. services:
  3. api:
  4. build: .
  5. restart: unless-stopped
  6. volumes:
  7. - ./:/app
  8. # - ./data:/app/data
  9. # - /data/openpredict:/app/data
  10. # entrypoint: gunicorn -w 8 -k uvicorn.workers.UvicornWorker --bind 0.0.0.0:8808 --timeout 600 trapi.main:app
  11. environment:
  12. # Variable for nginx-proxy routing. See https://github.com/nginx-proxy/
  13. VIRTUAL_HOST: openpredict.semanticscience.org
  14. LETSENCRYPT_HOST: openpredict.semanticscience.org
  15. VIRTUAL_PORT: 8808
  16. NO_JAEGER: "true"
  17. # JAEGER_HOST: jaeger-otel-agent.sri
  18. # JAEGER_PORT: 6831
  19. # OPENPREDICT_APIKEY: ${OPENPREDICT_APIKEY}
  20. # NOTE: not required, just for testing
  21. # jaeger-otel-agent.sri:
  22. # image: jaegertracing/all-in-one:latest
  23. # # ports:
  24. # # - "16686:16686"
  25. # # - "4318:4318"
  26. # # - "6831:6831/udp"
  27. # environment:
  28. # LOG_LEVEL: debug
  29. # VIRTUAL_HOST: jaeger.137.120.31.102.nip.io
  30. # LETSENCRYPT_HOST: jaeger.137.120.31.102.nip.io
  31. # VIRTUAL_PORT: 16686
Tip!

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

Comments

Loading...