{"id":26500054,"url":"https://github.com/ithaquakr/stack-compose","last_synced_at":"2026-04-13T10:31:58.258Z","repository":{"id":234879045,"uuid":"789677963","full_name":"ithaquaKr/stack-compose","owner":"ithaquaKr","description":"A curated collection of production-ready Docker Compose templates for popular application stacks.","archived":false,"fork":false,"pushed_at":"2025-04-28T12:09:31.000Z","size":1551,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-28T13:32:46.281Z","etag":null,"topics":["containerization","docker","docker-compose"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ithaquaKr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-04-21T08:41:35.000Z","updated_at":"2025-04-28T12:09:35.000Z","dependencies_parsed_at":"2025-02-07T10:26:10.026Z","dependency_job_id":"e144ea53-4ff1-4646-a829-b4684732ab26","html_url":"https://github.com/ithaquaKr/stack-compose","commit_stats":null,"previous_names":["ithaquakr/stack-compose"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ithaquaKr/stack-compose","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ithaquaKr%2Fstack-compose","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ithaquaKr%2Fstack-compose/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ithaquaKr%2Fstack-compose/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ithaquaKr%2Fstack-compose/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ithaquaKr","download_url":"https://codeload.github.com/ithaquaKr/stack-compose/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ithaquaKr%2Fstack-compose/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31748993,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T09:16:15.125Z","status":"ssl_error","status_checked_at":"2026-04-13T09:16:05.023Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["containerization","docker","docker-compose"],"created_at":"2025-03-20T15:28:34.977Z","updated_at":"2026-04-13T10:31:58.235Z","avatar_url":"https://github.com/ithaquaKr.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003e [!WARNING]\n\u003e DEPRECATED: Move all stuff to new home: \u003chttps://github.com/ithaquaKr/homelab/tree/master\u003e\n\n# Stack-Compose 🐳\n\nA curated collection of production-ready Docker Compose templates for popular\napplication stacks. Deploy development environments in seconds with\npre-configured services like PostgreSQL, Redis, MySQL, and more.\n\n[![License](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)\n[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](CONTRIBUTING.md)\n\n## Philosophy 🌱\n\nThis project is built on three core principles:\n\n1. **Simplicity First**\n   Minimal configurations with sane defaults. No unnecessary abstractions or\n   complex tooling.\n\n2. **Zero Black Magic**\n   Explicit configurations over hidden automation. You always know exactly\n   what's running.\n\n3. **Modular by Design**\n   Mix-and-match components like LEGO blocks. Each service is self-contained\n   yet interoperable.\n\nWe believe in **documentation-driven development** - every template comes with\ndetailed setup guides and operational notes.\n\n## Features ✨\n\n- 🚀 Production-inspired configurations\n- 🔒 Secure defaults (proper user permissions, isolated networks)\n- 📁 Environment variable driven setups\n- 🔄 Easy version switching\n- 📈 Optional monitoring stacks\n- 🔍 Healthchecks and proper service dependencies\n\n## Getting Started\n\n### Prerequisites\n\n- Docker Engine ≥ 20.10\n- Docker Compose ≥ 2.17\n\n### Basic Usage\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/ithaquaKr/stack-compose.git\n   cd stack-compose\n   ```\n\n2. Navigate to desired component:\n\n   ```bash\n   cd composes/postgres\n   ```\n\n3. Start the stack:\n\n   ```bash\n   docker compose up -d\n   ```\n\n**Example - PostgreSQL + pgAdmin:**\n\n```bash\ndocker compose -f docker-compose.yml -f docker-compose.pgadmin.yml up -d\n```\n\n**Example - Redis with Persistent Storage:**\n\n```bash\ndocker compose -f docker-compose.yml -f docker-compose.persistence.yml up -d\n```\n\n## Repository Structure 📂\n\n```\nstack-compose/\n├── composes/\n│   ├── postgres/\n│   │   ├── docker-compose.yml\n│   │   ├── docker-compose.pgadmin.yml  # Optional extensions\n│   │   └── README.md                   # Component-specific docs\n│   ├── redis/\n│   ├── mysql/\n│   └── .../\n├── .env.example            # Common environment variables\n└── README.md               # This global documentation\n```\n\nEach component includes:\n\n- Base `docker-compose.yml` file\n- Optional extension files for additional tooling\n- Detailed README with:\n  - Service configuration details\n  - Connection strings\n  - Security considerations\n  - Backup/restore procedures\n  - Common troubleshooting steps\n\n## Customization 🛠️\n\n1. **Environment Variables**\n   Copy `.env.example` to `.env` and modify values:\n\n   ```bash\n   cp .env.example .env\n   ```\n\n2. **Docker Compose Overrides**\n   Create `docker-compose.override.yml` for local customizations that won't affect upstream:\n\n   ```yaml\n   version: \"3.8\"\n   services:\n     postgres:\n       ports:\n         - \"5432:5432\"\n       volumes:\n         - ./local-data:/var/lib/postgresql/data\n   ```\n\n## Contributing 🤝\n\nWe welcome contributions through:\n\n- 🐛 Bug reports\n- 💡 Feature requests\n- 📚 Documentation improvements\n- 🧪 New stack components\n\nPlease read our [Contribution Guidelines](CONTRIBUTING.md) before submitting changes.\n\n## License 📄\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE)\nfile for details.\n\n## Support ❤️\n\nFor help or questions:\n\n- [Open an Issue](https://github.com/yourusername/stack-compose/issues)\n- Join our [Community Discussion Forum](#) (link your preferred platform)\n\n## Acknowledgements\n\n- Inspired by real-world deployment patterns\n- Security guidance from [CIS Docker Benchmarks](https://cisecurity.org/benchmark/docker)\n- Documentation templates from [Awesome Compose](https://github.com/docker/awesome-compose)\n\n---\n\n**Happy Containerizing!** 🐳 + ❤️ = 😊\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fithaquakr%2Fstack-compose","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fithaquakr%2Fstack-compose","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fithaquakr%2Fstack-compose/lists"}