Configure database containers (PostgreSQL, MySQL, MongoDB, Redis) with security, persistence, and health checks
/plugin marketplace add mwguerra/claude-code-plugins/plugin install taskmanager@mwguerra-marketplace# Set Up Database Container You are configuring a database container. Follow these steps: ## 1. Determine Database Type Identify the required database: - PostgreSQL (relational, full-featured) - MySQL/MariaDB (relational, widely used) - MongoDB (document database) - Redis (cache/session store) ## 2. Consult Documentation Read the documentation: - `skills/docker-docs/references/05-databases.md` for complete configurations ## 3. Apply Best Practices ### Security - Never expose database ports to the internet (bind to 127.0.0.1) - Use internal networks - Strong passwords via environment ...