mirror of
https://github.com/thomiceli/opengist.git
synced 2024-12-23 04:52:40 +00:00
14 lines
231 B
Bash
14 lines
231 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
export USER=opengist
|
||
|
PID=${PID:-1000}
|
||
|
GID=${GID:-1000}
|
||
|
groupmod -o -g "$GID" $USER
|
||
|
usermod -o -u "$PID" $USER
|
||
|
|
||
|
chown -R "$USER:$USER" /opengist
|
||
|
|
||
|
export OG_OPENGIST_HOME=/opengist
|
||
|
|
||
|
su -m $USER -c "/app/opengist/opengist"
|