A code-server Docker image with the Claude Code CLI pre-installed.
codercom/code-server:4.114.1— browser-based VS CodeclaudeCLI2.1.109— installed via the official install scriptnvm0.40.3— Node.js version manager with LTS pre-installed- Persistent Claude config —
~/.claude.jsonis symlinked to a backups directory so settings survive container recreation
docker pull ghcr.io/rpoetrap/coder-claude:<tag>
docker run -d \
-p 8080:8080 \
-v "$HOME/.config:/home/coder/.config" \
-v "$PWD:/home/coder/project" \
ghcr.io/rpoetrap/coder-claude:<tag>Then open http://localhost:8080 in your browser.
Images are built and pushed to GitHub Container Registry automatically when a tag is pushed:
git tag v1.0.0
git push origin v1.0.0Supported platforms: linux/amd64, linux/arm64.