Files
fizzy/bin/docker-entrypoint
T
2024-10-07 16:47:39 -04:00

9 lines
223 B
Bash
Executable File

#!/bin/bash -e
# If running the rails server then create or migrate existing database
if [ "${1}" == "./bin/thrust" ] && [ "${2}" == "./bin/rails" ] && [ "${3}" == "server" ]; then
./bin/rails db:prepare
fi
exec "${@}"