ワンクリックで
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 職業分類に基づく
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.
| 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: