docs(docker): integrate Docker Compose deployment guidance#109
Open
kirisame-wang wants to merge 1 commit intoaddyosmani:mainfrom
Open
docs(docker): integrate Docker Compose deployment guidance#109kirisame-wang wants to merge 1 commit intoaddyosmani:mainfrom
kirisame-wang wants to merge 1 commit intoaddyosmani:mainfrom
Conversation
Add a Docker Compose deployment checklist to references/ and surface container-specific steps in the ci-cd-and-automation and shipping-and-launch skills so agents have actionable guidance for containerized deploys without a separate top-level skill. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
references/docker-compose-checklist.md— a standalone checklist covering the most common Docker Compose deployment pitfalls: naming stability, image tag pinning, secret injection, named volumes, network isolation, health checks, and rollback procedure.skills/ci-cd-and-automationwith a "Containerized Services" section covering CI-side concerns: image tagging strategy (git SHA, neverlatest), multi-stage Dockerfiles, and a GitHub Actions build-and-push workflow example.skills/shipping-and-launchwith a Docker Compose–specific pre-deploy checklist block that cross-references the new checklist file.Motivation
The project had no guidance for containerized deployments. Agents working on Docker Compose projects would fall through to generic deployment advice and miss concrete failure modes (container name drift,
latesttag rollback failures, secrets baked into image layers). This change fills that gap without adding a new top-level skill — Docker concerns are distributed into the phase that owns them (CI pipeline → ci-cd-and-automation, deploy checklist → shipping-and-launch).Test Plan
references/docker-compose-checklist.mdfollows the reference file convention (inreferences/, not inside a skill directory)references/docker-compose-checklist.mdby correct relative path