From a3bd71035f51da3d76d22a5b0dbd4b6dffa7638f Mon Sep 17 00:00:00 2001
From: Kamil Manka <kamil.manka@seamless.se>
Date: Wed, 23 Dec 2015 11:30:18 +0100
Subject: [PATCH] While loop removed

---
 README.md | 2 +-
 run.sh    | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 25b4801..b075083 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@ Mapping local plugin dev directory to the Prestashop data container.
 ```bash  
 export DEV_DIR /home/yourhome/path/to/seqr/plugin
 
-docker-compose up
+docker-compose up -d
 
 ```
 
diff --git a/run.sh b/run.sh
index a23680d..3a231b3 100755
--- a/run.sh
+++ b/run.sh
@@ -4,5 +4,6 @@ unzip -q /tmp/temp -d /tmp
 cp -rf /tmp/prestashop/* /var/www/html
 rm -rf /tmp/*
 chown -R www-data:www-data /var/www
+chmod -Rf 777 /var/www/html/modules/seqr
 
-while true; do true; done;
+exec /bin/true
-- 
GitLab