fix: Improve docker example first user experience (#4972)

The base ubuntu image lands the user as root, but the terraform tempalte
expected /home/coder to be used. This change adds a user with the same
name as the Coder users username and allows them to sudo.
This commit is contained in:
Mathias Fredriksson
2022-11-10 12:55:39 +02:00
committed by GitHub
parent 4885ecc3ad
commit 570a1ffc2b
2 changed files with 25 additions and 3 deletions

View File

@ -1,3 +1,18 @@
FROM ubuntu
RUN apt-get update && apt-get install -y curl wget git vim golang
RUN apt-get update \
&& apt-get install -y \
curl \
git \
golang \
sudo \
vim \
wget \
&& rm -rf /var/lib/apt/lists/*
ARG USER=coder
RUN useradd --groups sudo --no-create-home ${USER} \
&& echo "${USER} ALL=(ALL) NOPASSWD:ALL" >/etc/sudoers.d/${USER} \
&& chmod 0440 /etc/sudoers.d/${USER}
USER ${USER}
WORKDIR /home/${USER}

View File

@ -11,6 +11,10 @@ terraform {
}
}
locals {
username = data.coder_workspace.me.owner
}
data "coder_provisioner" "me" {
}
@ -46,7 +50,7 @@ resource "coder_app" "code-server" {
agent_id = coder_agent.main.id
slug = "code-server"
display_name = "code-server"
url = "http://localhost:13337/?folder=/home/coder"
url = "http://localhost:13337/?folder=/home/${local.username}"
icon = "/icon/code.svg"
subdomain = false
share = "owner"
@ -91,6 +95,9 @@ resource "docker_image" "main" {
name = "coder-${data.coder_workspace.me.id}"
build {
path = "./build"
build_arg = {
USER = local.username
}
}
triggers = {
dir_sha1 = sha1(join("", [for f in fileset(path.module, "build/*") : filesha1(f)]))
@ -112,7 +119,7 @@ resource "docker_container" "workspace" {
ip = "host-gateway"
}
volumes {
container_path = "/home/coder/"
container_path = "/home/${local.username}"
volume_name = docker_volume.home_volume.name
read_only = false
}