-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-dev.yml
61 lines (58 loc) · 1.12 KB
/
docker-compose-dev.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
version: "3.9"
services:
server:
restart: always
build:
context: ./server
dockerfile: Dockerfile
image: dropshare-server
container_name: dropshare-node-server
command: yarn dev
volumes:
- ./server/:/usr/src/app
- /usr/src/app/node_modules
ports:
- "5000:5000"
depends_on:
- mongo
environment:
- NODE_ENV=development
networks:
- app-network
expose: [5000]
mongo:
restart: always
image: mongo:4.0
container_name: dropshare-mongo
volumes:
- ~/Volumes/dropshare-mongo-4.0:/data/db
ports:
- "27017:27017"
networks:
- app-network
client:
restart: always
build:
context: ./client
dockerfile: Dockerfile
image: dropshare-client
container_name: dropshare-react-client
command: yarn dev
volumes:
- ./client/:/usr/app
- /usr/app/node_modules
depends_on:
- server
ports:
- "3000:3000"
networks:
- app-network
expose: [3000]
networks:
app-network:
driver: bridge
volumes:
data-volume:
node_modules:
web-root:
driver: local