kojott

Claude Docker — DevOps skill for Claude Code

DevOps community

Claude in YOLO mode locked in docker environment with all the tools you might need.

How to install Claude Docker

This entry records only its repository, not the path inside it, so there is no exact command to give. Open kojott/claude-docker and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Claude Docker does

Claude in YOLO mode locked in docker environment with all the tools you might need.

Alternatives in DevOps

  • Docker 71.9k ★
  • Mirrord — Run any process, on your machine or in an AI agent's environment, as if it were a pod in your Kubernetes clust 5.3k ★
  • Skill Claw — OpenClaw instance administration — manage hosts across macOS, Ubuntu/Debian, Docker, OCI, and Proxmox 2.8k ★

README

claude-docker

Secure Docker sandbox for running Claude Code in YOLO mode (`--dangerously-skip-permissions`). A lightweight Debian-based image with an interactive first-run wizard that lets you pick which runtimes, tools, and Claude plugins to install.

Works on Linux, macOS, and Windows (via Docker Desktop).

Table of Contents

Quick Start

git clone https://github.com/kojott/claude-docker.git
cd claude-docker
cp .env.example .env          # set PROJECTS_DIR and ANTHROPIC_API_KEY
docker compose up -d
docker exec -it claude-dev bash

On first connect, the **init wizard** appears — select your runtimes (Python, Go, Rust, etc.), dev tools, and Claude plugins. Everything installs inside the container.

How It Works

┌──────────────────────────────────────────────────┐
│  HOST MACHINE                                    │
│                                                  │
│  ~/projects/ ◄──────── mounted as /work ────►    │
│                                                  │
│  ┌────────────────────────────────────────────┐  │
│  │  DOCKER CONTAINER (claude-dev)             │  │
│  │                                            │  │
│  │  /work        ← your projects (read/write) │  │
│  │  /home/dev    ← dev user home              │  │
│  │                                            │  │
│  │  Claude Code + tmux session manager (cl)   │  │
│