#!/bin/sh #dockerd-entrypoint.sh #exec nohup "dockerd-entrypoint.sh" > nohup.out 2>&1 nohup "dockerd-entrypoint.sh" & COUNT=0 while [[ $COUNT -lt 10 ]] do echo $COUNT sleep 1; COUNT=$((COUNT+1)) done python app.py -f True