This repository contains a collection of Docker Compose configurations and setup scripts for various self-hosted services.
This repository provides containerized deployments for the following applications:
- Aria2 Pro: A powerful aria2 Docker image by P3TERX for downloading files.
- DDClient: A Perl client used to update dynamic DNS entries for accounts on Dynamic DNS Network Service Providers (configured for Cloudflare).
- Hentai@Home: A Java-based peer-to-peer gallery distribution client.
- Mailserver: A full-featured mail server deployment using docker-mailserver.
- Minecraft: A Minecraft server running via the popular itzg Docker image.
- Papra: Papra docker compose deployment.
- Plane: An open-source project management tool.
- Qinglong: A cron task management platform supporting Python3, JavaScript, Shell, and Typescript.
- Samba DC: Active Directory Domain Controller based on Samba.
Each service has its own dedicated directory containing the necessary docker-compose.yml, .env templates, configuration files, and utility scripts.
.
├── all-down.sh # Script to quickly spin down all services
├── aria2-pro-docker-p3terx/ # Aria2 Pro download manager configuration
├── ddclient-linuxserver/ # Dynamic DNS updater configuration
├── hah/ # Hentai@Home client configuration
├── mailserver/ # Full mail server stack and scripts
├── minecraft-itzg/ # Minecraft server deployment
├── papra/ # Papra service
├── plane/ # Plane project management setup
├── qinglong/ # Qinglong task manager
└── samba-dc/ # Samba Domain Controller config zones
- Docker installed.
- Docker Compose (v2 recommended).
- Proper file permissions and external storage mounted if necessary (e.g.,
/mnt/storage2/,/mnt/storage3/).
- Navigate to the desired service's directory:
cd <service_directory>
- Copy the sample environment/configuration files and populate them with your secrets:
- Example: Copy
secret.env.sampletosecret.env(if applicable) and fill in your details.
- Example: Copy
- Start the service in detached mode:
docker compose up -d
To rebuild and start the Papra service using its specific environment file from the root directory, run:
docker compose -f papra/docker-compose.yml --env-file papra/secrets.env up -d --buildTo launch the orchestra for Plane with the required environment files from the root directory, run:
docker compose -f plane/docker-compose.yml --env-file plane/variables.env --env-file plane/secrets.env up -dYou can use the provided all-down.sh script in the root directory to stop all running containers defined in this repository:
./all-down.shMany of these services are configured to mount specific host paths (e.g., /mnt/storage3/aria2/downloads, /mnt/storage2/hath/data). Make sure these directories exist on your host system and have the appropriate read/write permissions for the Docker user mapping, or modify the docker-compose.yml volumes to match your environment.