We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a761b41 + 225b8c5 commit ba88147Copy full SHA for ba88147
2 files changed
.gitignore
@@ -2,3 +2,4 @@
2
*config
3
*/logs/*
4
npm-debug.log
5
+*.swp
docker-compose.yml
@@ -0,0 +1,23 @@
1
+version: '2'
+services:
+ iClientNodeServer:
+ image: node:4.6.0
+ container_name: iClientNodeServer
6
+ restart: always
7
+ ports:
8
+ - "3000:3000"
9
+ volumes:
10
+ - ./server:/server
11
+ tty: true
12
+
13
+ iClientMongoServer:
14
+ image: mongo:3.0
15
+ container_name: iClientMongoServer
16
17
18
+ - iClientMongoData:/data/db
19
20
+ - "27017:27017"
21
22
+volumes:
23
+ iClientMongoData: {}
0 commit comments