Browse Source

feat: Update entrypoint.sh to set HOME environment variable

This commit updates the entrypoint.sh script to set the HOME environment variable to /home/docker. This change ensures that the correct home directory is used when switching to user ${USERNAME}.
pull/15/head
Daniel Gibbs 2 years ago
parent
commit
facb68e8a2
  1. 1
      entrypoint.sh

1
entrypoint.sh

@ -49,6 +49,7 @@ echo -e "updating permissions"
find /linuxgsm -user ${UID} -exec chown -h linuxgsm {} \;
find /linuxgsm -group ${GID} -exec chgrp -h linuxgsm {} \;
chown -R ${USERNAME}:${USERNAME} /linuxgsm
export HOME=/home/docker
echo -e ""
echo -e "Switch to user ${USERNAME}"

Loading…
Cancel
Save