From 2f4f612660440373735a92b033e58b5bcfaa0e70 Mon Sep 17 00:00:00 2001 From: Daniel Huhn Date: Thu, 13 Apr 2017 22:40:03 +0200 Subject: [PATCH] switched to docker-compose to support building and running without shellscripts --- buildDocker.sh | 2 +- docker-compose.yml | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 docker-compose.yml diff --git a/buildDocker.sh b/buildDocker.sh index 0cab0df..3803e96 100755 --- a/buildDocker.sh +++ b/buildDocker.sh @@ -1,2 +1,2 @@ #!/bin/bash -docker build -t flipdot/rechenwesen . \ No newline at end of file +docker-compose build \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..eec301c --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,5 @@ +version: "3" +services: + app: + image: flipdot/rechenwesen + build: .