-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
docker-compose.yml
47 lines (41 loc) · 987 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
version: '3'
services:
mongo:
image: mongo:4.4
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
MONGO_INITDB_DATABASE: baby-tracker
volumes:
- ./mongo-init.js:/docker-entrypoint-initdb.d/mongo-init.js:ro
ports:
- 27017:27017
mongo-express:
image: mongo-express
restart: always
ports:
- 8081:8081
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: example
client:
build: client
command: yarn start
environment:
REACT_APP_SERVER: http://0.0.0.0:8080
NODE_ENV: development
CHOKIDAR_USEPOLLING: 1
ports:
- 3000:3000
volumes:
- ./client:/usr/src/app
server:
build: server
command: yarn dev
environment:
NODE_ENV: development
DATABASE_URL: mongodb://server:test@mongo:27017/baby-tracker
ports:
- 8080:8080
volumes:
- ./server:/usr/src/app