asg-server/scripts/docker-entrypoint.sh
2024-01-26 23:14:59 +07:00

11 lines
191 B
Bash
Executable File

#!/bin/sh
# docker-entrypoint.sh
# Immediately exit if any command has a non-zero exit status.
set -e
# Execute any pre-startup scripts or tasks.
/app/app db:migrate up
exec /app/app "$@"