mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-01-23 13:18:14 -05:00
dad3e1da7c
with PUID and PGID environment variables - Detects if image is run with a user in docker command and fails if so - Adds s6 prepare scripts for adding a 'npmuser' - Split up and refactor the s6 prepare scripts - Runs nginx and backend node as 'npmuser' - Changes ownership of files required at startup
19 lines
412 B
Bash
Executable File
19 lines
412 B
Bash
Executable File
#!/command/with-contenv bash
|
|
# shellcheck shell=bash
|
|
|
|
set -e
|
|
|
|
PUID=${PUID:-911}
|
|
PGID=${PGID:-911}
|
|
|
|
# Add npmuser user
|
|
log_info 'Creating npmuser ...'
|
|
|
|
groupmod -g 1000 users || exit 1
|
|
useradd -u "${PUID}" -U -d /data -s /bin/false npmuser || exit 1
|
|
usermod -G users npmuser || exit 1
|
|
groupmod -o -g "$PGID" npmuser || exit 1
|
|
# Home for npmuser
|
|
mkdir -p /tmp/npmuserhome
|
|
chown -R npmuser:npmuser /tmp/npmuserhome
|