Auto restart in lieu of real health checks

This commit is contained in:
raynor 2022-12-17 21:22:26 -05:00
parent ccfbbc1997
commit c2d101b946
1 changed files with 5 additions and 2 deletions

View File

@ -21,5 +21,8 @@ then
/scripts/run-firehose.sh &
fi
## Don't let the container exit
while true; do sleep 1; done
## We don't have a health check, so just exit after an hour
# If your docker file has restart: always on this should gracefully exit, and
# then restart
sleep 1h
exit 0