mirror of
https://github.com/makayabou/asg-server.git
synced 2026-05-02 17:43:36 +02:00
11 lines
191 B
Bash
Executable File
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 "$@"
|