一键导入
docker-watch-mode-2025
Docker Compose Watch mode for automatic hot reload during local development with sync, rebuild, and restart actions
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Docker Compose Watch mode for automatic hot reload during local development with sync, rebuild, and restart actions
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Maia theme design system for Compass. Read this skill BEFORE creating or modifying any UI component, page layout, or styling. Covers tokens, typography, color, spacing, component standards, states, motion, and accessibility. Applies whenever working on .tsx files, CSS, or anything visual.
Comprehensive Azure Data Factory knowledge base with official documentation sources, CI/CD methods, deployment patterns, and troubleshooting resources
Comprehensive Azure Data Factory validation rules, activity nesting limitations, linked service requirements, and edge-case handling guidance
Azure DevOps pipeline best practices, patterns, and industry standards
Windows and Git Bash compatibility guidance for Azure Pipelines. Covers path conversion issues, shell detection in pipeline scripts, MINGW/MSYS path handling, Windows agent configuration, cross-platform script patterns, and troubleshooting common Windows-specific pipeline failures.
Advanced bash array patterns including mapfile, readarray, associative arrays, and array manipulation (2025)
| name | docker-watch-mode-2025 |
| description | Docker Compose Watch mode for automatic hot reload during local development with sync, rebuild, and restart actions |
Docker Compose Watch enables automatic hot reload during local development by synchronizing file changes instantly without manual container restarts.
For frameworks with hot reload (React, Next.js, Node.js, Flask). Copies changed files directly into running container.
For compiled languages (Go, Rust, Java) or dependency changes. Rebuilds image and recreates container when files change.
For configuration files requiring restart. Syncs files and restarts container.
services:
frontend:
build: ./frontend
develop:
watch:
- action: sync
path: ./frontend/src
target: /app/src
ignore: [node_modules/, .git/]
- action: rebuild
path: ./frontend/package.json
Start with: docker compose up --watch