mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 07:44:25 +00:00
12 lines
239 B
Bash
12 lines
239 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ -x /usr/local/bin/docker-setup.sh ]; then
|
||
|
/usr/local/bin/docker-setup.sh || { echo 'docker setup failed' ; exit 1; }
|
||
|
fi
|
||
|
|
||
|
if [ $# -gt 0 ]; then
|
||
|
exec "$@"
|
||
|
else
|
||
|
exec /usr/local/bin/gitea -c ${GITEA_APP_INI} web
|
||
|
fi
|