mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00

fix the digests missing tweak dockerhub digests 1 Revert "tweak dockerhub digests 1" This reverts commit 3542125d6035d2330fe1075682b046133568137d. Revert "fix the digests missing" This reverts commit 01954e5687549586233d73339b74e03e2182a339. give this a shot then add short sha fix sha tag names
7 lines
276 B
Bash
Executable File
7 lines
276 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 -og ${USER_GID} node || echo "No USER_GID specified, leaving 1000"
|
|
|
|
chown -R node:node /home/node
|
|
exec su -c "node ./src/www" node |