Archived
1
0

docker: Allow passing $DOCKER_USER to set the username in the container

Needs to be reflected in the documentation and the dockerhub description now.

Closes #881
This commit is contained in:
Anmol Sethi
2020-08-25 15:38:12 -04:00
parent 221e95ee89
commit 4c4a7413a1
2 changed files with 20 additions and 1 deletions

18
ci/release-image/entrypoint.sh Executable file
View File

@ -0,0 +1,18 @@
#!/usr/bin/env sh
set -eu
if [ "${DOCKER_USER-}" ]; then
echo "$DOCKER_USER ALL=(ALL) NOPASSWD:ALL" | sudo tee -a /etc/sudoers.d/nopasswd > /dev/null
sudo usermod --login "$DOCKER_USER" \
--move-home --home "/home/$DOCKER_USER" \
coder
sudo groupmod -n "$DOCKER_USER" coder
sudo sed -i "/coder/d" /etc/sudoers.d/nopasswd
sudo sed -i "s/coder/$DOCKER_USER/g" /etc/fixuid/config.yml
export HOME="/home/$DOCKER_USER"
fi
# This isn't set by default.
export USER="$(whoami)"
dumb-init fixuid -q /usr/bin/code-server "$@"