ワンクリックで
docker
Run containers in production avoiding common crashes, security holes, and resource traps.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Run containers in production avoiding common crashes, security holes, and resource traps.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Operates Breeze x402 payment-gated endpoints for balance checks, deposits, and withdrawals on Solana. Use when the user asks to manage Breeze positions or execute paid x402 API calls.
Crossmint provides custodial wallet-as-a-service, NFT minting, virtual debit cards, crypto-to-fiat payouts, and **transaction signing** on Solana. Perfect for AI agents managing DeFi operations without needing a local keypair.
Complete DFlow trading protocol SDK - the single source of truth for integrating DFlow on Solana. Covers spot trading, prediction markets, Swap API, Metadata API, WebSocket streaming, and all DFlow tools.
Complete Drift Protocol SDK for building perpetual futures, spot trading, and DeFi applications on Solana. Use when building trading bots, integrating Drift markets, managing positions, or working with vaults.
Solana vault management via GLAM Protocol. Triggers: glam, glam-cli, glam-sdk, vault create/manage, tokenized vault, share class, DeFi vault, treasury, asset management, access control, delegate permissions, Jupiter swap, Drift perpetuals/spot/vaults, Kamino lending/borrow/vaults/farms, staking (Marinade/native/SPL/Sanctum/LST), cross-chain USDC (CCTP), timelock, subscription/redemption, NAV pricing, token transfer. Supports CLI and TypeScript SDK.
Comprehensive guide for Helius - Solana's leading RPC and API infrastructure provider. Covers RPC nodes, DAS (Digital Asset Standard) API, Enhanced Transactions, Priority Fees, Webhooks, ZK Compression, LaserStream gRPC, and the Helius SDK for building high-performance Solana applications
| name | Docker |
| description | Run containers in production avoiding common crashes, security holes, and resource traps. |
| metadata | {"clawdbot":{"emoji":"🐳","requires":{"bins":["docker"]},"os":["linux","darwin","win32"]}} |
apt-get update and apt-get install in separate RUN layers = stale packages weeks later — always combine thempython:latest today is different than python:latest tomorrow — pin versions like python:3.11.5-slim--from=builder copies from wrong stage silently-m 512m on every containerUSER nonroot or security scans fail and platforms rejectlocalhost inside container is container's localhost, not host — bind to 0.0.0.00.0.0.0 by default — use 127.0.0.1:5432:5432 for local-onlydepends_on waits for container start, not service ready — use condition: service_healthy with healthcheck.env file in wrong directory silently ignored — must be next to docker-compose.yml:z suffixdocker system prune doesn't remove named volumes — add -volumes flag explicitlydocker rm deletes datadocker image prune regularlydocker builder prune reclaims spacedocker container prune or --rm on rundocker network prune--privileged disables all security — almost never needed, find specific capability insteaddocker inspect --format='{{.State.ExitCode}}'docker logs <container>docker cp files out or use debug sidecardocker cp deadcontainer:/path ./local