Files
baclight/bin/docker-entrypoint-production
T

9 lines
174 B
Bash
Raw Normal View History

#!/bin/bash -e
# If running the rails server then create or migrate existing database
2023-09-30 19:08:46 -07:00
if [ "${*}" == "./bin/rails server" ]; then
# ./bin/rails db:prepare
2023-09-30 19:08:46 -07:00
fi
exec "${@}"