mirror of
https://github.com/zadam/trilium.git
synced 2024-11-10 17:13:45 +08:00
7775d90b9a
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
7 lines
280 B
Bash
Executable file
7 lines
280 B
Bash
Executable file
#!/bin/sh
|
|
|
|
[[ ! -z "${USER_UID}" ]] && usermod -u ${USER_UID} node || echo "No USER_UID specified, leaving 1000"
|
|
[[ ! -z "${USER_GID}" ]] && groupmod -g ${USER_GID} node || echo "No USER_GID specified, leaving 1000"
|
|
|
|
chown -R node:node /home/node
|
|
exec su-exec node node ./src/www
|