-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
34 lines (32 loc) · 1.37 KB
/
docker-compose.yml
File metadata and controls
34 lines (32 loc) · 1.37 KB
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
version: '3.8'
services:
types:
build:
context: ./Types # Build context for the Types service
working_dir: /Types # Set working directory in the container
volumes:
- ./Types:/Types # Mount the Types directory to the container's /Types
util:
build:
context: ./Util # Build context for the Util service
working_dir: /Util # Set working directory in the container
volumes:
- ./Util:/Util # Mount the Util directory to the container's /Util
api:
build:
context: ./API # Build context for the API service
working_dir: /API # Set working directory in the container
volumes:
- ./API:/API # Mount the API directory to the container's /API
socket:
build:
context: ./Socket # Build context for the Socket service
working_dir: /Socket # Set working directory in the container
volumes:
- ./Socket:/Socket # Mount the Socket directory to the container's /Socket
react:
build:
context: ./React # Build context for the React service
working_dir: /React # Set working directory in the container
volumes:
- ./React:/React # Mount the React directory to the container's /React