Files
trezor-suite/docker/suite/entrypoint.sh
2022-08-19 11:03:00 +02:00

14 lines
284 B
Bash
Executable File

#!/bin/bash
# Add local user
# Either use the LOCAL_USER_ID if passed in at runtime or
# fallback
USER_ID=${LOCAL_USER_ID:-9001}
echo "Starting with UID : $USER_ID"
useradd --shell /bin/bash -u "$USER_ID" -o -c "" -m user
export HOME=/home/user
exec /usr/local/bin/gosu user "$@"