-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
70 lines (67 loc) · 1.3 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
version: '3.7'
services:
ngrok:
image: ngrok/ngrok:latest
container_name: commonplace-ngrok
network_mode: "host"
# restart: unless-stopped
command:
- "start"
- "--all"
- "--log=stdout"
- "--config"
- "/etc/ngrok.yml"
volumes:
- ./ngrok.yml:/etc/ngrok.yml
ports:
- 4040:4040
depends_on:
- commonplace-site
commonplace-server:
build:
context: ./server
dockerfile: Dockerfile
image: commonplace-server-image
volumes:
- ./server/:/usr/src/app
- image-store:/usr/src/app/image-store
- /usr/src/app/node_modules
ports:
- "3000:3000"
depends_on:
- mongo
environment:
- NODE_ENV=production
networks:
- app-network
mongo:
image: mongo:4.4.8
volumes:
- mongo-data:/data/db
ports:
- "27017:27017"
networks:
- app-network
commonplace-site:
build:
context: ./site
dockerfile: Dockerfile
image: commonplace-site-image
volumes:
- ./client/:/usr/app
- /usr/app/node_modules
depends_on:
- commonplace-server
ports:
- "8080:80"
networks:
- app-network
networks:
app-network:
driver: bridge
volumes:
image-store:
mongo-data:
node_modules:
web-root:
driver: local