Live Demo π β’ Install π» β’ Contribute π€ β’ Supported Tools π¦ β’ Screenshots πΈ
Note
π Community-Driven Project: DCM started as a simple tool but aims to become the go-to resource for Docker Compose configurations, powered by the community. We believe everyone has their favorite self-hosted tools, and we'd love for you to share yours! Whether you're using a popular application or a hidden gem, your contribution helps others discover and easily deploy great software.
DCM (Docker Compose Maker) is a simple yet powerful tool that helps you create docker-compose.yaml
files for your self-hosted applications. Select from a curated list of popular containers and generate a ready-to-use configuration file with just a few clicks.
No more copy-pasting from documentation or trying to remember the correct configuration options - this tool makes it easy to set up your Docker environment.
Tip
Most containers come pre-configured with best practices and sensible defaults, saving you hours of documentation reading and configuration tweaking.
π‘ Share Your Stack: Using a great tool that's not listed here? We'd love to include it! Check out our contribution guide to help others discover and use your favorite containers.
Using Docker Compose Maker is simple and intuitive:
- Select containers - Browse the curated list of self-hosted applications and click to select the ones you want to include
- Use templates - Choose from predefined templates in the Template Gallery for common stacks like media servers
- Configure settings - Adjust environment variables, paths, and other common settings
- Generate your configuration - Click "Copy Compose" to view and customize your docker-compose.yaml
- Deploy your stack - Use one of the following methods to deploy your containers:
Important
All containers are configured to use environment variables like ${PUID}
, ${PGID}
, and ${TZ}
. Make sure to set these in your deployment to avoid permission issues.
Once you have your docker-compose configuration, you have several ways to deploy it:
Simply copy the generated docker-compose.yaml and .env content, save them locally, and run docker-compose up -d
to start your containers.
Download the generated docker-compose.yaml and .env files directly from the interface, then use them with your preferred Docker management tool.
Note
The downloaded .env file contains all the environment variables referenced in your docker-compose.yaml. Keep both files in the same directory when deploying.
If you're already using Portainer to manage your Docker environment, you can easily deploy your configuration as a stack:
- Navigate to your Portainer dashboard and select Stacks from the sidebar
- Click Add stack
- Give your stack a name
- Select Web editor and paste the generated docker-compose content
- (Optional) Add the environment variables from the .env file
- Click Deploy the stack
Caution
When using Portainer Stacks, you'll need to manually add the environment variables or upload the .env file, as Portainer doesn't automatically read the .env file in all configurations.
Using Portainer provides a user-friendly web interface to manage, update, and monitor your containers without needing command-line tools.
The generated compose file works with any tool that supports docker-compose syntax, such as Docker Desktop, Rancher, Yacht, or command-line tools.
If you want to try DCM for yourself, there are several ways to get started:
Visit compose.ajnart.dev to use the tool immediately without installation.
Note
The online version includes analytics for usage tracking, while the self-hosted version does not.
Run with a single command:
docker run -p 7576:7576 --name dcm --rm ghcr.io/ajnart/dcm
Then visit http://localhost:7576
in your browser.
The Docker image is available for multiple platforms:
- linux/amd64
- linux/arm64
- linux/arm/v7
Create a docker-compose.yaml
file:
services:
dcm:
image: ghcr.io/ajnart/dcm
container_name: dcm
ports:
- "7576:7576"
restart: unless-stopped
Then run:
docker-compose up -d
- Clone the repository:
git clone https://github.com/ajnart/dcm.git
cd dcm
- Install dependencies:
First install Bun if you haven't already, then run:
bun install
Warning
Using npm instead of Bun may result in longer installation times and potential compatibility issues. We strongly recommend using Bun for development.
- Build and start:
bun run build
bun start
DCM includes configuration for many popular self-hosted applications, including:
πΊ Media Management:
- Media Servers: Jellyfin, Plex, Emby
- Media Automation: Sonarr, Radarr, Lidarr, Readarr, Prowlarr, Bazarr, Whisparr
- Media Requests: Jellyseerr, Overseerr, Doplarr, Requestrr
π Dashboards & Management:
π₯ Download Management:
- Torrent: qBittorrent
- Usenet: NZBGet, NZBHydra 2
- Indexers: Jackett, Prowlarr
ποΈ Databases:
- SQL: MariaDB, MySQL, PostgreSQL
- NoSQL: MongoDB, Redis
π Monitoring & Automation:
- Monitoring: Grafana, Prometheus
- Updates: Watchtower
- Home Automation: Home Assistant
π Security: Vaultwarden
πΎ Storage & Files: Nextcloud
Each tool includes a detailed description, GitHub star count, and pre-configured docker-compose settings.
DCM uses Bun for testing. To run the tests:
# Run all tests
bun test
# Run Docker Compose validation tests
bun test:compose
# Run container schema validation tests
bun test:containers
DCM includes a Template Gallery that allows you to quickly add predefined stacks of containers based on common use cases:
- Media Server Stacks: Complete media server setups with Jellyfin/Plex and related tools
- Development Environments: Web development stacks with databases and web servers
- Monitoring Solutions: Grafana, Prometheus, and other monitoring tools
- Database Clusters: Various database engines with management tools
- Security Tools: Password managers and security-related containers
- And more!: Smart home hubs, personal cloud solutions, and other useful templates
To use the Template Gallery:
- Click the "Template Gallery" button at the top of the main page
- Browse or search for templates that match your needs
- Click "Use Template" to add all containers from that template to your selection
- Return to the main page to customize your selected containers
You can combine multiple templates to create your perfect self-hosted environment!
We welcome contributions to DCM! Whether you want to add new container definitions, improve documentation, or fix bugs, your help is appreciated.
Please check our CONTRIBUTING.md guide for detailed instructions on:
- How to add new container definitions
- Code style guidelines
- Testing requirements
- Pull request process
The easiest way to contribute is by adding new container definitions to our growing collection!
This project is licensed under the MIT License - see the LICENSE file for details.
If you find this tool useful, consider supporting the project by:
- β Starring the repository on GitHub
- π¦ Sharing it on social media
- β Buying me a coffee
- GitHub: @ajnart
Made with β€οΈ by ajnart