ワンクリックで
docker-env
Standardize Docker/Dagster environment debugging and recovery workflows.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Standardize Docker/Dagster environment debugging and recovery workflows.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Data-first visualization design combining Tufte principles with Jobs/Ive simplicity for React + Nivo dashboards.
Automated agent workflow for reviewing and updating project agent context files when code changes are made.
Create a custom Dagster Component with demo mode support, realistic asset structure, and optional custom scaffolder using the dg CLI. Use this skill if there is no Component included in an existing integration or if Dagster does not have the integration.
Expert guidance for Dagster data orchestration including assets, resources, schedules, sensors, partitions, testing, and ETL patterns. Use when building or extending Dagster projects, writing assets, configuring automation, or integrating with dbt/dlt/Sling.
Expert guidance for working with Dagster and the dg CLI. ALWAYS use before doing any task that requires knowledge specific to Dagster, or that references assets, materialization, components, data tools or data pipelines. Common tasks may include creating a new project, adding new definitions, understanding the current project structure, answering general questions about the codebase (finding asset, schedule, sensor, component or job definitions), debugging issues, or providing deep information about a specific Dagster concept.
Initialize a dagster project using the create-dagster cli. Create a dagster project, uv virtual environment, and everything needed for a user to run dg dev or dg check defs successfully. (project)
| name | docker-env |
| description | Standardize Docker/Dagster environment debugging and recovery workflows. |
| version | 1.0.0 |
| tags | ["docker","dagster","debugging"] |
Use this skill for container health checks, logs, and safe restarts. Prefer the least destructive command that answers the question.
Status
docker compose ps -aLogs
docker compose logs <service> --tail=200docker compose logs -f <service> (stream)Restart (service only)
docker compose restart <service>Rebuild (non-destructive)
docker compose up --build -dCleanup
docker system prune -fFull reset
docker compose down -vdocker compose up --build -ddocker-compose.ymldocker-compose.local.yml
docker compose -f docker-compose.yml -f docker-compose.local.yml ... if needed