Production-ready Code Server - VS Code in the browser
1.9K
Production-ready Docker image for Code Server, allowing you to run VS Code on any remote machine and access it in the browser.
Version: 4.106.2 | Architectures: amd64, arm64
Maintained by Zylarian Innovations LLC
# Pull and run
docker run -d \
-p 8080:8080 \
-v ~/.config/code-server:/home/coder/.config/code-server \
-v "$PWD":/home/coder/project \
-e PASSWORD=yourpassword \
--name code-server \
zylarian/dockyard-code-server:latest
# Access at http://localhost:8080
| Tag | Description |
|---|---|
latest | Latest stable version |
4.106.2 | Specific version |
4.106.2-debian | Specific version with explicit Debian tag |
| Variable | Description | Default |
|---|---|---|
PASSWORD | Password for access | coder |
HASHED_PASSWORD | Hashed password (overrides PASSWORD) | - |
SUDO_PASSWORD | Password for sudo access | - |
SUDO_PASSWORD_HASH | Hashed sudo password | - |
TZ | Timezone | UTC |
Mount volumes to persist configuration and projects:
volumes:
- ./config:/home/coder/.config/code-server
- ./project:/home/coder/project
version: '3.8'
services:
code-server:
image: zylarian/dockyard-code-server:latest
container_name: code-server
environment:
- PASSWORD=password
- TZ=UTC
ports:
- "8080:8080"
volumes:
- ./config:/home/coder/.config/code-server
- ./project:/home/coder/project
restart: unless-stopped
coder, UID 1000)Content type
Image
Digest
sha256:4664cc76c…
Size
194.5 MB
Last updated
10 months ago
docker pull zylarian/dockyard-code-server