What problem does it solve? Manual production restarts often silently roll back to stale images because docker compose defaults to the latest tag, which lags behind the main branch. This Skill provides the exact commands and verification steps to restart containers with the correct commit-sha image tag and confirm the rollout actually happened. ## Core Features & Use Cases - Sha-pinned restart commands: Ready-made docker compose commands that set IMAGE_TAG to the commit sha so production never falls back to a stale latest image. - Log-based verification: Explains why HTTP response codes cannot confirm a rollout and shows which log lines (e.g., the startup digest with integrations) prove the new image is running. - Rollback procedure: Describes rollback as the same sha-pinned startup using a previous tag, including how to list the last three retained image tags in the registry. - Use Case: After editing .env.prod, you need to bring the container up again on the server. Use this Skill to pull and start the exact image by sha, then verify the expected log lines appear. ## Quick Start Ask the assistant to restart production manually with the correct image sha and verify the rollout from the container logs.