Skip to content

Commit

Permalink
chore: prevent docker-entrypoint from knowing where the app is running
Browse files Browse the repository at this point in the history
  • Loading branch information
santiagorodriguez96 committed May 3, 2024
1 parent 144383f commit b5a02a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/docker-entrypoint
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
if [ "${1}" == "./bin/rails" ] && [ "${2}" == "server" ]; then
./bin/rails db:prepare

file="/rails/tmp/pids/server.pid"
file="./tmp/pids/server.pid"
if [ -f "$file" ] ; then
rm "$file"
fi
Expand Down

0 comments on commit b5a02a4

Please sign in to comment.