-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
50 lines (50 loc) · 1.03 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
version: "3"
services:
######################
# Setup mongo container
######################
mongodb:
restart: always
image: "mongo"
ports:
- "27017:27017"
######################
# Setup node container
######################
backend:
build: ./node-backend
restart: always
environment:
APP_SERVER_PORT: "6200"
MONGO_CONNECTION: "mongodb://mongodb/iotdataset"
DB_NAME: "iotdataset"
BUCKET_NAME: "gridfs_uploads"
SECRET: "yoursecretkey"
expose:
- "6200"
ports:
- "6200:6200"
volumes:
- ./node-backend:/usr/src/app
command: nodemon server.js
depends_on:
- mongodb
######################
# Setup react container
######################
frontend:
build: ./react-frontend
restart: always
environment:
- REACT_APP_PORT="3000"
expose:
- "3000"
ports:
- "3000:3000"
volumes:
- ./react-frontend:/usr/src/app
links:
- backend
depends_on:
- backend
command: npm start