2020-09-03 18:38:40 -04:00
|
|
|
#!/bin/sh
|
2020-08-25 15:38:12 -04:00
|
|
|
set -eu
|
|
|
|
|
2020-10-23 12:07:08 -04:00
|
|
|
# We do this first to ensure sudo works below when renaming the user.
|
|
|
|
# Otherwise the current container UID may not exist in the passwd database.
|
|
|
|
eval "$(fixuid -q)"
|
|
|
|
|
2021-05-12 01:26:38 +10:00
|
|
|
if [ "${DOCKER_USER-}" ]; then
|
2020-09-09 00:07:04 -04:00
|
|
|
USER="$DOCKER_USER"
|
2021-05-12 01:26:38 +10:00
|
|
|
if [ "$DOCKER_USER" != "$(whoami)" ]; then
|
2021-06-28 22:06:55 +05:30
|
|
|
echo "$DOCKER_USER ALL=(ALL) NOPASSWD:ALL" | sudo tee -a /etc/sudoers.d/nopasswd > /dev/null
|
2021-05-12 01:26:38 +10:00
|
|
|
# Unfortunately we cannot change $HOME as we cannot move any bind mounts
|
|
|
|
# nor can we bind mount $HOME into a new home as that requires a privileged container.
|
|
|
|
sudo usermod --login "$DOCKER_USER" coder
|
|
|
|
sudo groupmod -n "$DOCKER_USER" coder
|
2020-09-03 18:38:40 -04:00
|
|
|
|
2021-05-12 01:26:38 +10:00
|
|
|
sudo sed -i "/coder/d" /etc/sudoers.d/nopasswd
|
|
|
|
fi
|
2020-08-25 15:38:12 -04:00
|
|
|
fi
|
|
|
|
|
2022-02-11 20:44:01 +01:00
|
|
|
exec dumb-init /usr/bin/code-server "$@"
|