-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
53 lines (48 loc) · 1.01 KB
/
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
version: '3.7'
services:
mongodb:
image: mongo
container_name: mongodb
restart: unless-stopped
command: mongod --auth
ports:
- '27017:27017'
networks:
- backend
env_file: .env
volumes:
- mongodbdata:/data/db
server:
build:
context: ./
dockerfile: ./server/Dockerfile
ports:
- '5000:5000'
env_file: .env
volumes:
- ./data:/app_data
- ./server:/app
depends_on:
- mongodb
networks:
- frontend
- backend
client:
build:
context: ./client
dockerfile: Dockerfile
tty: true
ports:
- '3000:3000'
env_file: .env
volumes:
- ./client:/app
- /app/node_modules
networks:
frontend:
driver: bridge
backend:
driver: bridge
volumes:
mongodbdata:
driver: local