What problem does it solve? Setting up reliable containerized development environments involves many decisions around Compose configuration, networking, volumes, and security, and mistakes lead to broken builds, data loss, or insecure containers. ## Core Features & Use Cases - Compose Stack Templates: Ready-to-adapt multi-service setups with healthchecks, dependency ordering, and override files for dev versus production. - Networking and Volume Guidance: Patterns for service discovery, network segmentation, bind mounts, named volumes, and protecting container directories like node_modules. - Security Hardening: Dockerfile and Compose practices covering non-root users, read-only filesystems, capability dropping, and secret management. - Use Case: When starting a new web app with Postgres and Redis, apply the standard Compose stack pattern with healthchecks and a multi-stage Dockerfile to get a working local environment quickly. ## Quick Start Ask the AI to set up a Docker Compose development environment for a Node.js app with Postgres and Redis using these patterns.