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.

Kameleon83

Members
  • Joined

Everything posted by Kameleon83

  1. I had understood correctly Maybe I misspoke. I'm not good at English, so I use a translator (deepL). Here is the code I changed following this information last night. ------ Before ------- run.Webui != "" && (run.Name != "Docker-WebUI") ------ After ------- run.Webui != "" && (run.Name != "Docker-WebUI" || run.Name != os.Getenv("HOST_CONTAINERNAME"))
  2. Bonjour à toutes et à tous, Pour les problèmes d'ip via un vpn, je ne peux pour le moment réaliser ce changement. Mon application va juste chercher : /var/local/emhttp/plugins/dynamix.docker.manager/docker.json J'essaye certaines de vos configurations afin de trouver une solution. Mais je n'ai pas trouvé. Le moyen serait de pouvoir paramétrer chaque IP via une configuration. Si vous avez une solution, je veux bien l'essayer. Amicalement. -------------------------------- Hello to all of you, For the ip problems via a vpn, I can't at the moment make this change. My application will just search: /var/local/emhttp/plugins/dynamix.docker.manager/docker.json I'm trying some of your configurations to find a solution. But I didn't find it. The way would be to be able to set each IP via a configuration. If you have a solution, I would like to try it. With kind regards.
  3. Bonsoir, Merci pour vos retours. Je vais essayer de modifier l'interface afin de satisfaire un maximum de personnes. ---------------------------------------------------------- Good evening, Thank you for your feedback. I will try to modify the interface to satisfy as many people as possible.
  4. I didn't know that. So I won't be giving the difference. I would have to test it. I'm not a VSCode pro because I'm more of a JetBrains guy. I saw this new info and thought I'd make it an Unraid application. If you get a chance to test the 2 and find out if one is better, that might help me. Thanks for the feedback. Sorry for my English, I use DeepL for translation.
  5. Hello, désolé de ne répondre que maintenant. Je n'avais pas vu les messages. Je suis content que cela fonctionne correctement. Merci pour tes retours. C'est effectivement des améliorations que je peux faire. Je vais essayer de trouver du temps pour améliorer tout cela. -------- Hello, sorry for only responding now. I hadn't seen the messages. I'm glad it's working properly. Thanks for your feedback. It is indeed improvements that I can make. I will try to find some time to improve it.
  6. OpenVSCode Server What is this? This project provides a version of VS Code that runs a server on a remote machine and allows access through a modern web browser. It's based on the very same architecture used by https://www.gitpod.io or https://github.com at scale. Why? VS Code has traditionally been a desktop IDE built with web technologies. A few years back, people started patching it in order to run it in a remote context and to make it accessible through web browsers. These efforts have been complex and error prone, because many changes had to be made across the large code base of VS Code. Luckily, in 2019 the VS Code team started to refactor its architecture to support a browser-based working mode. While this architecture has been adopted by Gitpod and GitHub, the important bits have not been open-sourced, until now. As a result, many people in the community still use the old, hard to maintain and error-prone approach. At Gitpod, we've been asked a lot about how we do it. So we thought we might as well share the minimal set of changes needed so people can rely on the latest version of VS Code, have a straightforward upgrade path and low maintenance effort. Getting started ⚠️ Be careful, each time you create or update the docker, everything is reset (except the share folder). Docker - Start the server: docker run -d --name='openvscode-server' -p '3000:3000/tcp' -v '/mnt/user/dev/':'/home/workspace':'rw' 'olprog/openvscode-server' - Visit [localhost:3000](http://localhost:3000). Original Github : https://github.com/gitpod-io/openvscode-server
  7. Bonjour à toutes et à tous, J’ai créé cette application à des fins personnels. Je me suis dit que je pouvais le partager avec cette communauté exceptionnelle. Cette application va nettoyer et trier le nom du fichier de vos vidéos sur votre serveur. L’architecture est : - be_sorted: dossier où les fichiers vidéos doivent être mis afin que le trie fonctionne - series: l’application va trier les séries dans ce dossier - movies: elle va trier les films dans ce dossier Bien-sûr, je ne suis aucunement responsable des fichiers que vous téléchargez. L'application sert juste à nettoyer le nom et trier les fichiers au bon endroit. Hello to all of you, I created this application for personal use. I thought I would share it with this great community. This application will clean and sort the file name of your videos on your server. The architecture is : - be_sorted: folder where the video files must be put for the sorting to work - series: the application will sort the series in this folder - movies: it will sort the movies into this folder Of course, I am not responsible for the files you upload. The application just cleans up the name and sorts the files to the right place. 02 June 2023 Improved sorting. A FORMAT_FILE environment variable has been added: - the character to be chosen, by default the "-". if you want a space then put an "s". - name: the name of the file - year: the year if it exists in the original file - resolution: the resolution of the video if it exists in the original file Example: Original File: My.Favourite.Movie.2023.4K.MULTi.2160p.HDR.WEB.EAC3.x265.mkv - FORMAT_FILE = -, name (default) => mon-film-prefere.mkv - FORMAT_FILE = -, name, year => my-film-prefere-2023.mkv - FORMAT_FILE = -, name, year, resolution => my-film-prefere-2023-4k.mkv - FORMAT_FILE = _, name, year, resolution => my-film-preference-2023_4k.mkv - FORMAT_FILE = s, year, name => "2023 mon film prefere.mkv" - ... FORMAT_FILE affects films and series. Sorry for English. Translated with DeepL.
  8. Bonjour à toutes et à tous, J’ai réalisé une petite application qui permet de lister les Conteneurs docker qui ont un lien WebUI. Variables d’environnements : - CIRCLE : - yes : le fond d’écran aura des cercles de couleurs - vide : pas de cercles de couleurs - HOST : (ex : unraid.duckdns.org) - cette variable permet de mettre un DNS / DynDNS. Cela vous permet de vous connecter sur cette page en dehors de votre réseau local. - vide : l’adresse pour y accéder restera l’adresse locale - UNRAID_IP : - si vous avez ajoutez un HOST, toutes vos adresses IP auront votre DNS / DynDNS même les conteneurs ayant une autre adresse IP. Entrez votre adresse IP locale ainsi les conteneurs différents garderont leur adresse différente sans que celle-ci soit remplacé. - vide : l’adresse pour y accéder restera l’adresse locale - TITLE : - Celle-ci vous permet de modifier le titre de la page HTML dans l’onglet de votre navigateur. - vide : Docker WebUI - PORT : - Cette Variable permet de changer le port interne de l'application. Par défaut, c'est 8080. - ⚠️ Si vous changer le port 8080 par défaut, il ne faut pas oublier de le changer dans la variable WebUI => Container Port. Des petites choses essentielles au bon fonctionnement de cette application : - Ne changer pas le nom de l’application (Docker-WebUI). J’ai omis la liste avec ce nom. Si vous le changer alors vous verrez celle-ci listée. - container : /data, host : /var/local/emhttp/plugins/dynamix.docker.manager Ajoutez un dossier partagé pour la configuration. A l'intérieur, un fichier (subdomains.yml) stockera les sous-domaines que vous modifierez dans l'application. - conteneur : /config, hôte : /mnt/user/docker/Docker-WebUI/config Amusez-vous. ----------------------- Mise à jour --------------------------- 01 / 08 / 2022 - Ajout de l’installation de l’application (service worker). Condition à respecter => HTTPS - Ajout d’un choix d’URL par conteneur : LAN ou WAN - Possibilité de mettre un sous-domaine par conteneur. 05 / 06 / 2022 - Correction du problème d'affichage du favicon. 07 / 05 / 2022 - Ajout de la Variable PORT pour changer le port interne de l'application. ⚠️ Si vous changer le port 8080 par défaut, il ne faut pas oublier de le changer dans la variable WebUI => Container Port. 16 / 01 / 2022 - Ajoutez TITLE pour modifier le titre de votre page dans l'onglet du navigateur. 09 / 01 / 2022 - Bonne Année - Ajouter UNRAID_IP : Ceci déterminera si un conteneur a sa propre IP ou non. Ne le remplissez que si HOST est rempli. 13 / 11 / 2021 - Ajout de zoom / dézoome - Ajout d’un filtre - Ajout d’une variable d’environnement HOST pour mettre votre HOSTNAME ou dns (si les ports sont ouverts) 07 / 11 / 2021 - Correction du problème avec paramètre d'URL. http://IP:PORT/vnc.html?resize=remote&host=192.168.0.4&port=6080&autoconnect=1 to http://IP:PORT/vnc.html?resize=remote&host=192.168.0.4&port=6080&autoconnect=1 03 / 11 / 2021: - Ne changer pas le nom de l’application (Docker-WebUI). J’ai omis la liste avec ce nom. Si vous le changer alors vous verrez celle-ci listée. - Si vous êtes en version 6.10-rc2 (ou plus), vous pouvez changer le nom du container grâce à l'ajout d'une variable d'environnement dans chaque container (HOST_CONTAINERNAME). Merci à @Meles Meles. 31 / 10 / 2021: - Ajouter la variable CIRCLE #Cette variable vous permet de définir ou de supprimer les cercles de couleur. ------------------------------------------------------------- English ----------------------------------------------------------------------------- Hello to all of you, I made a small application that lists the docker containers that have a WebUI link. Environment variables: - CIRCLE: - yes : the background will have colored circles - empty : no colored circles - HOST : (ex : unraid.duckdns.org) - this variable allows you to put a DNS / DynDNS. This allows you to connect to this page outside your local network. - empty : the address to access it will remain the local address - UNRAID_IP : - if you have added a HOST, all your IP addresses will have your DNS / DynDNS even containers with another IP address. Enter your local IP address so different containers will keep their different address without it being replaced. - empty : the address to access it will remain the local address - TITLE : - This one allows you to change the title of the HTML page in the tab of your browser. - empty: Docker WebUI A few things that are essential for this application to work properly: - Do not change the name of the application (Docker-WebUI). I have omitted the list with this name. If you change it then you will see it listed. - container: /data, host: /var/local/emhttp/plugins/dynamix.docker.manager Add a folder share for configuration. Inside, a file (subdomains.yml) will store the subdomains you will change in the application. - container: /config, host: /mnt/user/docker/Docker-WebUI/config Have fun. ----------------------- Update --------------------------- 01 / 08 / 2022 - Adding the installation of the application (service worker). Condition to respect => HTTPS - Add a choice of URL per container: LAN or WAN - Possibility to put a sub-domain per container. 05 / 06 / 2022 - Fixed favicon display issue. 07 / 05 / 2022 - Add Variable PORT to change the internal port of the application. ⚠️ If you change the default port 8080, don't forget to change it in the WebUI => Container Port variable. 16 / 01 / 2022 - Add TITLE to change the title of your page in the browser tab. 09 / 01 / 2022 - Happy New Year - Add UNRAID_IP: This will determine if a container has its own IP or not. Fill in only if HOST is filled in. 13 / 11 / 2021 - Adding zoom in/out - Adding a filter - Add a HOST environment variable to set your HOSTNAME or dns (if ports are open) 07 / 11 / 2021 - Fixed problem with URL parameter. http://IP:PORT/vnc.html?resize=remote&host=192.168.0.4&port=6080&autoconnect=1 to http://IP:PORT/vnc.html?resize=remote&host=192.168.0.4&port=6080&autoconnect=1 03 / 11 / 2021: - Do not change the name of the application (Docker-WebUI). I omitted the list with this name. If you change it then you will see it listed. - If you are in version 6.10-rc2 (or newer), you can change the container name by adding an environment variable to each container (HOST_CONTAINERNAME). Thanks to @Meles Meles. 31 / 10 / 2021: - Add variable CIRCLE #This variable allows you to set or remove colored circles. Sorry for English. Translated with DeepL.

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.