mirror of
https://github.com/thomiceli/opengist.git
synced 2024-12-22 20:42:40 +00:00
Fix Docker entrypoint typo
This commit is contained in:
parent
fc421a68b5
commit
0936cbc455
1 changed files with 2 additions and 2 deletions
|
@ -1,10 +1,10 @@
|
|||
#!/bin/sh
|
||||
|
||||
export USER=opengist
|
||||
PID=${PID:-1000}
|
||||
UID=${UID:-1000}
|
||||
GID=${GID:-1000}
|
||||
groupmod -o -g "$GID" $USER
|
||||
usermod -o -u "$PID" $USER
|
||||
usermod -o -u "$UID" $USER
|
||||
|
||||
chown -R "$USER:$USER" /opengist
|
||||
|
||||
|
|
Loading…
Reference in a new issue