Add docker-compose.yml file

To run the site in docker is now a single command.
This commit is contained in:
Rui Martins
2017-08-09 09:57:33 +02:00
parent 162565bccd
commit a65bad570b
3 changed files with 16 additions and 11 deletions

11
docker-compose.yml Normal file
View File

@@ -0,0 +1,11 @@
version: '2'
services:
server:
build:
context: .
dockerfile: Dockerfile
image: result/latest
ports:
- "4000:4000"
volumes:
- ".:/src"