-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
41 lines (37 loc) · 1002 Bytes
/
docker-compose.yml
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
services:
client:
restart: always
build: ./client
container_name: client
ports:
- '5173:5173'
volumes:
- ./client:/app
- /app/node_modules
environment:
- CHOKIDAR_USEPOLLING=true
# outro-client:
# restart: always
# build: ./outro-client
# container_name: outro-client
# ports:
# - '5174:5173'
# volumes:
# - ./outro-client:/app
# - /app/node_modules
# environment:
# - CHOKIDAR_USEPOLLING=true
server:
restart: always
build: ./server
container_name: server
ports:
- '5175:3000'
develop:
watch:
- action: sync
path: ./server
target: /app
- action: rebuild
path: package.json
target: /app