-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
57 lines (51 loc) · 982 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
version: '3.8'
services:
react:
build:
context: frontend
dockerfile: Dockerfile
ports:
- 3000:3000
environment:
- CHOKIDAR_USEPOLLING=true
networks:
- public
depends_on:
- express
volumes:
- ./frontend/:/app
- ./frontend/node_modules:/app/node_modules
container_name: react_frontend
express:
build:
context: backend
ports:
- 4040:4040
networks:
- public
- mongo_db
depends_on:
- mongo
volumes:
- ./backend/:/app
- ./backend/node_modules:/app/node_modules
container_name: express_backend
mongo:
image: mongo:3.6-xenial
environment:
- MONGO_INITDB_DATABASE=databasename
ports:
- 27017:27017
networks:
- mongo_db
volumes:
- mongo_data:/data/db
container_name: webapp_db
networks:
public:
driver: bridge
mongo_db:
driver: bridge
volumes:
mongo_data:
driver: local