-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-compose.yml
47 lines (46 loc) · 963 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.7"
services:
modules:
container_name: anees-modules
build: ./modules
ports:
- 5000:5000
depends_on:
- mongodb
- generation
environment:
- ENV=Development
volumes:
- .:/modules
mongodb:
image: mongo
container_name: aneesdb
ports:
- 27018:27018
volumes:
- db-data:/data/db
generation:
container_name: anees-generation
build: ./modules/generation
ports:
- 8000:8000
volumes:
- .:/modules/generation
# client:
# container_name: anees-client
# build: ./client/
# ports:
# - 19000:19000
# - 19001:19001
# - 19002:19002
# - 19006:19006
# environment:
# - NODE_ENV=dev
# - EXPO_DEVTOOLS_LISTEN_ADDRESS=0.0.0.0
# - REACT_NATIVE_PACKAGER_HOSTNAME=192.168.1.18
# volumes:
# - ./client/:/client
# - nodemodules:/client/node_modules
volumes:
db-data:
nodemodules: {}