https://github.com/haysons/deploy
deploy is an open-source project that provides ready-to-use Docker Compose deployment files for commonly used infrastructure components. It aims to simplify the setup of development and production environments by offering modular, configurable, and easy-to-understand deployment templates.
https://github.com/haysons/deploy
debugging deploy development docker docker-compose k8s
Last synced: 2 months ago
JSON representation
deploy is an open-source project that provides ready-to-use Docker Compose deployment files for commonly used infrastructure components. It aims to simplify the setup of development and production environments by offering modular, configurable, and easy-to-understand deployment templates.
- Host: GitHub
- URL: https://github.com/haysons/deploy
- Owner: haysons
- License: mit
- Created: 2025-02-14T02:37:26.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2026-01-18T04:09:49.000Z (5 months ago)
- Last Synced: 2026-01-18T15:35:21.949Z (5 months ago)
- Topics: debugging, deploy, development, docker, docker-compose, k8s
- Homepage:
- Size: 82 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Deploy
**deploy** is an open-source project that provides ready-to-use `Docker Compose` templates for commonly used
infrastructure components. It is designed to help developers **quickly spin up services in local development
environments** for testing, debugging, and experimentation.
## ✨ Features
- ⚡ **Local-first**: Preconfigured Docker Compose files designed specifically for local development
- 🧩 **Modular structure**: Each service is isolated in its own directory and can be used independently or composed
together
- ⚙️ **Clean configurations**: Minimal, readable defaults that are easy to customize
- 📁 **Organized layout**: Consistent directory naming and structure for easy navigation
- 🚀 **Quick start**: No complex setup — just Docker and Docker Compose
## 📦 Available Components
The following services are currently available (with more to come):
- `etcd`
- `mysql`
- `nebula-graph`
- `tidb`
- `clickhouse`
- `meilisearch`
- `minio`
- `mongodb`
- `nats`
- `nsq`
- `redis`
- etc.
### ▶️ Quick Start Example
```bash
cd docker/mysql
docker-compose up -d
```