Skip to content

Commit 4e2acab

Browse files
committed
docker: Fix $DOCKER_USER
We do not try renaming $HOME anymore as there is no good way to do it. We also only try to convert if the user hasn't been changed. Finally I added usage to the docker docs in install.md Closes #2056
1 parent ceceef1 commit 4e2acab

File tree

3 files changed

+16
-10
lines changed

3 files changed

+16
-10
lines changed

ci/release-image/Dockerfile

+4-1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ COPY ci/release-image/entrypoint.sh /usr/bin/entrypoint.sh
3939
RUN dpkg -i /tmp/code-server*$(dpkg --print-architecture).deb && rm /tmp/code-server*.deb
4040

4141
EXPOSE 8080
42-
USER coder
42+
# This way, if someone sets $DOCKER_USER, docker-exec will still work as
43+
# the uid will remain the same. note: only relevant if -u isn't passed to
44+
# docker-run.
45+
USER 1000
4346
WORKDIR /home/coder
4447
ENTRYPOINT ["/usr/bin/entrypoint.sh", "--bind-addr", "0.0.0.0:8080", "."]

ci/release-image/entrypoint.sh

+10-8
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
1-
#!/usr/bin/env sh
1+
#!/bin/sh
22
set -eu
33

4-
if [ "${DOCKER_USER-}" ]; then
4+
# This isn't set by default.
5+
export USER="$(whoami)"
6+
7+
if [ "${DOCKER_USER-}" != "$USER" ]; then
58
echo "$DOCKER_USER ALL=(ALL) NOPASSWD:ALL" | sudo tee -a /etc/sudoers.d/nopasswd > /dev/null
6-
sudo usermod --login "$DOCKER_USER" \
7-
--move-home --home "/home/$DOCKER_USER" \
8-
coder
9+
# Unfortunately we cannot change $HOME as we cannot move any bind mounts
10+
# nor can we bind mount $HOME into a new home as that requires a privileged container.
11+
sudo usermod --login "$DOCKER_USER" coder
912
sudo groupmod -n "$DOCKER_USER" coder
1013

14+
export USER="$(whoami)"
15+
1116
sudo sed -i "/coder/d" /etc/sudoers.d/nopasswd
1217
sudo sed -i "s/coder/$DOCKER_USER/g" /etc/fixuid/config.yml
13-
export HOME="/home/$DOCKER_USER"
1418
fi
1519

16-
# This isn't set by default.
17-
export USER="$(whoami)"
1820
dumb-init fixuid -q /usr/bin/code-server "$@"

doc/install.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -179,10 +179,11 @@ code-server
179179
# easily access/modify your code-server config in $HOME/.config/code-server/config.json
180180
# outside the container.
181181
mkdir -p ~/.config
182-
docker run -it -p 127.0.0.1:8080:8080 \
182+
docker run -it --name code-server -p 127.0.0.1:8080:8080 \
183183
-v "$HOME/.config:/home/coder/.config" \
184184
-v "$PWD:/home/coder/project" \
185185
-u "$(id -u):$(id -g)" \
186+
-e "DOCKER_USER=$USER" \
186187
codercom/code-server:latest
187188
```
188189

0 commit comments

Comments
 (0)