一键导入
docker-compose-helper
Assists with Docker Compose configuration, multi-container setups, and debugging container issues.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Assists with Docker Compose configuration, multi-container setups, and debugging container issues.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | docker-compose-helper |
| description | Assists with Docker Compose configuration, multi-container setups, and debugging container issues. |
| homepage | https://docs.docker.com/compose/ |
Manage multi-container Docker applications with ease.
# Start services
docker-compose up -d
# View logs
docker-compose logs -f service_name
# Rebuild and restart
docker-compose up -d --build
# Stop all services
docker-compose down
# Remove volumes too
docker-compose down -v
version: '3.8'
services:
web:
build: .
ports:
- "3000:3000"
environment:
- DATABASE_URL=postgres://db:5432/app
depends_on:
- db
db:
image: postgres:15
volumes:
- postgres_data:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=secret
volumes:
postgres_data:
Find the commit that introduced a regression automatically with git bisect run.
Configure Jest for a TypeScript project — ts-jest, module mapping, and coverage thresholds.
Diagnose a slow Postgres query and add the right index using EXPLAIN ANALYZE.
Test React components with Testing Library — render, query by role, and assert on user-visible behavior.
Fix TypeScript ES module import errors by adding .js extensions to relative imports.
Migrate a Jest test suite to Vitest — config, globals, and mock API differences.