mirror of
https://github.com/immich-app/immich.git
synced 2025-02-11 01:18:24 -05:00
6 lines
224 B
Bash
6 lines
224 B
Bash
#! /bin/sh
|
|
if [ "$(id -u)" -eq 0 ] && [ -n "$PUID" ] && [ -n "$PGID" ]; then
|
|
exec setpriv --reuid "$PUID" --regid "$PGID" --clear-groups node /usr/src/app/build/index.js
|
|
else
|
|
exec node /usr/src/app/build/index.js
|
|
fi
|