#!/bin/sh echo "Setting umask to ${UMASK}" umask ${UMASK} echo "Creating download directory (${DOWNLOAD_DIR}), state directory (${STATE_DIR}), and temp dir (${TEMP_DIR})" mkdir -p "${DOWNLOAD_DIR}" "${STATE_DIR}" "${TEMP_DIR}" if [ `id -u` -eq 0 ] && [ `id -g` -eq 0 ]; then if [ "${UID}" -eq 0 ]; then echo "Running as root user (UID=0, GID=0) - this is now the default configuration" fi echo "Running MeTube as user ${UID}:${GID}" exec su-exec "${UID}":"${GID}" python3 app/main.py else echo "User set by docker; running MeTube as `id -u`:`id -g`" exec python3 app/main.py fi