| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Docker images for Coder workspaces. Built on Coder’s enterprise base and extended with language runtimes, developer tooling, and the AI CLIs we use day to day.
dockette/coder is meant to drop into a Coder Terraform template so new workspaces come up with a sane dev stack already in place — no per-workspace provisioning scripts.
Every image builds on codercom/enterprise-base:ubuntu (Ubuntu, coder user, the usual Coder expectations) and adds a shared baseline of developer and AI tooling. On top of that baseline, each tag targets a specific stack: an all-in-one image (fx) plus focused, lighter images for PHP, Node.js, Go, and Python.
All images are published to Docker Hub as dockette/coder, one tag per template:
| Tag | Focus | Node.js | pnpm | Deno / Bun | PHP 8.5 + Composer | Python 3 | Go | Rootless Docker |
|---|---|---|---|---|---|---|---|---|
| fx | Everything | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| php | PHP | ✅ | ✅ | |||||
| nodejs | JavaScript runtime | ✅ | ✅ | |||||
| golang | Go | ✅ | ✅ | |||||
| python | Python | ✅ | ✅ |
Node.js (with npm) ships in every image because the shared AI CLIs are installed from npm. The nodejs tag additionally provides Deno and Bun; only the fx tag adds pnpm. The T3 Code browser GUI (t3) is bundled only in the fx tag.
Every image includes:
The AI CLIs are installed into a location that survives Coder’s persistent /home/coder volume, so they remain available after the home directory is mounted over at runtime.
The all-in-one image — the shared baseline plus every language runtime and Docker-in-Docker. Choose this when a workspace is polyglot or you don’t want to commit to one stack.
PHP-focused image for backend and web projects.
JavaScript/TypeScript image with multiple runtimes.
Go-focused image.
Python-focused image.
Point your Coder workspace image at the tag that fits your stack (or build from the matching <template>/Dockerfile if you fork):
resource "docker_container" "workspace" {
count = data.coder_workspace.me.start_count
- image = "codercom/enterprise-base:ubuntu"
+ image = "dockette/coder:fx"
...
}Swap fx for php, nodejs, golang, or python to use a lighter, stack-specific image.
The fx image can run Docker-in-Docker without privileged root. Start the daemon inside the workspace:
dockerd-rootless-start
docker run --rm hello-worldDOCKER_HOST and XDG_RUNTIME_DIR are preset for login shells, so the CLI talks to the rootless daemon automatically. The host must permit nested user namespaces — in a Coder Terraform template, run the workspace container with privileged = true (or the equivalent --userns setup), and call dockerd-rootless-start from startup_script so Docker is ready on boot.
Both variables are defaults. If DOCKER_HOST is already set, the profile and the script keep that value. The script starts no daemon if one answers there.
Images are built and tested per template with the provided Makefile. DOCKER_VARIANT selects the template (default fx):
# Build and test a single template
make build DOCKER_VARIANT=nodejs
make test DOCKER_VARIANT=nodejs
make run DOCKER_VARIANT=nodejs
# Build and test every template
make build-all
make test-allEach template is smoke-tested in CI (build, then version checks for its runtimes and the shared CLIs) and, on master, built and pushed to Docker Hub across all five tags.
See how to contribute to this package. Consider to support f3l1x. Thank you for using this package.
| Back | FazBrowse Home | New Git URL |