Docker sandbox environment management for dotfiles. Use when user mentions "build docker", "start container", "enter shell", "clean container", "check status", "make build", "make shell", "make clean", development environment, or container management.
Scanned 2/12/2026
Install via CLI
openskills install majiayu000/claude-skill-registry---
name: docker-sandbox
description: Docker sandbox environment management for dotfiles. Use when user mentions "build docker", "start container", "enter shell", "clean container", "check status", "make build", "make shell", "make clean", development environment, or container management.
---
# Docker Sandbox Management
dotfilesをテストするためのDocker開発環境を管理する。
## Available Commands
| Command | Description |
|---------|-------------|
| `make build` | Build Docker image |
| `make start` | Start container in background |
| `make shell` | Attach to container (auto-starts if needed) |
| `make run` | Run temporary container (removed after exit) |
| `make stop` | Stop container |
| `make clean` | Remove container and volume |
| `make status` | Show current worktree status |
| `make list` | List all dotfiles containers |
## Common Workflows
### Initial Setup
```bash
make build # Build image
make shell # Enter development environment
```
### Test Configuration Changes
After editing dotfiles on host:
```bash
make shell
# Inside container:
source ~/.zshrc # Reload zsh
tmux source ~/.tmux.conf # Reload tmux (inside tmux)
:source $MYVIMRC # Reload neovim (inside nvim)
```
### Reset Environment
```bash
make clean # Remove container and volume
make build # Rebuild image
make shell # Enter fresh environment
```
## Container Architecture
- **Image**: `dotfiles:{worktree-name}`
- **Container**: `dotfiles-{worktree-name}`
- **Volume**: `dotfiles-{worktree-name}-home` (persists home directory)
- **Mount**: `~/.dotfiles` (read-only)
## Included Tools
- Neovim (stable)
- tmux 3.5
- zsh
- Node.js (latest LTS)
- Python3 + pynvim
## Troubleshooting
### Container won't start
1. Check status: `make status`
2. View logs: `docker logs dotfiles-{worktree-name}`
3. Rebuild: `make clean && make build`
### Changes not reflected
dotfiles are mounted read-only. Edit on host, then reload inside container.
No comments yet. Be the first to comment!
Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...