-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathdev.yml
More file actions
27 lines (27 loc) · 440 Bytes
/
dev.yml
File metadata and controls
27 lines (27 loc) · 440 Bytes
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
server:
build: .
ports:
- "80:80"
- "9000:9000"
- "9001:9001"
links:
- "db"
- "mongo"
volumes:
- ./data:/app/data
- ./config:/app/config
- ./server:/app/server
- ./client:/app/client
environment:
NODE_ENV: docker-local
PORT: 80
db:
image: tutum/mysql:5.5
ports:
- "3306:3306"
environment:
MYSQL_PASS: "6gdP7R3adDYNehj"
mongo:
image: dockerfile/mongodb
ports:
- "27017:27017"