use gosu and usermod to ensure data permissions

This commit is contained in:
羽先生 2022-05-29 16:06:38 +08:00
parent 9557b9d65a
commit 2a144e73ed
2 changed files with 39 additions and 2 deletions

19
docker-entrypoint.sh Normal file
View file

@ -0,0 +1,19 @@
#!/bin/sh
USER=metube
echo "---Setup Timezone to ${TZ}---"
echo "${TZ}" > /etc/timezone
echo "---Checking if UID: ${UID} matches user---"
usermod -o -u ${UID} ${USER}
echo "---Checking if GID: ${GID} matches user---"
groupmod -o -g ${GID} ${USER} > /dev/null 2>&1 ||:
usermod -g ${GID} ${USER}
echo "---Setting umask to ${UMASK}---"
umask ${UMASK}
mkdir -p ${DOWNLOAD_DIR} ${STATE_DIR}
chown -R ${UID}:${GID} /app ${DOWNLOAD_DIR} ${STATE_DIR}
gosu ${USER} python3 app/main.py