Community Apps

Browse our large and growing catalog of applications to run in your Unraid server. 

Download the Plugin  |  Become a Community Developer


Community-built

All the applications you love—built and maintained by a community member who understands what you need on Unraid. Love a particular app or plugin? Donate directly to the developer to support their work.

Created by a legend

Andrew (aka Squid) has worked tirelessly to build and enhance the experience of Community Apps for users like you. Listen to his story.

Moderated and Vetted

Moderators ensure that apps listed in the store offer a safe, compatible, and consistent experience. Learn more about our guidelines.


Memegen's Icon

A simple web service that generates a meme image given text and an image URL. -URL parameters: image: URL of the image top: text to add at the top of the image bottom: text to add at the bottom of the image -Syntax: memegen.example/?top=Top Text&bottom=Bottom Text&image=http://url.of/your/image.jpg

minetest's Icon

Minetest(http://www.minetest.net/) (server) is a near-infinite-world block sandbox game and a game engine, inspired by InfiniMiner, Minecraft, and the like.

miniflux's Icon

miniflux

Other

Miniflux is a minimalist and opinionated feed reader.

minisatip's Icon

Minisatip(https://github.com/catalinii/minisatip) is a multi-threaded satip server version 1.2 that runs under Linux and it was tested with DVB-S, DVB-S2, DVB-T, DVB-T2, DVB-C, DVB-C2, ATSC and ISDB-T cards.

Misskey's Icon

Misskey beta

Other

Misskey is an open source, decentralized social media platform that's free forever! Notice: This template is experimental, I'm not sure if everything is configured correctly. If you notice something please report it in the forum support thread. Documentation: https://misskey-hub.net/en/docs/install/docker.html Installation Before you start the container for the first time you have to do the configuration. You will need a postgresdb (I tested v15) and redis. Create a misskey folder under appdata. Create a config folder inside the misskey folder. Create a default.yml inside the config folder. Paste the content of the example.yml inside. https://raw.githubusercontent.com/misskey-dev/misskey/develop/.config/example.yml Change: url db: host, port, user, pass redis: host, port, pass You have to uncomment the redis pass (remove the #). Create a data folder inside the misskey folder. Change the owner:group of the data folder with the unraid terminal. chown -hR 991:991 /mnt/user/appdata/misskey/files/ Launch the Container.

Mopidy's Icon

Mopidy is an extensible music server written in Python. Mopidy plays music from local disk, Spotify, SoundCloud, Google Play Music, and more. You edit the playlist from any phone, tablet, or computer using a range of MPD and web clients. This is Mopidy for unraid with support for snapcast and icecast It is based on whhoesj/mopidy with additin of TuneIn and Youtube and Iris Web Interface. set up the docker set up the network to br0 with an ip set up volume mount to /mnt/user/appdata/mopidy/mopidy.conf >> /mopidy.conf set up volume mount for tmp/snapfifo if you use snapcast /mnt/user/appdata/mopidy/tmp/ >> /tmp set up volume mount for your local media generate the mopidy.conf file Doc here https://docs.mopidy.com/en/latest/config/ example here https://github.com/wernight/docker-mopidy/blob/master/README.md authentication for soundcloud and spotify https://www.mopidy.com/authenticate/ use my docker icecast or snapcast for music streaming: for audio you need a special config for snapcast you have to generate the audio output in a pipe file /tmp/snapfifo this is mounted in both docker container output = audioresample ! audio/x-raw,rate=48000,channels=2,format=S16LE ! audioconvert ! wavenc ! filesink location=/tmp/snapfifo icecast output = lamemp3enc ! shout2send async=false mount=mopidy ip=X.X.X.X port=8000 password=XXXXX

Mopidy3's Icon

Mopidy is an extensible music server written in Python. Mopidy plays music from local disk, Spotify, SoundCloud, Google Play Music, and more. You edit the playlist from any phone, tablet, or computer using a range of MPD and web clients. This is Mopidy3 for unraid with support for snapcast and icecast. set up the docker set up the network to br0 with an ip set up volume mount to /mnt/user/appdata/mopidy/ >> /config/ set up volume mount for tmp/snapfifo if you use snapcast /mnt/user/appdata/mopidy/tmp/ >> /tmp set up volume mount for your local media generate the mopidy.conf file Doc here https://docs.mopidy.com/en/latest/config/ example here https://github.com/maschhoff/docker/blob/master/mopidy/mopidy.conf authentication for soundcloud and spotify https://www.mopidy.com/authenticate/ *authenticate spotify https://developer.spotify.com/documentation/web-api/quick-start/ use my docker icecast or snapcast for music streaming: for audio you need a special config for snapcast you have to generate the audio output in a pipe file /tmp/snapfifo this is mounted in both docker container output = audioresample ! audio/x-raw,rate=48000,channels=2,format=S16LE ! audioconvert ! wavenc ! filesink location=/tmp/snapfifo icecast output = lamemp3enc ! shout2send async=false mount=mopidy ip=X.X.X.X port=8000 password=XXXXX

Mopidy3's Icon

Mopidy is an extensible music server written in Python. Mopidy plays music from local disk, Spotify, SoundCloud, Google Play Music, and more. You edit the playlist from any phone, tablet, or computer using a range of MPD and web clients. This is Mopidy3 for unraid with support for snapcast and multiple instances with automatic snapcast stream management. set up the docker set up volume mount to /mnt/user/appdata/mopidy/ >> /config/ add TCP ports for MPD, HTTP and TCP ports for each additional instance you want A configuration has been autogenerated with basic settings. The template for it can be found in the container in /home/templates. It is located in /etc/mopidy Do NOT modify the part of the audio output setting that says port=4953. This is automatically replaced for each instance generated to fill in the host and port. To configure the instance and snapcast settings, copy the template to your config folder and modify it. cp /home/templates/server.json /config/.

MySQL's Icon

|------------------------------------------------- | General Information |------------------------------------------------- Official MySQL database container. It allows to set a database and username without using the console. MySQL is the world's most popular open source database. With its proven performance, reliability and ease-of-use, MySQL has become the leading database choice for web-based applications, covering the entire range from personal projects and websites, via e-commerce and information services, all the way to high profile web properties including Facebook, Twitter, YouTube, Yahoo! and many more. For more information and related downloads for MySQL Server and other MySQL products, please visit www.mysql.com. |------------------------------------------------- | Root Password |------------------------------------------------- This container creates by default a random root password on initial execution. Open Docker > MySQL Icon > Logs > Scroll down to "GENERATED ROOT PASSWORD" to find it. |------------------------------------------------- | Creating database dumps |------------------------------------------------- docker exec some-mysql sh -c 'exec mysqldump --all-databases -uroot -p"$MYSQL_ROOT_PASSWORD"' > /mnt/user/Backups/all-databases.sql |------------------------------------------------- | Restoring data from dump files |------------------------------------------------- docker exec -i some-mysql sh -c 'exec mysql -uroot -p"$MYSQL_ROOT_PASSWORD"' < /mnt/user/Backups/all-databases.sql |------------------------------------------------- | Configuration without a cnf file |------------------------------------------------- Many configuration options can be passed as flags to mysqld. This will give you the flexibility to customize the container without needing a cnf file. For example, if you want to change the default encoding and collation for all tables to use UTF-8 (utf8mb4) just append the following to the Post Arguments: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci Here is a list of all Server System Variables -> https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html |------------------------------------------------- | Repository tags |------------------------------------------------- If you want to install a specific version of mysql, you can simply customize the repository. For example: mysql (is the same like mysql:latest) mysql:5.7 mysql:8.2.0

NginxProxyManager-CrowdSec's Icon

NginxProxyManager-CrowdSec

Network ServicesManagement, Web, Other, Other, Tools / UtilitiesUtilities

This is a drop in replacement for jlesage/nginx-proxy-manager This fork includes the OpenResty Crowdsec Bouncer Please see the crowdsec_support branch for the changes as Nginx Proxy Manager (NPM) allows adding proxy hosts through a password-protected multi-user WebUI. Add free Let's Encrypt SSL certificates to secure your web services. They are renewed by NPM automatically. Default login: [email protected] Password: changeme

nightscout-librelink-up-uploader's Icon

nightscout-librelink-up-uploader

Other, Tools / UtilitiesUtilities

From: https://github.com/timoschlueter/nightscout-librelink-up "Script written in TypeScript that uploads CGM readings from LibreLink Up to Nightscout. The upload should work with at least Freestyle Libre 2 (FGM) and Libre 3 CGM sensors." This container will upload LibreLink Up (FreeStyle Libre 2/3) CGM data to your NightScout instance. Prerequesites: - Working NightScout instance - NightScout subject and access token for this uploader (https://github.com/timoschlueter/nightscout-librelink-up/issues/64#issuecomment-1252018083) - LibreLink Up follower account already setup. I'd recommend you create a new follower just for this uploader, you risk locking up your account temporarily while you troubleshoot any problems with the uploader's configuration. Ask me how I know. Notes: - The access token must be hashed with SHA1 (you can use https://codebeautify.org/sha1-hash-generator).

NsfminerOC's Icon

NsfminerOC

Other

Nsfminer with Nvidia drivers and OC capability.

nut's Icon

nut

Other

nut server docker image for serving switch nsp and xci to tinfoil on local network. Default username and password is "guest" "guest"

Odoo15's Icon

Odoo15

Other

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc. Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Odoo17's Icon

Odoo17 beta

Other

Odoo is an open-source suite of integrated business applications that includes various modules for different business functions such as accounting, project management, inventory management, human resources, and more. It provides a comprehensive and modular solution for businesses to manage and streamline their processes. Odoo is the world's easiest all-in-one management software. It includes hundreds of business apps: CRM | e-Commerce | Accounting | Inventory | PoS | Project management | MRP :: IMPORTANT NOTES :: See the README.md file at https://github.com/Eurotimmy/unraid-templates/blob/main/Odoo17/README.md

ollama's Icon

ollama

Other

The easiest way to get up and running with large language models locally.

OpenEats's Icon

OpenEats is a recipe management site that allows users to create, share, and store their personal collection of recipes. Requires MariaDB container (I recommend LinuxServer's container) FIRST RUN: Please wait while the container creats all the necessary tables in the SQL database. This can take 5-10 minutes or so and the container will have NO log output when it does this. Please be patient, if you interrupt this by stopping the container it will leave you with a broken database! Please use support link for more information about this container.

OpenFanController's Icon

OpenFanController

Drivers, Other, Tools / UtilitiesUtilities

OpenFAN is open-source, open-hardware 12V PWM fan controller for the hobbyists and hackers! This fan controller allows you to control 10 PWM fans over USB or remotely over network. OpenFAN gives you two ways to control each fan: Traditional (PWM): Set target PWM and the fan will spin at whatever RPM it is designed to spin with that PWM. (ie. Assuming 2000RPM fan, if we set the PWM to 50%, the fan should spin at 1000RPM which is half of full speed) Advanced (RPM): Set target RPM and OpenFAN will use it's built in PID algorithm to keep the fan always spinning at that RPM. OpenFAN also has an open-source API that allows you to programmatically control your fans, set custom profiles and more. OpenFAN was designed by PC enthusiast for PC enthusiasts. Key features: - Works on Windows, Linux and Mac - 10x PWM fans (Supports 12V, 4-pin fans) - Individually control each fan - SATA power (cable not provided) - Micro-USB communication (motherboard cable included) - Control fans by setting target PWM or target RPM - Optional I2C/1-Wire (header not populated) - Open source API for communication and control - Open source and open-hardware design - Control fans over USB or remotely over network* - FanControl integration through plugin To control fans remotely over network, the OpenFAN board needs to be connected to the PC via USB and running the OpenFAN software. The software allows you to access the fan controller remotely over network.

OwntracksRecorder's Icon

The OwnTracks Recorder is a lightweight program for storing and accessing location data published via MQTT (or HTTP) by the OwnTracks apps. OTR_PORT is the MQTT port number to connect to. It is set to 1883 by default. Set it to 0 to disable MQTT and run on HTTP only. For this docker container it is suggested to leave both OTR_HTTPHOST and OTR_HOST set to the default "localhost", otherwiser the continer won't be able to start. This container is set to be up and running in HTTP mode (MQTT disabled by default), see https://github.com/owntracks/recorder#configuration-file for the list of optional additional parameters (including those to configure MQTT). Recorder documentation: https://github.com/owntracks/recorder Recorder Docker documentation: https://github.com/owntracks/docker-recorder/

phvalheim-server's Icon

phvalheim-server

Game Servers, Other

An over-engineered approach to Valheim server+client world+mods management