Welcome to the central repository for all my personally maintained Unraid Docker Templates.
These templates can be conveniently loaded and automatically updated via the Unraid GUI – hosted via GitHub Pages.
- Description: Self-hosted print archive and management system for Bambu Lab 3D printers
- Template XML:
my-Bambuddy.xml - Docker Image:
ghcr.io/maziggy/bambuddy - WebUI Port: 8000
- Original Project: maziggy/bambuddy
Quick Install:
https://fgrfn.github.io/unraid-templates/templates/Bambuddy/my-Bambuddy.xml
- Description: Modern web-based scan server for network and USB scanners
- Template XML:
my-Scan2Target.xml - Docker Image:
ghcr.io/fgrfn/scan2target - WebUI Port: 8000
- Project: fgrfn/Scan2Target
Quick Install:
https://fgrfn.github.io/unraid-templates/templates/Scan2Target/my-Scan2Target.xml
- Description: Automated speedtest runner for testing peering bottlenecks from Deutsche Telekom connections
- Template XML:
my-Netzbremse.xml - Docker Image:
ghcr.io/akvorrat/netzbremse-measurement - WebUI Port: N/A (headless)
- Original Project: AKVorrat/netzbremse-measurement
Quick Install:
https://fgrfn.github.io/unraid-templates/templates/Netzbremse/my-Netzbremse.xml
- Description: Automatic early warning system for Reddit stock hypes - crawls r/wallstreetbets for ticker mentions and sends Discord alerts
- Template XML:
my-RedditWSBCrawler.xml - Docker Image:
ghcr.io/fgrfn/reddit-wsb-crawler - WebUI Port: N/A (headless)
- Project: fgrfn/reddit-wsb-crawler
Quick Install:
https://fgrfn.github.io/unraid-templates/templates/RedditWSBCrawler/my-RedditWSBCrawler.xml
- Description: Real-time Discord monitoring for BitAxe & NerdAxe Bitcoin miners - tracks hashrate, temperature, power consumption & best difficulty with automatic alerts
- Template XML:
my-BitaxeDiscordBot.xml - Docker Image:
ghcr.io/fgrfn/bitaxe-discord-status-bot - WebUI Port: N/A (Discord bot)
- Project: fgrfn/bitaxe-discord-status-bot
Quick Install:
https://fgrfn.github.io/unraid-templates/templates/BitaxeDiscordBot/my-BitaxeDiscordBot.xml
A template file is available for quickly creating new templates:
- Template:
blank-template.xml - Contains all important fields with examples for ports, volumes, and environment variables
- Perfect for converting Docker-Compose files to Unraid templates
Central landing page with link index:
➡️ https://fgrfn.github.io/unraid-templates/
- Open Unraid: Docker → Add Container
- Select at the top: Template repositories
- Copy & paste the template URL from the "Quick Install" section above
- Click "Add", then "Apply"
Add this repository URL to automatically get all templates:
https://github.com/fgrfn/unraid-templates
- Open Unraid: Docker → Add Container
- Click Template repositories (or settings icon)
- Add the repository URL above
- Save and browse all available templates
Option A: Download via Browser
- Download the desired
.xmlfile from this repository - Place it in
/boot/config/plugins/dockerMan/templates-user/ - Refresh the Docker page in Unraid
- The template will appear in your template list
Option B: Download via wget (SSH/Terminal)
Open Unraid terminal or SSH and run:
# For Bambuddy template:
wget -P /boot/config/plugins/dockerMan/templates-user/ https://raw.githubusercontent.com/fgrfn/unraid-templates/main/templates/Bambuddy/my-Bambuddy.xml
# For Scan2Target template:
wget -P /boot/config/plugins/dockerMan/templates-user/ https://raw.githubusercontent.com/fgrfn/unraid-templates/main/templates/Scan2Target/my-Scan2Target.xml
# For Netzbremse template:
wget -P /boot/config/plugins/dockerMan/templates-user/ https://raw.githubusercontent.com/fgrfn/unraid-templates/main/templates/Netzbremse/my-Netzbremse.xml
# For Reddit WSB Crawler template:
wget -P /boot/config/plugins/dockerMan/templates-user/ https://raw.githubusercontent.com/fgrfn/unraid-templates/main/templates/RedditWSBCrawler/my-RedditWSBCrawler.xml
# For BitAxe Discord Status Bot template:
wget -P /boot/config/plugins/dockerMan/templates-user/ https://raw.githubusercontent.com/fgrfn/unraid-templates/main/templates/BitaxeDiscordBot/my-BitaxeDiscordBot.xml
# For blank template:
wget -P /boot/config/plugins/dockerMan/templates-user/ https://raw.githubusercontent.com/fgrfn/unraid-templates/main/templates/blank-template.xmlThen refresh the Docker page in Unraid to see the new template.
Templates in this repository are automatically updated daily through a GitHub Actions workflow that:
- 📡 Checks upstream project repositories for changes (docker-compose.yml)
- 🔍 Detects new environment variables, ports, and volumes
- ✨ Automatically adds missing configuration to templates
- ✅ Validates and commits changes back to the repository
Monitored Projects:
- maziggy/bambuddy
- fgrfn/Scan2Target
- AKVorrat/netzbremse-measurement
- fgrfn/reddit-wsb-crawler
- fgrfn/bitaxe-discord-status-bot
The workflow runs daily at 2 AM UTC and can also be triggered manually via workflow_dispatch.
Script Usage:
# Check for template updates manually
python scripts/update-templates.pyWant to add or improve a template?
Pull requests are welcome – or contact me directly!
Use blank-template.xml as a starting point for new templates.
When creating or updating templates, please ensure:
-
Always include an icon - Icons display in both Unraid UI and on the GitHub Pages website
-
Option 1 (Recommended): Local logo file - Place a
logo.png,logo.svg, or other image file in the template folder- Example:
templates/MyApp/logo.png - The system will automatically detect and use it
- Supported formats:
.png,.svg,.jpg,.jpeg,.webp,.ico
- Example:
-
Option 2: Icon URL in XML - Add an
<Icon>tag in your template XML:- Project favicon:
https://raw.githubusercontent.com/user/repo/main/static/favicon.ico - Project logo (use
?raw=true):https://github.com/user/repo/blob/main/logo.png?raw=true - Organization/user avatar:
https://avatars.githubusercontent.com/u/12345678
- Project favicon:
-
Fallback: If no logo file or Icon URL is found, a generated avatar with the app's initials will be used
-
-
Test the icon URL - If using Option 2, verify the URL is accessible and returns an image before submitting
-
Commit and push your changes - The GitHub Actions workflow will automatically:
- Validate your templates
- Generate the updated GitHub Pages site
- Deploy changes to https://fgrfn.github.io/unraid-templates/
No manual script execution needed!
All templates are based on freely accessible projects.
The templates themselves are licensed under the MIT License.