dockerize the whole thing

This commit is contained in:
Thomas Ruoff
2017-02-23 21:43:48 +01:00
parent db2c45342f
commit f270068388
5 changed files with 26 additions and 0 deletions

12
docker-compose.yml Normal file
View File

@@ -0,0 +1,12 @@
version: '2'
services:
backend:
build: ./server
ports:
- "5000"
web:
build: ./client
links:
- backend
ports:
- "80:9999"