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.


ProjectZomboid's Icon

This Docker will download and install SteamCMD. It will also install Project Zomboid and run it. Servername: 'Docker ProjectZomboid' Password: 'Docker' AdminPassword: 'adminDocker' ATTENTION: First Startup can take very long since it downloads the gameserver files! CONSOLE: To connect to the console open up a terminal and type in: 'docker exec -u steam -ti NAMEOFYOURCONTAINER screen -xS PZ' (without quotes), to disconnect from the console simply close the window. Update Notice: Simply restart the container if a newer version of the game is available. You can also run multiple servers with only one SteamCMD directory!

ProjectZomboidReporter-API's Icon

ProjectZomboidReporter-API

Game Servers

This api is used to access your project zomboid data stored in sql to pass to the main reporter. NOTE: if your sql database is not running on the default port, you will need to provide a value for it below

ProjectZomboidReporter-Frontend's Icon

ProjectZomboidReporter-Frontend

Game Servers

This is the frontend template used in the Project Zomboid Reporter. All visuals used in the final Reporter are pulled from here.

ProjectZomboidReporter-Ingester's Icon

ProjectZomboidReporter-Ingester

Game Servers

This is the ingester which grabs statiscs from your Project Zomboid server files and uploads them to the SQL database for the API to access. NOTE: if you havnt had a player connect to your server yet, you will get an error. If you are having issues with the database tables not being autocreated, connect to the database with adminer (or another program of your choice) and create the tables and structure with the following: USE Zombo; SET NAMES utf8mb4; CREATE TABLE Game ( id int NOT NULL AUTO_INCREMENT, dayofmonth int NOT NULL, month int NOT NULL, daysSinceStart int NOT NULL, name text NOT NULL, maxPlayers int NOT NULL, startDay int NOT NULL, startMonth int NOT NULL, startYear int NOT NULL, year int NOT NULL, PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; CREATE TABLE Players ( id int NOT NULL AUTO_INCREMENT, username text NOT NULL, charname text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, x float NOT NULL, y float NOT NULL, data blob NOT NULL, lastOnline text NOT NULL, PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;