mirror of
https://github.com/octoleo/plantuml-server.git
synced 2024-10-31 18:42:30 +00:00
18 lines
414 B
Bash
Executable File
18 lines
414 B
Bash
Executable File
#!/bin/sh
|
|
# cspell:words mkdir
|
|
# cspell:enableCompoundWords
|
|
###########################################################
|
|
|
|
# use environment variables
|
|
if [ "$BASE_URL" != "ROOT" ]; then
|
|
mkdir -p "$(dirname "$WEBAPP_PATH/$BASE_URL")"
|
|
mv "$WEBAPP_PATH/ROOT.war" "$WEBAPP_PATH/$BASE_URL.war"
|
|
fi
|
|
|
|
# base image entrypoint
|
|
if [ -x /docker-entrypoint.sh ]; then
|
|
/docker-entrypoint.sh "$@"
|
|
else
|
|
exec "$@"
|
|
fi
|