Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Docker requests

Featured Replies

On 10/23/2025 at 1:49 AM, epilot5280 said:

Would like to put in a request for a Stoat chat server docker template.

GitHub
No image preview

GitHub - stoatchat/self-hosted: Deploy Stoat on your own...

Deploy Stoat on your own infrastructure! Contribute to stoatchat/self-hosted development by creating an account on GitHub.


+1 one on this. There doesn't even seem to be any premade images even ... quitte an issue with Unraid I'd say ....

  • 4 weeks later...
  • Replies 566
  • Views 145.9k
  • Created
  • Last Reply

Top Posters In This Topic

Most Popular Posts

  • Ente: https://ente.io   Github: https://github.com/ente-io/ente/tree/main/server   Their instructions: https://help.ente.io/self-hosting/

  • marcinwhite
    marcinwhite

    https://github.com/BeryJu/authentik - authentik is an open-source Identity Provider focused on flexibility and versatility. You can use authentik in an existing environment to add support for new prot

  • Would like to put in a request for a Stoat chat server docker template. GitHub GitHub - stoatchat/self-hosted: Deploy Stoat on your own... Deploy Stoat on your own infrastructure! Contribute to stoat

Posted Images

  • 4 weeks later...

I would request and suggest iCloudPD-Web, a really elegant UI tool to allow for downloading or backing up iCloud Photos from Apple. This seems like a much nicer evolution on the iCloudPD solution, replacing config files with a web page.

https://github.com/AirswitchAsa/icloudpd-web

401403900-2faec712-01bd-4eff-bdff-cdbdfd

Edited by Tomahawk51

1 hour ago, Tomahawk51 said:

I would request and suggest iCloudPD-Web, a really elegant UI tool to allow for downloading or backing up iCloud Photos from Apple. This seems like a much nicer evolution on the iCloudPD solution, replacing config files with a web page.

https://github.com/AirswitchAsa/icloudpd-web

401403900-2faec712-01bd-4eff-bdff-cdbdfd



Alot of these have a docker compose file... use compse...

example https://github.com/AirswitchAsa/icloudpd-web/blob/main/docker-compose.yml

use the compose plugin to add it to unraid...
image.png

so make path before hand..

mkdir -p /mnt/user/appdata/<name of applicaiotn>
*Make sub folders if needed...

and add a new stack via the docker web ui...

image.png

image.png

then edit the stack and add the github compose file:
image.png

almost all doc erks listed here can be done this way...

################################

@Tomahawk51
icloudpd was already added to the unraid ca:
image.png

9 hours ago, bmartino1 said:



Alot of these have a docker compose file... use compse...

example https://github.com/AirswitchAsa/icloudpd-web/blob/main/docker-compose.yml

use the compose plugin to add it to unraid...
image.png

so make path before hand..

mkdir -p /mnt/user/appdata/<name of applicaiotn>
*Make sub folders if needed...

and add a new stack via the docker web ui...

image.png

image.png

then edit the stack and add the github compose file:
image.png

almost all doc erks listed here can be done this way...

################################

@Tomahawk51
icloudpd was already added to the unraid ca:
image.png

Thanks, I'll look into upgrading my skills and will try this as you indicate.


FYI - the container I recommend, icloudpd-web, is different from icloudpd, which is a CLI. I use the latter now, but this alternative looks much easier (e.g. with changing tokens from Apple, etc.). I appreciate your comment.

UPDATE: yes - I was able to learn Docker Compose and get this going. Never did that before! Here's a snippet in case it ever helps someone, albeit slight modification vs. GitHub.

services:

icloudpd-web:

image: spicadust/icloudpd-web:latest

container_name: icloudpd-web

restart: always

ports:

- "5000:5000"

environment:

- HOST=0.0.0.0

- PORT=5000

- TZ=XXXXXX<update this per your needs!!!>

- PUID=99

- PGID=100

volumes:

- /mnt/user/appdata/icloudpd-web:/app/config

- /mnt/user/iCloud/icloudpd-web:/app/downloads

Edited by Tomahawk51
update

On 11/23/2025 at 11:30 PM, LordNightmare said:

I am interested in this as well. 🤔


https://www.servuo.com/tags/docker/

@LordNightmare and @rcampbell

I don't recognize this application, is this a game docker?
There site is curewntly undergoing maintenance.

But they appear to have semi made dockerfile, which is used to build contianers...
There's nothing particularly special about how the Docker container are set up, but I'll include both the Dockerfile and docker-compose.yml file here just in case it would matter fromthe forum:

Dockerfile:

FROM ubuntu:20.04

RUN apt-get update && apt-get install -y wget && \
    wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb && \
    dpkg -i packages-microsoft-prod.deb && \
    apt-get update && \
    apt-get install -y apt-transport-https && \
    apt-get install -y dotnet-sdk-5.0 zlib1g-dev mono-complete make

RUN mkdir /servuo /game_files
WORKDIR /servuo

EXPOSE 2593


docker-compose.yml:

services:
  servuo:
    build:
      context: .
    restart: always
    volumes:
      - ./servuo:/servuo
      - ./game_files:/game_files
    ports:
    - "2593:2593"
    command: make

volumes:
  servuo: {}
  game_files: {}

Due to maintenance collected with wayback:
https://web.archive.org/web/20231005032300/https://www.servuo.com/threads/stuck-on-login-to-shard-step-servuo-mono-docker-synology-nas.13957/

I would need to know more before I make a github dockerfile and docker pull image for this.
as its one thing to create, another thing to support. and it looks like the creators are in the middle of a sdk change and rewrite.

On 8/23/2025 at 1:29 AM, deadsoulz said:

Someone should add RetroAssembly to Unraid App Store.

docker pull arianrhodsandlot/retroassembly

I can make a unraid tempate and add it tothe CA.

https://github.com/arianrhodsandlot/retroassembly
https://hub.docker.com/r/arianrhodsandlot/retroassembly#quick-start

My concern with anything dealing with "retro" / emulation gets gray with how to play content. as it can be a legal issues and not be allowed.

but again they have a compose file:

Using Docker Compose

  1. Make sure you have Docker and Docker Compose installed on your system.

  2. Create a docker-compose.yml file:

    version: '3.8'
    services:
      retroassembly:
        image: arianrhodsandlot/retroassembly
        container_name: retroassembly
        ports: [8000:8000]
        volumes: [/path/to/your/data:/app/data]
        restart: unless-stopped
    

    Replace /path/to/your/data with the actual path where you want to store your game data, ROMs, and save states.

  • 2 weeks later...

Would love a docker template for CrowdSec Unifi Bouncer: cs-unifi-bouncer

There's one availble for mikrotik already, but would be awesome with one for unifi/ubiquiti also.

Edited by eventorism

  • 2 weeks later...
On 12/28/2025 at 12:07 PM, eventorism said:

Would love a docker template for CrowdSec Unifi Bouncer: cs-unifi-bouncer

There's one availble for mikrotik already, but would be awesome with one for unifi/ubiquiti also.

becaue of unifi netowrk applcaiotn / netowrking app and isntergrations. and taht a ccompose file exists.

version: "3.8"

services:

bouncer-unifi:

image: ghcr.io/teifun2/cs-unifi-bouncer:latest

container_name: bouncer-unifi

environment:

CROWDSEC_BOUNCER_API_KEY: MyApiKey

CROWDSEC_URL: "http://crowdsec:8080/"

UNIFI_HOST: "https://yourunifi:443"

UNIFI_USER: "api"

UNIFI_PASS: "password"

# Only use this if your unifi instance does not have a proper certificate.

# UNIFI_SKIP_TLS_VERIFY: "true"

restart: unless-stopped

I would run this in conjuction (as it needs a unifi continer runnign and I don't trust this talking to unfi on unfi equpment running unfi os...

@PeteAsking thouhgs on a unfi seperate docker addon.

I have no problem making a tempatle that can work in conjunction with the unif netowrk applicaiotn your running...

this does require a CROWDSEC_BOUNCER_API_KEY...

ultimatle I'm priced out of this.
https://www.crowdsec.net/pricing

as I have my own loging and blcoking based on logging with fail2ban and scirpt tha do simalr api calls to make a block. 1 and done.

I don't see this beign usefull for others.

On 6/29/2014 at 11:19 AM, DaleWilliams said:

I'm slsoy ready thoguh cehcking and build what i can if its fesible / possible.

Squid has also implementd a new way to add dockers via the CA form docker hub.

a good example is this one for box:
https://hub.docker.com/r/mcp/box

box developers have also implementd a build via doker hub
https://github.com/box/developer.box.com/blob/main/docker-compose.yml
whcih means you gitclone the repo and use compoes to bulid the docker per the data.

mcp is the only one that seems stable and udpated for box. somethign my university uses but wanted to also share if you find a docker on the docker hub you may be able to easily add it via the ca.

example:
https://hub.docker.com/r/mcp/box
image.png

mcp/box

image.png

click docker hub:
image.png

click install

click yes:
image.png

and click apply
image.png

this will allow you to test and try dockers from the docker hub...

  • 1 month later...

free, privacy-focused tool to bulk unsubscribe from emails, delete emails by sender, and mark emails as read. No subscriptions, no data collection - runs 100% on your machine.

GitHub
No image preview

GitHub - Gururagavendra/gmail-cleaner: web based GUI to c...

web based GUI to cleanup gmail delete, mark as read, unsubsribe from uncessary things u dont like - Gururagavendra/gmail-cleaner

2 hours ago, Darius said:

free, privacy-focused tool to bulk unsubscribe from emails, delete emails by sender, and mark emails as read. No subscriptions, no data collection - runs 100% on your machine.

GitHub
No image preview

GitHub - Gururagavendra/gmail-cleaner: web based GUI to c...

web based GUI to cleanup gmail delete, mark as read, unsubsribe from uncessary things u dont like - Gururagavendra/gmail-cleaner


can be run via docker compose:
https://github.com/Gururagavendra/gmail-cleaner/blob/main/docker-compose.yml

looks to be only one app and requires google auth token...
more on the core of the applicaiont.

# Uncomment and set OAUTH_HOST if accessing via custom domain or server IP

# - OAUTH_HOST=gmail.example.com

# Uncomment and set OAUTH_EXTERNAL_PORT if using custom port mapping

# (e.g., if you map ports like "18767:8767", set OAUTH_EXTERNAL_PORT=18767)

# - OAUTH_EXTERNAL_PORT=18767

Gmail supports this with the web UI. I don't see the need to run a 3rd party application that will read and have access to my email account...
https://support.google.com/a/answer/2368132?hl=en

Edited by bmartino1

  • 1 month later...

Hello, would it be possible to add this project to the app store?

GitHub
No image preview

GitHub - jkingsman/Remote-Terminal-for-MeshCore: A remote...

A remote client for MeshCore radios with packet capture, store-and-decrypt, bots, MQTT, and more! - jkingsman/Remote-Terminal-for-MeshCore

Seems like they made EZ-CorridorKey for Docker. Have anyone tried to make it run in Unraid?
https://github.com/edenaion/EZ-CorridorKey

I've never made any templates myself before. Maybe someone else already made this work. Hopefully with GPU support!

Thanks in advance!

  • 2 weeks later...
On 4/5/2026 at 2:53 PM, TheToillMainn said:

Seems like they made EZ-CorridorKey for Docker. Have anyone tried to make it run in Unraid?
https://github.com/edenaion/EZ-CorridorKey

I've never made any templates myself before. Maybe someone else already made this work. Hopefully with GPU support!

Thanks in advance!

no but looks, failry straight forward:
https://github.com/edenaion/EZ-CorridorKey/blob/main/docker/README.md

https://github.com/edenaion/EZ-CorridorKey/blob/main/docker/docker-compose.yml

Not sure why i would want a camera / green screen ai docker though.

they recomend nvida cuda for this AI ish system.
Hardware: An NVIDIA GPU with at least 6GB to 8GB of VRAM is recommended for efficient processing, though higher VRAM (up to 24GB) is beneficial for 4K plates.

  • 2 weeks later...
On 4/20/2026 at 9:07 PM, bmartino1 said:

no but looks, failry straight forward:
https://github.com/edenaion/EZ-CorridorKey/blob/main/docker/README.md

https://github.com/edenaion/EZ-CorridorKey/blob/main/docker/docker-compose.yml

Not sure why i would want a camera / green screen ai docker though.

they recomend nvida cuda for this AI ish system.
Hardware: An NVIDIA GPU with at least 6GB to 8GB of VRAM is recommended for efficient processing, though higher VRAM (up to 24GB) is beneficial for 4K plates.

As I from time to time do batch video work, having a Docker I can just drop this into would be beneficial while working on my other machines. Having used a Tesla P4 for AI and transcoding for some time now I would find it a good way to process footage over night. I could also start processing footage while I am not at home without having to bring a powerful computer with me.
Processing time doesn't really matter in this case, which is why I really like the Tesla P4 cards.
I completely understand your view though.

  • 4 weeks later...

I would like to sugest to add Ente Photos server Docker https://ente.io/

github: https://github.com/ente-io/ente
Docs: https://ente.io/help/self-hosting/


one of the most solid alternatives to Google Photos its Open-source, end-to-end encrypted backup and sharing for photos and videos, multi-platform sync, original quality preservation, privacy-first design, collaborative albums, family sharing, secure external sharing, robust data replication, and device imports. The client works on (iOS / Android / F-Droid / Web / Linux / macOS / Windows)

Edited by Raykai

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.