-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-compose.dev.yml
79 lines (64 loc) · 1.53 KB
/
docker-compose.dev.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
71
72
73
74
75
76
77
78
79
# creates a development environment with mounted volumes and debugging enabled.
x-defaults: &defaults
cap_drop:
- ALL
restart: unless-stopped
services:
ars0n-server:
<<: *defaults
build:
dockerfile: ./Docker/Dockerfile.server
# volumes: FOR DEV PORT 8000
# - ../server:/usr/src/app
env_file:
- .env
depends_on:
- ars0n-mongodb
ports:
- '127.0.0.1:8000:8000'
command: ["sh", "-c", "node /home/ars0n/server/server.js > /home/ars0n/server/server.log 2>&1"]
ars0n-client:
<<: *defaults
build:
dockerfile: ./Docker/Dockerfile.client
ports:
- '3000:3000'
# volumes: FOR DEV PORT 3000
# - /client:/usr/src/app
environment:
- NODE_ENV=production
command: ["sh", "-c", "cd /home/ars0n/client && npm run start"]
ars0n-toolkit:
<<: *defaults
build:
dockerfile: ./Docker/Dockerfile.toolkit
env_file:
- .env
ports:
- '127.0.0.1:5000:5000'
# volumes: FOR DEV PORT 5000
# - /client:/usr/src/app
environment:
- NODE_ENV=production
command: ["python", "toolkit-service.py"]
# command: sleep '10000'
ars0n-mongodb:
<<: *defaults
image: mongo:latest
ports:
- '127.0.0.1:27017:27017'
volumes:
- mongodb_data:/data/db
# gluetun:
# image: qmcgaw/gluetun
# cap_add:
# - NET_ADMIN
# env_file:
# - .env.vpn
# volumes:
# - /your/path/to/gluetun/config:/gluetun
# ports:
# - "1111:1111"
# restart: unless-stopped
volumes:
mongodb_data: