一键导入
docker-cli
Use the Docker CLI to build images, run containers, manage volumes, networks, and use Docker Compose for multi-container applications.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use the Docker CLI to build images, run containers, manage volumes, networks, and use Docker Compose for multi-container applications.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use OpenCLI to turn any website, Electron app, or local tool into a CLI. 50+ adapters for social media, news, finance, and dev tools. Reuses Chrome login sessions with zero credentials. AI-agent ready with structured output.
Use the AWS CLI to manage S3 buckets, Lambda functions, EC2 instances, IAM, DynamoDB, and all AWS services from the terminal. Use this instead of the AWS MCP server.
Use the Azure CLI (az) to manage Azure resources including App Service, Functions, VMs, storage, and databases. Use this instead of the Azure MCP server.
Use Blender from the command line to render 3D scenes, run Python scripts for batch processing, and convert 3D file formats without the GUI.
Use FFmpeg to convert, process, and manipulate video and audio files from the terminal. Transcode formats, extract audio, create thumbnails, trim clips, and more.
Use the Firebase CLI to manage hosting, Cloud Functions, Firestore, Authentication, and deploy Firebase projects. Use this instead of the Firebase MCP server.
| name | docker-cli |
| description | Use the Docker CLI to build images, run containers, manage volumes, networks, and use Docker Compose for multi-container applications. |
Container runtime and management tool. Build images, run containers, manage networks, volumes, and orchestrate with Compose.
docker build -t my-app:latest .
docker build -t my-app:latest -f Dockerfile.prod .
docker images
docker image prune -f # Remove dangling images
docker pull nginx:latest
docker push registry.example.com/my-app:latest
docker tag my-app:latest registry.example.com/my-app:v1
docker run -d --name my-app -p 3000:3000 my-app:latest
docker run -it --rm ubuntu:latest bash # Interactive, auto-remove
docker run -d -v $(pwd):/app -w /app node:20 npm start
docker ps # Running containers
docker ps -a # All containers
docker logs my-app --follow --tail 50
docker exec -it my-app bash # Shell into container
docker stop my-app
docker rm my-app
docker inspect my-app
docker compose up -d # Start all services
docker compose up -d --build # Rebuild and start
docker compose down # Stop and remove
docker compose logs -f service-name # Follow service logs
docker compose ps # List services
docker compose exec service-name bash # Shell into service
docker compose pull # Pull latest images
docker volume ls
docker volume create my-data
docker network ls
docker network create my-network
docker system df # Disk usage
docker system prune -f # Clean up everything unused
docker stats # Live resource usage
-d (detach) for background containers, --rm for temporary onesdocker compose over individual docker run for multi-service appslatestdocker logs --tail 50 to limit log outputdocker inspect --format '{{.State.Status}}' for specific fieldsdocker compose --profile test up for conditional servicesdocker ps --format json for structured outputdocker build -t my-app:dev .
docker run -d --name my-app -p 3000:3000 -v $(pwd)/src:/app/src my-app:dev
docker logs my-app --follow
docker system prune -af --volumes