mirror of
https://github.com/thomiceli/opengist.git
synced 2024-12-22 12:32:40 +00:00
18 lines
391 B
Bash
Executable file
18 lines
391 B
Bash
Executable file
#!/bin/sh
|
|
|
|
export USER=opengist
|
|
UID=${UID:-1000}
|
|
GID=${GID:-1000}
|
|
groupmod -o -g "$GID" $USER
|
|
usermod -o -u "$UID" $USER
|
|
|
|
chown -R "$USER:$USER" /opengist
|
|
chown -R "$USER:$USER" /config.yml
|
|
|
|
if [ -f "/run/secrets/opengist_secrets" ]; then
|
|
set -a
|
|
. /run/secrets/opengist_secrets
|
|
set +a
|
|
fi
|
|
|
|
exec su $USER -c "OG_OPENGIST_HOME=/opengist /app/opengist/opengist --config /config.yml"
|