-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose-dev.yml
More file actions
41 lines (41 loc) · 861 Bytes
/
docker-compose-dev.yml
File metadata and controls
41 lines (41 loc) · 861 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
version: '3'
services:
admin-backend:
restart: always
build:
context: ./admin-backend
dockerfile: Dockerfile.dev
volumes:
- /app/node_modules
- ./admin-backend:/app
ports:
- '5000:5000'
client-backend:
build:
context: ./client-backend
dockerfile: Dockerfile.dev
volumes:
- /app/node_modules
- ./client-backend:/app
ports:
- '5001:5001'
admin-frontend:
stdin_open: true
build:
context: ./admin-frontend
dockerfile: Dockerfile.dev
volumes:
- /app/node_modules
- ./admin-frontend:/app
ports:
- '3000:3000'
client-frontend:
stdin_open: true
build:
context: ./client-frontend
dockerfile: Dockerfile.dev
volumes:
- /app/node_modules
- ./client-frontend:/app
ports:
- '3001:3000'