mirror of
https://github.com/linuxserver/docker-baseimage-alpine.git
synced 2026-02-20 00:47:04 +08:00
Merge pull request #9 from linuxserver/always-set-id
always setting uid and gid rather than test
This commit is contained in:
commit
4ddd09fdf2
@ -1,11 +1,10 @@
|
||||
#!/usr/bin/with-contenv bash
|
||||
|
||||
|
||||
PUID=${PUID:-911}
|
||||
PGID=${PGID:-911}
|
||||
|
||||
if [ ! "$(id -u abc)" -eq "$PUID" ]; then usermod -o -u "$PUID" abc ; fi
|
||||
if [ ! "$(id -g abc)" -eq "$PGID" ]; then groupmod -o -g "$PGID" abc ; fi
|
||||
groupmod -o -g "$PGID" abc
|
||||
usermod -o -u "$PUID" abc
|
||||
|
||||
echo "
|
||||
-------------------------------------
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user