-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
44 lines (40 loc) · 819 Bytes
/
docker-compose.yml
File metadata and controls
44 lines (40 loc) · 819 Bytes
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
36
37
38
39
40
41
42
43
44
services:
dotnet:
container_name: dotnet
build:
context: ./docker-dotnet
dockerfile: Dockerfile.dev
ports:
- 5124:5124
volumes:
- ./docker-dotnet:/app
- dotnet-obj-volume:/app/obj
express:
container_name: express
build:
context: ./docker-express
dockerfile: Dockerfile.dev
ports:
- 8080:8080
volumes:
- ./docker-express/src:/app/src
bun:
container_name: bun
build:
context: ./docker-bun
dockerfile: Dockerfile
ports:
- 6969:6969
volumes:
- ./docker-bun/src:/app/src
react:
container_name: react
build:
context: ./docker-react
dockerfile: Dockerfile.dev
ports:
- 3000:3000
volumes:
- ./docker-react/src:/app/src
volumes:
dotnet-obj-volume: