-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
60 lines (53 loc) · 1020 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
version: '3.8'
services:
server:
build:
context: ./server
dockerfile: Dockerfile
image: bookish-server
container_name: server-container
command: npm start
volumes:
- ./server/:/usr/app
- /usr/app/node_modules
ports:
- 5000:5000
# depends_on:
# - mongo
env_file: ./server/.env
networks:
- app-network
# mongo:
# image: mongo:latest
# volumes:
# - data-volume:/data/db
# ports:
# - 27017:27017
# networks:
# - app-network
client:
build:
context: ./client
dockerfile: Dockerfile
image: client
tty: true
container_name: client-container
command: npm start
volumes:
- ./client/:/usr/app
- /usr/app/node_modules
depends_on:
- server
ports:
- 3000:3000
env_file: ./client/.env
networks:
- app-network
networks:
app-network:
driver: bridge
volumes:
data-volume:
node_modules:
web-root:
driver: local