Fix Docker restart issue

added line in docker/entrypoint that enables clean restarting of the application without causing a boot loop
This commit is contained in:
oldjamey
2018-09-04 15:01:23 -07:00
parent 1e6aeebb4b
commit a880f6541e

View File

@@ -7,6 +7,7 @@ CMD=$1
case "$CMD" in
'start' )
echo `pwd`
rm -f /app/tmp/pids/server.pid
bundle exec rails s -b 0.0.0.0
;;