원클릭으로
docker
Docker and Compose: image builds, container lifecycle, networking, volume management, and safety conventions for this repo.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Docker and Compose: image builds, container lifecycle, networking, volume management, and safety conventions for this repo.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Operate Harkonnen through the repo-local MCP server and CLI. TRIGGER: user asks about run history, PackChat threads or messages, checkpoints, board snapshots, reasoning trails, benchmark suites or reports, wants to diagnose a failure, wants a run report, or wants to start, queue, or watch a run. Preferred over raw shell commands for Harkonnen interactions.
Databricks on Azure: cluster lifecycle, Delta Lake operations, MLflow tracking, and Unity Catalog patterns for this repo.
Azure cloud resources: ARM/Bicep templates, Azure CLI patterns, RBAC, service principals, and subscription safety for this repo.
SQL database patterns: schema migrations, query safety, index design, and transaction hygiene for this repo.
WinCC OA SCADA: CTRL scripts, panels, datapoint operations, manager lifecycle, and live-system safety for this repo.
Linux environment conventions: shell idioms, systemd, package management, file permissions, and path conventions for this repo.
| name | docker |
| description | Docker and Compose: image builds, container lifecycle, networking, volume management, and safety conventions for this repo. |
| user-invocable | false |
| allowed-tools | ["Bash(docker *)","Bash(docker-compose *)","Bash(podman *)"] |
This repo uses Docker. Apply these patterns.
FROM rust:1.78-slim-bookworm, not FROM rust:latest.COPY specific files/directories — never COPY . . in the final stage.USER nonroot after installing dependencies.RUN commands with && to reduce layers; clean package caches in the same layer.--no-cache in CI to catch cache-corruption bugs.sha and semantic version: never push latest as the only tag to production.docker scout cves image:tag.docker logs <container> --tail 50 --follow for live debugging.docker exec -it <container> sh for interactive inspection — avoid in production.--memory, --cpus.depends_on with condition: service_healthy when ordering matters..env or environment injection — never commit secrets to compose.yml.0.0.0.0 in production without a firewall rule in place.