commit 574bfb5383b525b58acc16d30182d5dbaffff193 parent f85f6cefe445bd344b244d0157f3d1b8ffcb4f3c Author: Marcel <MTRNord@users.noreply.github.com> Date: Thu, 11 Aug 2016 18:49:09 +0200 Create start Diffstat:
| A | start | | | 12 | ++++++++++++ |
1 file changed, 12 insertions(+), 0 deletions(-)
diff --git a/start b/start @@ -0,0 +1,12 @@ +#!/bin/bash +if [[ "$INITSYSTEM" == "on" ]]; then + echo "RUNNING" +else + echo "RUNNING" +fi + +while true +do + echo "App exited but container is still running to allow web terminal access" + sleep 3600 +done