Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

koderzi/dev

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
14 Commits
 
 
 
 
 
 
 
 

Repository files navigation

dev

Universal GPU-accelerated dev container for all projects. Clone project repos inside the container and use mise for per-project runtime isolation.

What's Included

Tool Purpose
mise Polyglot runtime manager (Python, Node.js, Ruby, Go, Java, etc.)
Node.js 22 Pre-installed globally via mise
Google Chrome Browser for web dev and automation
Google Antigravity Installed via official APT repo, with auto-updates
Desktop GUI Virtual desktop streamed via noVNC (auto-opens in browser)
Gemini CLI Google AI coding assistant (gemini)
Claude Code Anthropic AI coding assistant (claude)
chrome-devtools-mcp Chrome DevTools MCP server (globally installed, pre-configured in Gemini CLI with headless=false)

Quick Start

  1. Use this repository as a template on GitHub (click "Use this template" → "Create a new repository").

  2. In VS Code, open Command Palette → "Dev Containers: Clone Repository in Named Container Volume...".

  3. Enter your new repository URL (e.g., https://github.com/yourusername/dev.git) and give it a name.

  4. Clone your projects into the workspace:

    git clone https://github.com/yourusername/your-project.git
    cd your-project
  5. Set up the project's runtime using mise:

    # Python project
    mise use python@3.13
    mise config set env._.python.venv.path .venv
    mise config set env._.python.venv.create true
    
    # Node.js project
    mise use node@22
    
    # Multiple runtimes
    mise use python@3.13 node@22
  6. Install project dependencies as usual:

    pip install -r requirements.txt   # Python
    npm install                        # Node.js
    composer install                   # PHP

GPU Support

This template is configured with NVIDIA GPU passthrough by default (--gpus all --runtime=nvidia).

To run without GPU, edit .devcontainer/devcontainer.json and remove the GPU-related runArgs:

"runArgs": [
    "--security-opt",
    "seccomp=unconfined"
],

Desktop GUI

A virtual desktop is available via noVNC on port 6080. It auto-opens in your browser when the container starts.

AI Tools

All AI coding assistants are pre-installed globally:

# Gemini CLI (pre-configured with chrome-devtools-mcp, headless=false)
gemini

# Claude Code
claude

# Chrome DevTools MCP (starts automatically with Gemini)
chrome-devtools-mcp

Project Isolation with mise

Each project folder gets its own mise.toml with isolated runtimes and virtual environments:

(workspace root)/
├── project-a/          # Python 3.13 + .venv
│   └── mise.toml
├── project-b/          # Node.js 22
│   └── mise.toml
└── project-c/          # Python 3.11 + Node.js 20
    └── mise.toml

When you cd into a project directory, mise automatically activates the correct runtimes.

About

Universal, GPU-accelerated Dev Container based on Debian Bookworm, optimized for AI-driven development and polyglot project isolation. It features pre-configured AI coding tools (Gemini CLI, Claude Code), a noVNC Desktop GUI, and Google Antigravity, utilizing mise for seamless multi-runtime management (Node.js, Python, etc.) across nested projects.

Topics

Resources

License

Stars

Watchers

Forks

Contributors

Morty Proxy This is a proxified and sanitized view of the page, visit original site.