mirror of
https://github.com/makayabou/asg-server.git
synced 2026-05-02 17:43:36 +02:00
13 lines
279 B
Bash
Executable File
13 lines
279 B
Bash
Executable File
#!/bin/sh
|
|
# docker-entrypoint.sh
|
|
|
|
# Immediately exit if any command has a non-zero exit status.
|
|
set -e
|
|
|
|
# Execute DB migrations only when the main application is about to run
|
|
if [ "${1:-}" = "/app/app" ]; then
|
|
/app/app db:migrate up
|
|
fi
|
|
|
|
# Execute the main application
|
|
exec "$@" |