refactor of the entrypoint feature

This commit is contained in:
Alex Shnitman 2022-06-19 22:15:42 +03:00
parent 566774316f
commit dccf8d5bf6
3 changed files with 20 additions and 53 deletions

View file

@ -1,18 +1,19 @@
#!/bin/sh
echo "You are running with user `id -u`:`id -g`"
echo "Setting umask to ${UMASK}"
umask ${UMASK}
echo "Creating download directory ${DOWNLOAD_DIR} and state directory ${STATE_DIR}"
mkdir -p "${DOWNLOAD_DIR}" "${STATE_DIR}"
if [ `id -u` -eq 0 ] && [ `id -g` -eq 0 ]; then
echo "Running in New Mode"
if [ "${UID}" -eq 0 ]; then
echo "Warning, it is not recommended to run as root user, please check if you have set the UID environment variable"
echo "Warning: it is not recommended to run as root user, please check your setting of the UID environment variable"
fi
echo "Setting umask to ${UMASK}"
umask ${UMASK}
mkdir -p "${DOWNLOAD_DIR}" "${STATE_DIR}"
echo "Changing ownership of download and state directories to ${UID}:${GID}"
chown -R "${UID}":"${GID}" /app "${DOWNLOAD_DIR}" "${STATE_DIR}"
echo "Running MeTube as user ${UID}:${GID}"
su-exec "${UID}":"${GID}" python3 app/main.py
else
echo "Running in Legacy Mode"
echo "User set by docker; running MeTube as `id -u`:`id -g`"
python3 app/main.py
fi