Files
fizzy/bin/docker-entrypoint
T
2025-10-23 12:14:00 +02:00

9 lines
225 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/migrate-primary-db
fi
exec "${@}"