mirror of
https://github.com/alexta69/metube.git
synced 2025-04-03 20:27:36 +03:00
use gosu and usermod to ensure data permissions
This commit is contained in:
parent
9557b9d65a
commit
2a144e73ed
2 changed files with 39 additions and 2 deletions
19
docker-entrypoint.sh
Normal file
19
docker-entrypoint.sh
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue