mirror of
https://github.com/jikan-me/jikan-rest.git
synced 2025-02-20 11:23:35 +08:00
11 lines
171 B
Bash
11 lines
171 B
Bash
|
#!/bin/bash
|
||
|
set -eo pipefail
|
||
|
|
||
|
if [[ $# -eq 0 ]] ; then
|
||
|
exec php /app/docker-entrypoint.php
|
||
|
else
|
||
|
exec php /app/docker-entrypoint.php "$@"
|
||
|
fi
|
||
|
|
||
|
exec rr serve -c .rr.yaml
|