Claude Code Container
A Docker container for running Claude Code in "dangerously skip permissions" mode.
claude-container3.mp4
Build the docker container and execute run_claude.sh to run an isolated version of claude code with access to the current working dir ( readOnly:/workspace/input ).
/workspace/ ├── input/ # Host input files (read-only mount of $PWD) ├── output/ # Analysis results (writable mount to host) ├── data/ # Reference data (optional read-only mount) ├── temp/ # Temporary files (tmpfs mount) ├── .claude/ # Claude Code project settings │ └── settings.local.json └── mcp-servers/ # MCP server installations
Variants
Basic Claude Code container without any MCP servers configured. Clean, simple setup.
Claude Code container with MCP servers pre-configured (e.g., Chonky Security Tools). Shows how to add MCP servers, configure them, and auto-trust their execution.
Quick Start
Prerequisites
... continue reading