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 864 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
23
24
25
26
27
28
29
30
31
32
33
34
  1. version: "3.8"
  2. services:
  3. redis:
  4. image: redis:alpine
  5. container_name: redis
  6. hostname: redis
  7. volumes:
  8. - "./webserver/generated/data/redis:/data"
  9. expose:
  10. - 6379
  11. server:
  12. container_name: server
  13. build: .
  14. environment:
  15. - MODEL_DIR=/data/models
  16. - RQ_QUEUE_NAME=default
  17. - REDIS_HOST=redis
  18. - REDIS_PORT=6379
  19. - MLFLOW_TRACKING_URI=${MLFLOW_TRACKING_URI}
  20. - MLFLOW_TRACKING_USERNAME=${MLFLOW_TRACKING_USERNAME}
  21. - MLFLOW_TRACKING_PASSWORD=${MLFLOW_TRACKING_PASSWORD}
  22. - DAGSHUB_USER_NAME=${DAGSHUB_USER_NAME}
  23. - DAGSHUB_TOKEN=${DAGSHUB_TOKEN}
  24. - DAGSHUB_REPO_NAME=${DAGSHUB_REPO_NAME}
  25. ports:
  26. - 9090:9090
  27. depends_on:
  28. - redis
  29. links:
  30. - redis
  31. volumes:
  32. - "./webserver/generated/data/server:/data"
  33. - "./webserver/generated/logs:/tmp"
Tip!

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

Comments

Loading...