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.

SmartPhoneLover

Members
  • Joined

  • Last visited

Everything posted by SmartPhoneLover

  1. This docker template was created based on an already available docker image WebSite: GitHub: https://github.com/TheConnMan/docker-hub-rss DockerHub: https://hub.docker.com/r/theconnman/docker-hub-rss My Repository: https://github.com/SmartPhoneLover/unraid-docker-templates DESCRIPTION RSS feed for Docker Hub images Docker Hub doesn't provide notifications for new image releases, so Docker Hub RSS turns image tags into an RSS feed for easy consumption. Subscribe using Slack RSS, Feedly, or any other RSS feed reader to get notified when a new image is published. Live demo: https://docker-hub-rss-theconnman.vercel.app/ NOTES • To generate new RSS feeds just fill-in all the decided text fields and click on 'Preview Feed'. Then, you can register them on your RSS reader. (As a reference, I like to use FreshRSS as a docker container, then connect FocusReader from Android) VERSION 1.0 (2021-12-25) If you are going to report a bug or request something to be added/modified, please, take into consideration that I will only be able to apply changes for the work I own only. For example, if I create a docker template for an already existing docker image (not created by me), I won't be able to do more for that image than forward your report or request to the owner of the project. If you like my work, please consider making a little donation. - DONATE - Thank you very much 🙂
  2. This docker template was created based on an already available docker image GitHub: https://github.com/cupcakearmy/cryptgeon DockerHub: https://hub.docker.com/r/cupcakearmy/cryptgeon My Repository: https://github.com/SmartPhoneLover/unraid-docker-templates DESCRIPTION cryptgeon is a secure, open source sharing note or file service inspired by PrivNote. Features: • Server cannot decrypt contents due to client side encryption • View or time constraints • In memory, no persistence • Obligatory dark mode support Live demo: https://cryptgeon.nicco.io/ NOTES • HTTPS certificate (NPM/Nginx) is required to use this service, otherwise browsers will not support the cryptographic functions. • Memcached is required to be already running as a separate container, as it is used for caching the information in memory (nothing is saved locally). VERSION 1.0 (2021-12-24) If you are going to report a bug or request something to be added/modified, please, take into consideration that I will only be able to apply changes for the work I own only. For example, if I create a docker template for an already existing docker image (not created by me), I won't be able to do more for that image than forward your report or request to the owner of the project. If you like my work, please consider making a little donation. - DONATE - Thank you very much 🙂
  3. Hello, I'm currently trying to connect FreshRSS to that app (Readrops), but I can't get it to detect the container. I already edited the config.php, adding the container port, as per the FreshRSS suggestion (base url problem detected). So, after adding the corresponding port, both shows: PASS (✔️). This is what fill-in inside the android app: Account url: http://server_ip:port/api/grader.php Account name: FreshRSS user (login credentials) Login: FreshRSS user password (login credentiales) Password: API pass (Settings > Profile > API Management) Thank you. - - - - - - - - - - - - - - - - - - - I tried with an app called 'FocusReader', and it connects with the container. But I would like to try FreshRSS.
  4. Thank you! This was just another docker image I wanted to try, but I still preffer to use the one called: tubesync. You can find it in the CA section.
  5. This has to be done by the owner of the image, as he/she needs to rebuild the image including these changes. But it's already ready to be included on next build. I will ask.
  6. Oh, sorry to all. I didn't realize that I wrote the wront port to be used, in the NOTES section. it was port2 (18081), no port1 (18080). Maybe, that's is why Monero node didn't work for @amnesia.
  7. Did you leave unRAID to create the corresponding directories under '/appdata' when creating the container? Or you have created them before creating it? Also, did you adapted the 'sharry.conf' file to work with H2? By the other hand, the directory tree should be: '/mnt/user/appdata/sharry', not '/mnt/user/appdata/sharry/sharry.conf'. Then, inside '/.../appdata/sharry' place the 'sharry.conf' file. The Java Exception error from above tells that that it could not read the corresponding file, as the place where the file is located was not correct. Please, try the following: 1. Delete 'sharry.config' (directory) from inside '/.../appdata/sharry'. 2. Create the 'sharry.conf' file somewhere, with the following content: sharry.restserver { base-url = "http://localhost:9090" bind { address = "0.0.0.0" port = 9090 } backend { auth { fixed.enabled = true ## enabled admin:admin access } jdbc { url = "jdbc:h2://"${java.io.tmpdir}"/sharry-demo.db;MODE=PostgreSQL;DATABASE_TO_LOWER=TRUE" user = "sa" password = "" } signup { mode = "open" invite-time = "14 days" invite-password = "generate-invite" } } } 3. Place the file previously created inside '/.../appdata/sharry'. 4. Start building the container. Notes: Try not to change the 9090 port from inside the file. Do it within the docker template instead. Just to try if it works well at first.
  8. This docker template was created based on an already available docker image GitHub: https://github.com/eikek/sharry DockerHub: https://hub.docker.com/r/eikek0/sharry Documentation: https://eikek.github.io/sharry/ My Repository: https://github.com/SmartPhoneLover/unraid-docker-templates DESCRIPTION Sharry allows to share files with others in a simple way. It is a self-hosted web application. The basic concept is: upload files and get a url back that can then be shared. How it works? Authenticated users → others Authenticated users can upload their files on a web site together with an optional password and a time period. The time period defines how long the file is available for download. Then a public URL is generated that can be shared, e.g. via email. Others → Authenticated users Each registered user can maintain alias pages. An alias page is behind a “hard-to-guess” URL (just like the download page) and allows everyone to upload files to the corresponding user. The form does not allow to specify a password or validation period, but a description can be given. The user belonging to the alias can be notified via email. Alias pages can be disabled or deleted any time. NOTES • Before building the container, you have to create the 'sharry.conf' file, and place in the directory that is mapped within the template (Config File). (click here to access the file content) • If you don't want to use an external database (PostgreSQL, MariaDB/MySQL), you can use H2. But, you will need to configure the template and 'sharry.conf' file accordingly. (check documentation for more info) VERSION 1.0 (2021-12-16) If you are going to report a bug or request something to be added/modified, please, take into consideration that I will only be able to apply changes for the work I own only. For example, if I create a docker template for an already existing docker image (not created by me), I won't be able to do more for that image than forward your report or request to the owner of the project. If you like my work, please consider making a little donation. - DONATE - Thank you very much 🙂
  9. Ok, I have tested it again, and I can still connect to both apps. I didn't experience any connection error. Sorry, but I couldn't replicate your issue. Did you try to expose it with NGINX and try to connect via Internet? Just to see if it works or not. If yes, that could mean that there's some problem in your local net or configuration.
  10. This docker template was created based on an already available docker image GitHub: https://github.com/Jeeaaasus/youtube-dl DockerHub: https://hub.docker.com/r/jeeaaasustest/youtube-dl/ My Repository: https://github.com/SmartPhoneLover/unraid-docker-templates DESCRIPTION This ia a docker template for YouTube-DL (yt-dlp) for downloading YouTube subscriptions. NOTES • Check the GitHub repo to know more about how to configure the variables used in this template. VERSION 1.0 (2021-12-15) If you are going to report a bug or request something to be added/modified, please, take into consideration that I will only be able to apply changes for the work I own only. For example, if I create a docker template for an already existing docker image (not created by me), I won't be able to do more for that image than forward your report or request to the owner of the project. If you like my work, please consider making a little donation. - DONATE - Thank you very much 🙂
  11. Hi @amnesia, Sorry to hear that, but when I tested it on my Monero-GUI application (Windows) it got successfully connected, and immediately. If it's not a problem for you, I can check it again with Monero-GUI and Feather wallet. Just give me 1 or 2 days. And about username or password, no. There's no user or password that you have to configure on the client side. The only username that is used, but within the template, is the 'monerod', but it's only used by the daemon.
  12. UPDATE 1.1 (2021-12-14) - Other: added default credentials (check variables within the template) to 'NOTES' section.
  13. Sorry, I forgot to mention it in the NOTES. It's just: "unraid".
  14. UPDATE 1.1 (2021-12-14) - Fix: fixed host paths for '/cache' and '/config' directories. ('/.../appdata/jellyfin-2' to '/.../appdata/jellyfin')
  15. I already thought about that, but as it's linked internally to the own WG service of the container itself I think it won't be possible.
  16. This docker template was created based on an already available official docker image ALL AVAILABLE TEMPLATES ARE BASED ON GENERATION 3 REPOS GitHub (G1): https://github.com/accetto/ubuntu-vnc-xfce GitHub (G2): https://github.com/accetto/xubuntu-vnc-novnc/ GitHub (G3): https://github.com/accetto/headless-drawing-g3 DockerHub (Blender): https://hub.docker.com/r/accetto/ubuntu-vnc-xfce-blender-g3 DockerHub (Chromium): https://hub.docker.com/r/accetto/ubuntu-vnc-xfce-chromium-g3 DockerHub (Firefox): https://hub.docker.com/r/accetto/ubuntu-vnc-xfce-firefox-g3 DockerHub (FreeCAD): https://hub.docker.com/r/accetto/ubuntu-vnc-xfce-freecad-g3 DockerHub (Gimp): https://hub.docker.com/r/accetto/ubuntu-vnc-xfce-gimp-g3 DockerHub (Inkscape): https://hub.docker.com/r/accetto/ubuntu-vnc-xfce-inkscape-g3 DockerHub (OpenDL/WebGL/VirtualGL): https://hub.docker.com/r/accetto/ubuntu-vnc-xfce-opengl-g3 My Repository: https://github.com/SmartPhoneLover/unraid-docker-templates DESCRIPTION Headless Ubuntu/Xfce containers with VNC/noVNC and a collection of apps and 3D modeling environment. This is a docker template based on latest Ubuntu LTS with Xfce desktop environment and VNC/noVNC servers for headless use. NOTES • The default credentials are: no_user/unraid (user/pass). These credentials are also used for the root user within the container (OS). • To be able to work with files located on your host, and viceversa, configure the 'Internal Share' path on this template. You can also map internal '/home/user/*' directories to your host. • The are two noVNC clients - lite client and full client. Because the connection URL differs slightly in both cases, the container provides a simple startup page. • If you want to try the apps based on other OS versions (olders), check the Gen 1 and Gen 2 GitHub repos, so you can build the docker templates for the version you want. VERSION 1.0 (2021-12-14) If you are going to report a bug or request something to be added/modified, please, take into consideration that I will only be able to apply changes for the work I own only. For example, if I create a docker template for an already existing docker image (not created by me), I won't be able to do more for that image than forward your report or request to the owner of the project. If you like my work, please consider making a little donation. - DONATE - Thank you very much 🙂
  17. If you check the GitHub repo, you will see the available variables to be used, and the 'WG_HOST' is the one that sets your IP server. (WG_HOST=🚨YOUR_SERVER_IP)
  18. Not actually. I would preffer to continue using the built-in one from unRAID. It's just for those who want to try another implementation with GUI administration.
  19. This docker template was created based on an already available docker image WebSite: https://www.wireguard.com/ GitHub: https://github.com/WeeJeWel/wg-easy DockerHub: https://hub.docker.com/r/weejewel/wg-easy My Repository: https://github.com/SmartPhoneLover/unraid-docker-templates DESCRIPTION You have found the easiest way to install & manage WireGuard on any Linux host! Features: • All-in-one: WireGuard + Web UI • Easy installation, simple to use • List, create, edit, delete, enable & disable clients • Show a client's QR code • Download a client's configuration file • Statistics for which clients are connected • Gravatar support NOTES • The default credentials: empty/unraid (user/pass). • It's just an alternative way to install WireGuard. VERSION 1.1 (2021-12-14) If you are going to report a bug or request something to be added/modified, please, take into consideration that I will only be able to apply changes for the work I own only. For example, if I create a docker template for an already existing docker image (not created by me), I won't be able to do more for that image than forward your report or request to the owner of the project. If you like my work, please consider making a little donation. - DONATE - Thank you very much 🙂
  20. This docker template was created based on an already available official docker image GitHub: https://github.com/gerbera/gerbera DockerHub: https://hub.docker.com/r/gerbera/gerbera Documentation: https://docs.gerbera.io/en/stable/index.html My Repository: https://github.com/SmartPhoneLover/unraid-docker-templates DESCRIPTION Gerbera is a UPnP media server which allows you to stream your digital media through your home network and consume it on a variety of UPnP compatible devices. Features: • Browse and playback your media via your network on all kinds of devices. • Web UI with a tree view of the database and the file system, allowing to add/remove/edit/browse your media • Metadata extraction from MP3, OGG, AAC, M4A, FLAC, JPG (and many more!) files. • Media thumbnail support • Highly flexible media format transcoding via plugins / scripts • Automatic directory rescans (timed, inotify) • User defined server layout based on extracted metadata • Supports last.fm scrobbing • On the fly video thumbnail generation • Support for external URLs (create links to internet content and serve them via UPnP to your renderer) • Runs on Linux, BSD, Mac OS X, and more! • Runs on x86, ARM, MIPS, and more! NOTES • You can provide your own configuration file (config.xml), by creating an extra Path variable as: '/var/run/gerbera/config.xml' (container) and '/mnt/user/appdata/gerbera/config.xml' (host). • The container is configured to use Host as the network type to bypass issues with broadcast accross docker bridges. VERSION 1.0 (2021-12-13) If you are going to report a bug or request something to be added/modified, please, take into consideration that I will only be able to apply changes for the work I own only. For example, if I create a docker template for an already existing docker image (not created by me), I won't be able to do more for that image than forward your report or request to the owner of the project. If you like my work, please consider making a little donation. - DONATE - Thank you very much 🙂
  21. This docker template was created based on an already available docker image Discussion Thread: https://forums.mydigitallife.net/threads/emulated-kms-servers-on-non-windows-platforms.50234/ GitHub: https://github.com/mikolatero/docker-vlmcsd GitHub (original): https://github.com/Wind4/vlmcsd DockerHub: https://hub.docker.com/r/mikolatero/vlmcsd/ My Repository: https://github.com/SmartPhoneLover/unraid-docker-templates DESCRIPTION VLMCSD is, a replacement for Microsoft's KMS server It contains vlmcs a KMS test client, mainly for debugging purposes, that also can "charge" a genuine KMS server designed to run on an always-on or often-on device,e.g. router, NAS Box, ... intended to help people who lost activation of their legally-owned licenses, e.g. due to a change of hardware (motherboard, CPU, ...). NOTES • It's not a one-click activation or crack tool intended to activate illegal copies of software (Windows, Office, Project, Visio). VERSION 1.0 (2021-12-12) If you are going to report a bug or request something to be added/modified, please, take into consideration that I will only be able to apply changes for the work I own only. For example, if I create a docker template for an already existing docker image (not created by me), I won't be able to do more for that image than forward your report or request to the owner of the project. If you like my work, please consider making a little donation. - DONATE - Thank you very much 🙂
  22. This docker template was created based on an already available docker image GitHub: https://github.com/epoupon/fileshelter DockerHub: https://hub.docker.com/r/epoupon/fileshelter Documentation: My Repository: https://github.com/SmartPhoneLover/unraid-docker-templates DESCRIPTION FileShelter is a self-hosted software that allows you to easily share files over the Internet. Just upload one or more files and get an URL back! Here you have a live demo: http://fileshelter.demo.poupon.io/ NOTES • FileShelter uses a default configuration file, located in '/etc/fileshelter.conf', but you can overwrite it by mapping it on your host: '/path/to/my/fileshelter.conf' (host) and 'target=/etc/fileshelter.conf' (container). VERSION 1.0 (2021-12-11) If you are going to report a bug or request something to be added/modified, please, take into consideration that I will only be able to apply changes for the work I own only. For example, if I create a docker template for an already existing docker image (not created by me), I won't be able to do more for that image than forward your report or request to the owner of the project. If you like my work, please consider making a little donation. - DONATE - Thank you very much 🙂
  23. @sturmstar I couldn't find the reason why you're experiencing that behaviour with the files created by Vorta. (I don't use RCLONE) I have asked it to other users, but did not receive a reply yet as not many of them use RCLONE. I will reply to this thread if I have an answer for this.
  24. This docker template was created based on an already available docker image THE SOURCE CODE CONTAINS SOME MINOR ERRORS (CHECK GITHUB ISSUES) GitHub: https://github.com/hauxir/imgpush DockerHub: https://hub.docker.com/r/hauxir/imgpush My Repository: https://github.com/SmartPhoneLover/unraid-docker-templates DESCRIPTION Minimalist Self-hosted Image Service for user submitted images in your app (e.g. avatars). Features: • One simple API endpoint for uploading images • Automatic Conversion to an image format of your choice • Automatic resizing to any size of your liking • Built-in Rate limiting • Built-in Allowed Origin whitelisting • Liveness API NOTES • To know more about the variables you can use to fully customize how it works, check the GitHub repo. VERSION 1.0 (2021-12-11) If you are going to report a bug or request something to be added/modified, please, take into consideration that I will only be able to apply changes for the work I own only. For example, if I create a docker template for an already existing docker image (not created by me), I won't be able to do more for that image than forward your report or request to the owner of the project. If you like my work, please consider making a little donation. - DONATE - Thank you very much 🙂
  25. This docker template was created based on an already available docker image GitHub: https://github.com/Forceu/gokapi DockerHub: https://hub.docker.com/r/f0rc3/gokapi Documentation: https://gokapi.readthedocs.io/en/latest/index.html My Repository: https://github.com/SmartPhoneLover/unraid-docker-templates DESCRIPTION Gokapi is a lightweight server to share files, which expire after a set amount of downloads or days. It is similar to the discontinued Firefox Send, with the difference that only the admin is allowed to upload files. This enables companies or individuals to share their files very easily and having them removed afterwards, therefore saving disk space and having control over who downloads the file from the server. Identical files will be deduplicated. An API is available to interact with Gokapi. AWS S3 and Backblaze B2 can be used instead of local storage. Customization is very easy with HTML/CSS knowledge. NOTES • Default credentials: unraid/unraid (user/pass). • After building the container, check logs for details about how to log-in. • To know more about the available variables that you can use, check the documentation. • If you want to update the container settings (variables) after creation, you will need to edit the config file manually. (only applicable for persistent variables) VERSION 1.0 (2021-12-11) If you are going to report a bug or request something to be added/modified, please, take into consideration that I will only be able to apply changes for the work I own only. For example, if I create a docker template for an already existing docker image (not created by me), I won't be able to do more for that image than forward your report or request to the owner of the project. If you like my work, please consider making a little donation. - DONATE - Thank you very much 🙂

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.