jikan-rest/docker-entrypoint.sh

16 lines
231 B
Bash
Raw Permalink Normal View History

#!/bin/bash
set -eo pipefail
2022-08-17 20:39:43 +01:00
status=0
if [[ $# -eq 0 ]] ; then
2022-08-17 20:39:43 +01:00
php /app/docker-entrypoint.php
status=$?
else
2022-08-17 20:39:43 +01:00
php /app/docker-entrypoint.php "$@"
status=$?
fi
2022-08-17 20:39:43 +01:00
[[ $status -ne 0 ]] && exit $status
exec rr serve -c .rr.yaml