October 31, 2025Oct 31 On 10/23/2025 at 1:49 AM, epilot5280 said:Would like to put in a request for a Stoat chat server docker template.GitHubGitHub - 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 ....
November 24, 2025Nov 24 On 9/12/2025 at 4:51 PM, rcampbell said:Hello,I would like to request an Ultima Online Server as a docker container. The project is called ServUO.https://github.com/ServUO/ServUOhttps://www.servuo.com/Thank you.I am interested in this as well. 🤔
December 18, 2025Dec 18 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 Edited December 18, 2025Dec 18 by Tomahawk51
December 18, 2025Dec 18 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-webAlot of these have a docker compose file... use compse...example https://github.com/AirswitchAsa/icloudpd-web/blob/main/docker-compose.ymluse the compose plugin to add it to unraid...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...then edit the stack and add the github compose file:almost all doc erks listed here can be done this way...################################@Tomahawk51 icloudpd was already added to the unraid ca:
December 18, 2025Dec 18 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.ymluse the compose plugin to add it to unraid...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...then edit the stack and add the github compose file:almost all doc erks listed here can be done this way...################################@Tomahawk51 icloudpd was already added to the unraid ca: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 December 18, 2025Dec 18 by Tomahawk51 update
December 18, 2025Dec 18 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 2593docker-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.
December 18, 2025Dec 18 On 8/23/2025 at 1:29 AM, deadsoulz said:Someone should add RetroAssembly to Unraid App Store.docker pull arianrhodsandlot/retroassemblyI can make a unraid tempate and add it tothe CA.https://github.com/arianrhodsandlot/retroassemblyhttps://hub.docker.com/r/arianrhodsandlot/retroassembly#quick-startMy 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 ComposeMake sure you have Docker and Docker Compose installed on your system.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.
December 28, 2025Dec 28 Would love a docker template for CrowdSec Unifi Bouncer: cs-unifi-bouncerThere's one availble for mikrotik already, but would be awesome with one for unifi/ubiquiti also. Edited December 28, 2025Dec 28 by eventorism
January 6Jan 6 On 12/28/2025 at 12:07 PM, eventorism said:Would love a docker template for CrowdSec Unifi Bouncer: cs-unifi-bouncerThere'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-stoppedI 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/pricingas 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.
January 8Jan 8 On 6/29/2014 at 11:19 AM, DaleWilliams said:BOX.comThere's no Linux Sync native cabability but they have webdav and some folks use copy.com http://seb.so/50gb-of-cloud-space-with-box-automatically-syncd-on-linux-with-webdav/#box_mountwebdavhttps://support.box.com/hc/communities/public/questions/200285268-Box-Sync-for-Linux-anyone- 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/boxbox developers have also implementd a build via doker hubhttps://github.com/box/developer.box.com/blob/main/docker-compose.ymlwhcih 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/boxmcp/boxclick docker hub:click installclick yes:and click applythis will allow you to test and try dockers from the docker hub...
February 10Feb 10 A 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.GitHubGitHub - 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
February 11Feb 11 2 hours ago, Darius said:A 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.GitHubGitHub - 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-cleanercan be run via docker compose:https://github.com/Gururagavendra/gmail-cleaner/blob/main/docker-compose.ymllooks 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=18767Gmail 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 February 11Feb 11 by bmartino1
April 5Apr 5 Hello, would it be possible to add this project to the app store? GitHubGitHub - 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
April 5Apr 5 Seems like they made EZ-CorridorKey for Docker. Have anyone tried to make it run in Unraid?https://github.com/edenaion/EZ-CorridorKeyI've never made any templates myself before. Maybe someone else already made this work. Hopefully with GPU support!Thanks in advance!
April 20Apr 20 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-CorridorKeyI'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.mdhttps://github.com/edenaion/EZ-CorridorKey/blob/main/docker/docker-compose.ymlNot 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.
April 30Apr 30 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.mdhttps://github.com/edenaion/EZ-CorridorKey/blob/main/docker/docker-compose.ymlNot 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.
May 25May 25 I would like to sugest to add Ente Photos server Docker https://ente.io/github: https://github.com/ente-io/enteDocs: 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 May 25May 25 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.