generated from trywilco/Anythink-Market-Base
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
46 lines (43 loc) · 1.17 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
version: "3.8"
services:
anythink-backend-node:
build: ./backend
container_name: anythink-backend-node
command: sh -c "cd backend && yarn install && /wait-for-it.sh mongodb-node:27017 -q -t 60 && yarn dev"
environment:
- NODE_ENV=development
- PORT=3000
- MONGODB_URI=mongodb://mongodb-node:27017/anythink-market
working_dir: /usr/src
volumes:
- ./:/usr/src/
- /usr/src/backend/node_modules
ports:
- "3000:3000"
depends_on:
- "mongodb-node"
anythink-frontend-react:
build: ./frontend
container_name: anythink-frontend-react
command: sh -c "cd frontend && yarn install && yarn start"
environment:
- NODE_ENV=development
- PORT=3001
- REACT_APP_BACKEND_URL=${CODESPACE_BACKEND_URL:-http://localhost:3000}
- WDS_SOCKET_PORT=${CODESPACE_WDS_SOCKET_PORT:-3001}
working_dir: /usr/src
volumes:
- ./:/usr/src/
- /usr/src/frontend/node_modules
ports:
- "3001:3001"
mongodb-node:
container_name: mongodb-node
restart: always
image: mongo
logging:
driver: none
volumes:
- ~/mongo/data:/data/db
ports:
- '27017:27017'