diff --git a/README.md b/README.md index 81db6a4..a355286 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # CHNS Docker Compose Library -A public collection of Docker Compose files I use across my homelab and self-hosted infrastructure. Rather than managing configs directly on each server, I keep everything version-controlled here and pull them into [Portainer](https://www.portainer.io/) for deployment. +A public collection of Docker Compose files I use across my homelab and self-hosted infrastructure. Rather than managing configs directly on each server, I keep everything version-controlled here and pull them into [Portainer](https://chns.tech/posts/2026/04-04-portainer-ce-docker-container-management-platform/) or [Dockhand](https://chns.tech/posts/2026/05-01-dockhand-docker-management-dashboard/) for deployment. Feel free to use any of these as a starting point for your own setup. Each application folder also has a companion article linked below where I walk through the full configuration and deployment process. @@ -37,9 +37,16 @@ Each application lives in its own folder with a `docker-compose.yaml` file. You 2. Choose **Repository** and point it at this repo, or use **Web editor** and paste the compose file contents directly 3. Set any required environment variables and deploy +**Dockhand Stack** +1. In Dockhand, go to **Stacks → Add Stack** +2. Choose **Repository** and point it at this repo, or use **Web editor** and paste the compose file contents directly +3. Set any required environment variables and deploy + **Docker Compose CLI** ```bash cd +cp .env.example .env +# Edit .env and fill in your values docker compose up -d ``` @@ -47,27 +54,6 @@ docker compose up -d --- -## Repository Structure - -``` -Docker-Compose/ -├── Doku/ -│ └── docker-compose.yaml -├── Draw.io/ -│ └── docker-compose.yaml -├── Gitea/ -│ └── docker-compose.yaml -├── IT-Tools/ -│ └── docker-compose.yaml -├── Seerr/ -│ ├── docker-compose.yaml -│ └── docker-compose-nfs.yaml -└── Watchtower/ - └── docker-compose.yaml -``` - ---- - ## License [MIT](./LICENSE)