An open API service indexing awesome lists of open source software.

https://github.com/freemankevin/DockerCluster

DockyCluster 是一个开箱即用的多服务容器化集群部署项目,旨在为开发者和运维人员提供快速搭建和管理多种服务的能力。项目支持 MinIO、Nginx、Redis、Nacos、PostgreSQL 等常用服务,包含示例配置和高可用方案。
https://github.com/freemankevin/DockerCluster

cluster docker docker-compose

Last synced: 10 months ago
JSON representation

DockyCluster 是一个开箱即用的多服务容器化集群部署项目,旨在为开发者和运维人员提供快速搭建和管理多种服务的能力。项目支持 MinIO、Nginx、Redis、Nacos、PostgreSQL 等常用服务,包含示例配置和高可用方案。

Awesome Lists containing this project

README

          

# DockerCluster

A production-ready container cluster deployment solution with built-in support for MinIO, Nginx, Redis, Nacos, PostgreSQL, and more.

## Structure

```
DockyCluster/
├── minio-cluster/ # MinIO deployment
├── nginx-cluster/ # Nginx deployment
├── redis-cluster/ # Redis deployment
├── nacos-cluster/ # Nacos deployment
├── postgresql-cluster/ # PostgreSQL deployment
├── lb1 # Load balancer 1
├── lb2 # Load balancer 2
├── .env.example # Environment template
└── README.md # Documentation
```

## Quick Start

```bash
cd XXX-cluster/
cp .env.example .env
docker-compose up -d
```