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.yaml 805 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
  1. version: '3.7'
  2. services:
  3. backend:
  4. build:
  5. dockerfile: Dockerfile
  6. ports:
  7. - 8000:8000
  8. environment:
  9. - MBAJK_URL:https://api.jcdecaux.com/vls/v1/stations?contract=maribor&apiKey=5e150537116dbc1786ce5bec6975a8603286526b
  10. - MLFLOW_TRACKING_URI:https://dagshub.com/sustertine/mbajk-api.mlflow
  11. - MLFLOW_TRACKING_USERNAME:sustertine
  12. - MLFLOW_TRACKING_PASSWORD:d98f979f8ec35ecee07922b67bc1d828efa7666c
  13. - MONGO_URL:mongodb+srv://admin:admin@winedbcluster.ldc583m.mongodb.net/mbajk-api-calls?retryWrites=true&w=majority
  14. frontend:
  15. build:
  16. context: ./src/client/
  17. dockerfile: Dockerfile
  18. environment:
  19. - VITE_APP_BACKEND_URL=http://backend:8000
  20. ports:
  21. - 80:80
  22. depends_on:
  23. backend:
  24. condition: service_started
Tip!

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

Comments

Loading...