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 349 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
  1. version: '3.8'
  2. services:
  3. web_service:
  4. build:
  5. context: ./
  6. dockerfile: Dockerfile
  7. image: cesi212314/web_service_iis:latest
  8. ports:
  9. - "8000:8000"
  10. user_interface:
  11. build:
  12. context: ./src/client
  13. dockerfile: Dockerfile
  14. image: cesi212314/user_interface_iis:latest
  15. ports:
  16. - "3000:3000"
Tip!

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

Comments

Loading...