All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ruby-on-rails-server.docker-entrypoint.sh Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version
#!/bin/sh
set -e

if [ "$1" = 'bin/rails' ] && [ "$2" = 's' ]; then
    rm -f /myapp/tmp/pids/server.pid
    bin/rails db:migrate
fi

exec "$@"




© 2015 - 2024 Weber Informatics LLC | Privacy Policy