├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── binhex ├── _template.xml ├── bitmagnet.xml ├── code-server.xml ├── crafty-4.xml ├── deluge.xml ├── delugevpn.xml ├── emby.xml ├── fdroidserver.xml ├── flaresolverr.xml ├── fleet.xml ├── get-iplayer.xml ├── goland.xml ├── gonic.xml ├── hexchat.xml ├── images │ ├── archlinux-icon.png │ ├── bitmagnet-icon.png │ ├── code-server-icon.png │ ├── crafty-4-icon.png │ ├── deluge-icon.png │ ├── emby-icon.png │ ├── fdroidserver-icon.png │ ├── flaresolverr-icon.png │ ├── fleet-icon.png │ ├── get-iplayer-icon.png │ ├── goland-icon.png │ ├── gonic-icon.png │ ├── hexchat-icon.png │ ├── intellij-icon.png │ ├── jackett-icon.png │ ├── jellyfin-icon.png │ ├── jellyseerr-icon.png │ ├── jenkins-icon.png │ ├── krusader-icon.png │ ├── libreoffice-icon.png │ ├── lidarr-icon.png │ ├── makemkv-icon.png │ ├── medusa-icon.png │ ├── minecraftbedrockserver-icon.png │ ├── minecraftserver-icon.png │ ├── minidlna-icon.png │ ├── nginx-icon.png │ ├── nicotineplus-icon.png │ ├── novnc-icon.png │ ├── nzbget-icon.png │ ├── nzbhydra2-icon.png │ ├── official-pihole-icon.png │ ├── official-purgarr-icon.png │ ├── overseerr-icon.png │ ├── phpstorm-icon.png │ ├── plex-icon.png │ ├── preclear-icon.png │ ├── privoxy-icon.png │ ├── profile.jpg │ ├── prowlarr-icon.png │ ├── puddletag-icon.png │ ├── pycharm-icon.png │ ├── qbittorrent-icon.png │ ├── radarr-icon.png │ ├── rclone-icon.png │ ├── readarr-icon.png │ ├── resilio-sync-icon.png │ ├── rider-icon.png │ ├── rubymine-icon.png │ ├── rustrover-icon.png │ ├── sabnzbd-icon.png │ ├── sickchill-icon.png │ ├── siphonator-icon.png │ ├── sonarr-icon.png │ ├── syncthing-icon.png │ ├── tdb-icon.png │ ├── teamspeak-icon.png │ ├── tvheadend-icon.png │ ├── urbackup-icon.png │ ├── utilities-icon.png │ ├── webstorm-icon.png │ └── windows-icon.png ├── intellij.xml ├── jackett.xml ├── jellyfin.xml ├── jenkins.xml ├── krusader.xml ├── libreoffice.xml ├── lidarr.xml ├── makemkv.xml ├── medusa.xml ├── minecraftbedrockserver.xml ├── minecraftserver.xml ├── minidlna.xml ├── nginx.xml ├── nicotineplus.xml ├── nzbget.xml ├── nzbhydra2.xml ├── official-byparr.xml ├── official-docker-registry-proxy.xml ├── official-pihole.xml ├── official-purgarr.xml ├── official-simple-cloudflare-solver.xml ├── official-windows.xml ├── overseerr.xml ├── plex.xml ├── plexpass.xml ├── privoxyvpn.xml ├── prowlarr.xml ├── pycharm.xml ├── qbittorrentvpn.xml ├── radarr.xml ├── rclone.xml ├── readarr.xml ├── resilio-sync.xml ├── rider.xml ├── rustrover.xml ├── sabnzbd.xml ├── sabnzbdvpn.xml ├── sickchill.xml ├── siphonator.xml ├── sonarr.xml ├── syncthing.xml ├── teamspeak.xml ├── tvheadend.xml ├── urbackup.xml └── webstorm.xml └── ca_profile.xml /.gitattributes: -------------------------------------------------------------------------------- 1 | # Define the default behavior where GitHub attempts to detect the file type and set the line endings correctly 2 | * text=auto 3 | 4 | # Define line endings to be unix (LF) for GitHub files 5 | .gitattributes text eol=lf 6 | .gitignore text eol=lf 7 | .gitconfig text eol=lf 8 | LICENSE text eol=lf 9 | *.md text eol=lf 10 | 11 | # Define line endings to be unix (LF) for source code 12 | *.php text eol=lf 13 | *.css text eol=lf 14 | *.sass text eol=lf 15 | *.scss text eol=lf 16 | *.less text eol=lf 17 | *.styl text eol=lf 18 | *.js text eol=lf 19 | *.coffee text eol=lf 20 | *.json text eol=lf 21 | *.htm text eol=lf 22 | *.html text eol=lf 23 | *.xml text eol=lf 24 | *.svg text eol=lf 25 | *.txt text eol=lf 26 | *.ini text eol=lf 27 | *.inc text eol=lf 28 | *.pl text eol=lf 29 | *.rb text eol=lf 30 | *.py text eol=lf 31 | *.scm text eol=lf 32 | *.sql text eol=lf 33 | *.sh text eol=lf 34 | *.bat text eol=lf 35 | *.txt text eol=lf 36 | *.tmpl text eol=lf 37 | Dockerfile text eol=lf 38 | 39 | # Define binary files to be excluded from modification 40 | *.png binary 41 | *.jpg binary 42 | *.jpeg binary 43 | *.gif binary 44 | *.ico binary 45 | *.flv binary 46 | *.fla binary 47 | *.swf binary 48 | *.gz binary 49 | *.tar binary 50 | *.rar binary 51 | *.zip binary 52 | *.7z binary 53 | *.egg binary 54 | *.ttf binary 55 | *.eot binary 56 | *.woff binary 57 | *.pyc binary 58 | *.pdf binary 59 | *.db binary 60 | *.xz binary -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # ignore comments files 2 | todo.txt 3 | notes.txt 4 | 5 | # ignore mac generated files 6 | .DS_Store 7 | 8 | # ignore pycharm ide 9 | .idea 10 | 11 | # ignore compiled python scripts 12 | *.pyc 13 | 14 | # ignore virtual env 15 | venv 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | **Application** 2 | 3 | N/A 4 | 5 | **Description** 6 | 7 | unRAID Docker Templates for Docker images in the "binhex" repository. 8 | 9 | **Usage** 10 | 11 | Firstly you need to be running unRAID ver 6.0.0 or later, once installed follow the instructions below:- 12 | 13 | 1. Navigate to "Docker" tab and then the "Docker Repositories" sub-tab in the unRAID webui 14 | 2. Enter in a URL of https://github.com/binhex/docker-templates in the "Template repositories" field 15 | 3. Click on the "Save" button 16 | 4. Click back to "Docker" tab and then click on the "Add Container" button 17 | 5. Click on the "Template" dropdown menu and select the desired Docker image 18 | 6. Click the "Advanced View" toggle on the top right and fill in required fields e.g. volume data, environment variables etc 19 | 7. Click on the "Create" button at the bottom of the window to begin pulling down the Docker image 20 | 8. Once the image is downloaded you should see it appear in the "Docker Containers" sub-tab 21 | ___ 22 | If you appreciate my work, then please consider buying me a beer :D 23 | 24 | [![PayPal donation](https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=JTSH886FD9UM6) 25 | -------------------------------------------------------------------------------- /binhex/_template.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | binhex-APPNAME 16 | false 17 | CACATEGORY 18 | ghcr.io/binhex/arch-APPNAME 19 | https://github.com/binhex/arch-APPNAME/pkgs/container/arch-APPNAME 20 | bridge 21 | false 22 | false 23 | 24 | bash 25 | https://github.com/binhex/arch-APPNAME 26 | https://github.com/binhex/documentation 27 | https://forums.unraid.net/topic/THREAD/ 28 | PROJECTURL 29 | OVERVIEWTEXT 30 | http://[IP]:[PORT:0000] 31 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/APPNAME.xml 32 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/APPNAME-icon.png 33 | If you appreciate my work, then please consider buying me a beer :D 34 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 35 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 36 | true 37 | 1970-01-01 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /binhex/bitmagnet.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-bitmagnet 4 | false 5 | Downloaders: MediaApp:Video 6 | ghcr.io/binhex/arch-bitmagnet 7 | https://github.com/binhex/arch-bitmagnet/pkgs/container/arch-bitmagnet 8 | bridge 9 | false 10 | false 11 | 12 | bash 13 | https://github.com/binhex/arch-bitmagnet 14 | https://github.com/binhex/documentation 15 | https://forums.unraid.net/topic/174999-support-binhex-bitmagnet 16 | https://github.com/bitmagnet-io/bitmagnet 17 | A self-hosted BitTorrent indexer, DHT crawler, content classifier and torrent search engine with web UI, GraphQL API and Servarr stack integration. 18 | http://[IP]:[PORT:3333] 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/bitmagnet.xml 20 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/bitmagnet-icon.png 21 | If you appreciate my work, then please consider buying me a beer :D 22 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 23 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 24 | 1970-01-01 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /binhex/code-server.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-code-server 4 | false 5 | Cloud: Productivity: Tools:Utilities 6 | ghcr.io/binhex/arch-code-server 7 | https://github.com/binhex/arch-code-server/pkgs/container/arch-code-server 8 | bridge 9 | false 10 | 11 | bash 12 | https://github.com/binhex/arch-code-server 13 | https://github.com/binhex/documentation 14 | https://forums.unraid.net/topic/110282-support-binhex-code-server/ 15 | https://https://github.com/cdr/code-server/ 16 | Code-server is a Visual Studio Code instance running on a remote server accessible through any web browser. It allows you to code anywhere and on any device such as a tablet or laptop with a consistent integrated development environment (IDE). Set up a secure a Linux development machine and get coding on any device with a web browser. Take advantage of a cloud server by offloading the system demanding tasks such as tests, compilations, downloads to another machine. Preserve battery life when you’re on the go or spend your downtime doing something else while the computationally intensive processes are running on your cloud server. 17 | http://[IP]:[PORT:8500] 18 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/code-server.xml 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/code-server-icon.png 20 | If you appreciate my work, then please consider buying me a beer :D 21 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 22 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 23 | 1970-01-01 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /binhex/crafty-4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-crafty-4 4 | false 5 | GameServers: 6 | ghcr.io/binhex/arch-crafty-4 7 | https://github.com/binhex/arch-crafty-4/pkgs/container/arch-crafty-4 8 | bridge 9 | false 10 | 11 | bash 12 | https://github.com/binhex/arch-crafty-4 13 | https://github.com/binhex/documentation 14 | https://forums.unraid.net/topic/124948-support-binhex-crafty-4/ 15 | https://https://craftycontrol.com/ 16 | Crafty Controller is a free and open-source Minecraft launcher and manager that allows users to start and administer Minecraft servers from a user-friendly interface. The interface is run as a self-hosted web server that is accessible to devices on the local network by default and can be port forwarded to provide external access outside of your local network. Crafty is designed to be easy to install and use, requiring only a bit of technical knowledge and a desire to learn to get started. Crafty Controller is still actively being developed by Arcadia Technology and we are continually making major improvements to the software. 17 | http://[IP]:[PORT:8443] 18 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/crafty-4.xml 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/crafty-4-icon.png 20 | If you appreciate my work, then please consider buying me a beer :D 21 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 22 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 23 | 1970-01-01 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /binhex/deluge.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-deluge 4 | false 5 | Downloaders: 6 | ghcr.io/binhex/arch-deluge 7 | https://github.com/binhex/arch-deluge/pkgs/container/arch-deluge 8 | bridge 9 | false 10 | 11 | bash 12 | https://github.com/binhex/arch-deluge 13 | https://github.com/binhex/documentation 14 | https://forums.unraid.net/topic/44117-support-binhex-deluge/ 15 | https://http://deluge-torrent.org/ 16 | Deluge is a full-featured BitTorrent client for Linux, OS X, Unix and Windows. It uses libtorrent in its backend and features multiple user-interfaces including: GTK+, web and console. It has been designed using the client server model with a daemon process that handles all the bittorrent activity. The Deluge daemon is able to run on headless machines with the user-interfaces being able to connect remotely from any platform. 17 | http://[IP]:[PORT:8112] 18 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/deluge.xml 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/deluge-icon.png 20 | If you appreciate my work, then please consider buying me a beer :D 21 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 22 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 23 | 1970-01-01 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /binhex/emby.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-emby 4 | false 5 | MediaApp:Video MediaApp:Music MediaApp:Photos MediaServer:Video MediaServer:Music MediaServer:Photos 6 | ghcr.io/binhex/arch-emby 7 | https://github.com/binhex/arch-emby/pkgs/container/arch-emby 8 | bridge 9 | false 10 | 11 | bash 12 | https://github.com/binhex/arch-emby 13 | https://github.com/binhex/documentation 14 | https://forums.unraid.net/topic/index.php?topic=46382.0/ 15 | https://https://emby.media/ 16 | Bringing all of your home videos, music, and photos together into one place has never been easier. Your personal Emby Server automatically converts and streams your media on-the-fly to play on any device. 17 | http://[IP]:[PORT:8096] 18 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/emby.xml 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/emby-icon.png 20 | If you appreciate my work, then please consider buying me a beer :D 21 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 22 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 23 | 1970-01-01 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /binhex/fdroidserver.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-fdroidserver 4 | false 5 | MediaServer:Other 6 | ghcr.io/binhex/arch-fdroidserver 7 | https://github.com/binhex/arch-fdroidserver/pkgs/container/arch-fdroidserver 8 | bridge 9 | false 10 | 11 | bash 12 | https://github.com/binhex/arch-fdroidserver 13 | https://github.com/binhex/documentation 14 | https://forums.unraid.net/topic/THREAD/ 15 | https://https://github.com/f-droid/fdroidserver/ 16 | fdroidserver is a suite of tools to publish and work with collections of Android apps (APK files) and other kinds of packages. It is used to maintain the f-droid.org application repository. These same tools can be used to create additional or alternative repositories for publishing, or to assist in creating, testing and submitting metadata to the f-droid.org repository, also known as fdroiddata. 17 | 18 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/fdroidserver.xml 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/fdroidserver-icon.png 20 | If you appreciate my work, then please consider buying me a beer :D 21 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 22 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 23 | true 24 | 1970-01-01 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /binhex/flaresolverr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-flaresolverr 4 | false 5 | Downloaders: MediaApp:Video 6 | ghcr.io/binhex/arch-flaresolverr 7 | https://github.com/binhex/arch-flaresolverr/pkgs/container/arch-flaresolverr 8 | bridge 9 | false 10 | 11 | bash 12 | https://github.com/binhex/arch-flaresolverr 13 | https://github.com/binhex/documentation 14 | https://forums.unraid.net/topic/155853-support-binhex-flaresolverr/ 15 | https://github.com/Flaresolverr/Flaresolverr 16 | FlareSolverr starts a proxy server, and it waits for user requests in an idle state using few resources. When some request arrives, it uses Selenium with the undetected-chromedriver to create a web browser (Chrome). It opens the URL with user parameters and waits until the Cloudflare challenge is solved (or timeout). The HTML code and the cookies are sent back to the user, and those cookies can be used to bypass Cloudflare using other HTTP clients. 17 | http://[IP]:[PORT:8191]/v1 18 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/flaresolverr.xml 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/flaresolverr-icon.png 20 | If you appreciate my work, then please consider buying me a beer :D 21 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 22 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 23 | 1970-01-01 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /binhex/fleet.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-fleet 4 | false 5 | Productivity: Tools: 6 | ghcr.io/binhex/arch-fleet 7 | https://github.com/binhex/arch-fleet/pkgs/container/arch-fleet 8 | bridge 9 | false 10 | 11 | bash 12 | https://github.com/binhex/arch-fleet 13 | https://github.com/binhex/documentation 14 | https://forums.unraid.net/topic/169561-support-binhex-fleet/ 15 | https://www.jetbrains.com/fleet/ 16 | Do you enjoy working with different programming languages in the same project? Well, we’ve got you covered! With Fleet, you can start coding in the language of your choice. Fleet is designed to automatically detect your project configuration from the source code, maximizing the value you get from its smart code-processing engine while minimizing the need for project configuration. 17 | https://[IP]:[PORT:6080]/vnc.html?resize=remote&host=[IP]&port=[PORT:6080]&autoconnect=1 18 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/fleet.xml 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/fleet-icon.png 20 | If you appreciate my work, then please consider buying me a beer :D 21 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 22 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 23 | 1970-01-01 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /binhex/get-iplayer.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-get-iplayer 4 | false 5 | MediaApp:Video MediaServer:Video 6 | ghcr.io/binhex/arch-get-iplayer 7 | https://github.com/binhex/arch-get-iplayer/pkgs/container/arch-get-iplayer 8 | bridge 9 | false 10 | 11 | bash 12 | https://github.com/binhex/arch-get-iplayer 13 | https://github.com/binhex/documentation 14 | https://forums.unraid.net/topic/index.php?topic=45838.0/ 15 | https://http://www.infradead.org/get_iplayer/html/get_iplayer.html/ 16 | get_iplayer has PVR-like capabilities (like Sky+ / TiVo / Series-Link); You can save lists of programme searches which are automatically recorded when they become available so that you can watch them when you choose and on devices that cannot run Adobe Flash Player - even if you don't have adequate broadband speeds or if your broadband streams too slowly at peak hours when you want to watch a programme. 17 | 18 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/get-iplayer.xml 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/get-iplayer-icon.png 20 | If you appreciate my work, then please consider buying me a beer :D 21 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 22 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 23 | 1970-01-01 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /binhex/goland.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-goland 4 | false 5 | Productivity: Tools: 6 | ghcr.io/binhex/arch-goland 7 | https://github.com/binhex/arch-goland/pkgs/container/arch-goland 8 | bridge 9 | false 10 | 11 | bash 12 | https://github.com/binhex/arch-goland 13 | https://github.com/binhex/documentation 14 | https://forums.unraid.net/topic/130806-support-binhex-goland/ 15 | https://www.jetbrains.com/go/ 16 | GoLand wouldn't be a true IDE without a rich set of tools which, in addition to core Go development, support JavaScript, TypeScript, NodeJS, SQL, Databases, Docker, Kubernetes, and Terraform. All together, these capabilities make it perfectly equipped for working on any task, be it a modern web application or DevOps tools. 17 | https://[IP]:[PORT:6080]/vnc.html?resize=remote&host=[IP]&port=[PORT:6080]&autoconnect=1 18 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/goland.xml 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/goland-icon.png 20 | If you appreciate my work, then please consider buying me a beer :D 21 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 22 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 23 | 1970-01-01 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /binhex/gonic.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-gonic 4 | false 5 | MediaServer:Music MediaServer:Other 6 | ghcr.io/binhex/arch-gonic 7 | https://github.com/binhex/arch-gonic/pkgs/container/arch-gonic 8 | If you appreciate my work, then please consider buying me a beer :D 9 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 10 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 11 | bridge 12 | false 13 | https://forums.unraid.net/topic/165665-support-binhex-gonic 14 | bash 15 | https://github.com/binhex/arch-gonic 16 | https://github.com/binhex/documentation 17 | https://github.com/sentriz/gonic 18 | Free-software subsonic server API implementation, supporting its many clients. 19 | http://[IP]:[PORT:4747] 20 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/gonic.xml 21 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/gonic-icon.png 22 | 1970-01-01 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /binhex/hexchat.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-hexchat 4 | false 5 | Productivity: Tools: 6 | ghcr.io/binhex/arch-hexchat 7 | https://github.com/binhex/arch-hexchat/pkgs/container/arch-hexchat 8 | bridge 9 | false 10 | 11 | bash 12 | https://github.com/binhex/arch-hexchat 13 | https://github.com/binhex/documentation 14 | https://forums.unraid.net/topic/81397-support-binhex-hexchat/ 15 | https://hexchat.github.io/ 16 | HexChat is an IRC client based on XChat, but unlike XChat it's completely free for both Windows and Unix-like systems. Since XChat is open source, it's perfectly legal. For more info. HexChat was originally called XChat-WDK which in turn was a successor of freakschat. 17 | https://[IP]:[PORT:6080]/vnc.html?resize=remote&host=[IP]&port=[PORT:6080]&autoconnect=1 18 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/hexchat.xml 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/hexchat-icon.png 20 | If you appreciate my work, then please consider buying me a beer :D 21 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 22 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 23 | 1970-01-01 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /binhex/images/archlinux-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/archlinux-icon.png -------------------------------------------------------------------------------- /binhex/images/bitmagnet-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/bitmagnet-icon.png -------------------------------------------------------------------------------- /binhex/images/code-server-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/code-server-icon.png -------------------------------------------------------------------------------- /binhex/images/crafty-4-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/crafty-4-icon.png -------------------------------------------------------------------------------- /binhex/images/deluge-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/deluge-icon.png -------------------------------------------------------------------------------- /binhex/images/emby-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/emby-icon.png -------------------------------------------------------------------------------- /binhex/images/fdroidserver-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/fdroidserver-icon.png -------------------------------------------------------------------------------- /binhex/images/flaresolverr-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/flaresolverr-icon.png -------------------------------------------------------------------------------- /binhex/images/fleet-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/fleet-icon.png -------------------------------------------------------------------------------- /binhex/images/get-iplayer-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/get-iplayer-icon.png -------------------------------------------------------------------------------- /binhex/images/goland-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/goland-icon.png -------------------------------------------------------------------------------- /binhex/images/gonic-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/gonic-icon.png -------------------------------------------------------------------------------- /binhex/images/hexchat-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/hexchat-icon.png -------------------------------------------------------------------------------- /binhex/images/intellij-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/intellij-icon.png -------------------------------------------------------------------------------- /binhex/images/jackett-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/jackett-icon.png -------------------------------------------------------------------------------- /binhex/images/jellyfin-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/jellyfin-icon.png -------------------------------------------------------------------------------- /binhex/images/jellyseerr-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/jellyseerr-icon.png -------------------------------------------------------------------------------- /binhex/images/jenkins-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/jenkins-icon.png -------------------------------------------------------------------------------- /binhex/images/krusader-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/krusader-icon.png -------------------------------------------------------------------------------- /binhex/images/libreoffice-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/libreoffice-icon.png -------------------------------------------------------------------------------- /binhex/images/lidarr-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/lidarr-icon.png -------------------------------------------------------------------------------- /binhex/images/makemkv-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/makemkv-icon.png -------------------------------------------------------------------------------- /binhex/images/medusa-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/medusa-icon.png -------------------------------------------------------------------------------- /binhex/images/minecraftbedrockserver-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/minecraftbedrockserver-icon.png -------------------------------------------------------------------------------- /binhex/images/minecraftserver-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/minecraftserver-icon.png -------------------------------------------------------------------------------- /binhex/images/minidlna-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/minidlna-icon.png -------------------------------------------------------------------------------- /binhex/images/nginx-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/nginx-icon.png -------------------------------------------------------------------------------- /binhex/images/nicotineplus-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/nicotineplus-icon.png -------------------------------------------------------------------------------- /binhex/images/novnc-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/novnc-icon.png -------------------------------------------------------------------------------- /binhex/images/nzbget-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/nzbget-icon.png -------------------------------------------------------------------------------- /binhex/images/nzbhydra2-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/nzbhydra2-icon.png -------------------------------------------------------------------------------- /binhex/images/official-pihole-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/official-pihole-icon.png -------------------------------------------------------------------------------- /binhex/images/official-purgarr-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/official-purgarr-icon.png -------------------------------------------------------------------------------- /binhex/images/overseerr-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/overseerr-icon.png -------------------------------------------------------------------------------- /binhex/images/phpstorm-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/phpstorm-icon.png -------------------------------------------------------------------------------- /binhex/images/plex-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/plex-icon.png -------------------------------------------------------------------------------- /binhex/images/preclear-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/preclear-icon.png -------------------------------------------------------------------------------- /binhex/images/privoxy-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/privoxy-icon.png -------------------------------------------------------------------------------- /binhex/images/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/profile.jpg -------------------------------------------------------------------------------- /binhex/images/prowlarr-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/prowlarr-icon.png -------------------------------------------------------------------------------- /binhex/images/puddletag-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/puddletag-icon.png -------------------------------------------------------------------------------- /binhex/images/pycharm-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/pycharm-icon.png -------------------------------------------------------------------------------- /binhex/images/qbittorrent-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/qbittorrent-icon.png -------------------------------------------------------------------------------- /binhex/images/radarr-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/radarr-icon.png -------------------------------------------------------------------------------- /binhex/images/rclone-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/rclone-icon.png -------------------------------------------------------------------------------- /binhex/images/readarr-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/readarr-icon.png -------------------------------------------------------------------------------- /binhex/images/resilio-sync-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/resilio-sync-icon.png -------------------------------------------------------------------------------- /binhex/images/rider-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/rider-icon.png -------------------------------------------------------------------------------- /binhex/images/rubymine-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/rubymine-icon.png -------------------------------------------------------------------------------- /binhex/images/rustrover-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/rustrover-icon.png -------------------------------------------------------------------------------- /binhex/images/sabnzbd-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/sabnzbd-icon.png -------------------------------------------------------------------------------- /binhex/images/sickchill-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/sickchill-icon.png -------------------------------------------------------------------------------- /binhex/images/siphonator-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/siphonator-icon.png -------------------------------------------------------------------------------- /binhex/images/sonarr-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/sonarr-icon.png -------------------------------------------------------------------------------- /binhex/images/syncthing-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/syncthing-icon.png -------------------------------------------------------------------------------- /binhex/images/tdb-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/tdb-icon.png -------------------------------------------------------------------------------- /binhex/images/teamspeak-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/teamspeak-icon.png -------------------------------------------------------------------------------- /binhex/images/tvheadend-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/tvheadend-icon.png -------------------------------------------------------------------------------- /binhex/images/urbackup-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/urbackup-icon.png -------------------------------------------------------------------------------- /binhex/images/utilities-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/utilities-icon.png -------------------------------------------------------------------------------- /binhex/images/webstorm-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/webstorm-icon.png -------------------------------------------------------------------------------- /binhex/images/windows-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/docker-templates/b9cf97cbcb469635d51064af91a9f9dcb8c2e5ce/binhex/images/windows-icon.png -------------------------------------------------------------------------------- /binhex/intellij.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-intellij 4 | false 5 | Productivity: Tools: 6 | ghcr.io/binhex/arch-intellij 7 | https://github.com/binhex/arch-intellij/pkgs/container/arch-intellij 8 | bridge 9 | false 10 | 11 | bash 12 | https://github.com/binhex/arch-intellij 13 | https://github.com/binhex/documentation 14 | https://forums.unraid.net/topic/62598-support-binhex-intellij/ 15 | https://intellij.github.io/ 16 | IntelliJ IDEA is a special programming environment or integrated development environment (IDE) largely meant for Java. This environment is used especially for the development of programs. It is developed by a company called JetBrains, which was formally called IntelliJ. It is available in two editions: the Community Edition which is licensed by Apache 2.0, and a commercial edition known as the Ultimate Edition. Both of them can be used for creating software which can be sold. What makes IntelliJ IDEA so different from its counterparts is its ease of use, flexibility and its solid design. This Docker Image includes Git for SCM and Scala, Kotlin and Groovy programming languages. 17 | https://[IP]:[PORT:6080]/vnc.html?resize=remote&host=[IP]&port=[PORT:6080]&autoconnect=1 18 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/intellij.xml 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/intellij-icon.png 20 | If you appreciate my work, then please consider buying me a beer :D 21 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 22 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 23 | 1970-01-01 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /binhex/jackett.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-jackett 4 | false 5 | Downloaders: MediaApp:Video 6 | ghcr.io/binhex/arch-jackett 7 | https://github.com/binhex/arch-jackett/pkgs/container/arch-jackett 8 | bridge 9 | false 10 | 11 | bash 12 | https://github.com/binhex/arch-jackett 13 | https://github.com/binhex/documentation 14 | https://forums.unraid.net/topic/61433-support-binhex-jackett/ 15 | https://github.com/Jackett/Jackett/ 16 | Jackett works as a proxy server - it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar, DuckieTV, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. This allows for getting recent uploads (like RSS) and performing searches. Jackett is a single repository of maintained indexer scraping and translation logic - removing the burden from other apps. 17 | http://[IP]:[PORT:9117] 18 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/jackett.xml 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/jackett-icon.png 20 | If you appreciate my work, then please consider buying me a beer :D 21 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 22 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 23 | 1970-01-01 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /binhex/jellyfin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-jellyfin 4 | false 5 | MediaApp:Video MediaApp:Music MediaApp:Photos MediaServer:Video MediaServer:Music MediaServer:Photos 6 | ghcr.io/binhex/arch-jellyfin 7 | https://github.com/binhex/arch-jellyfin/pkgs/container/arch-jellyfin 8 | bridge 9 | false 10 | 11 | bash 12 | https://github.com/binhex/arch-jellyfin 13 | https://github.com/binhex/documentation 14 | https://forums.unraid.net/topic/77506-support-binhex-jellyfin/ 15 | https://github.com/jellyfin/jellyfin/ 16 | Jellyfin is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it. 17 | http://[IP]:[PORT:8096] 18 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/jellyfin.xml 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/jellyfin-icon.png 20 | If you appreciate my work, then please consider buying me a beer :D 21 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 22 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 23 | 1970-01-01 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /binhex/jenkins.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-jenkins 4 | false 5 | Productivity: Tools: 6 | ghcr.io/binhex/arch-jenkins 7 | https://github.com/binhex/arch-jenkins/pkgs/container/arch-jenkins 8 | bridge 9 | true 10 | true 11 | 12 | bash 13 | https://github.com/binhex/arch-jenkins 14 | https://github.com/binhex/documentation 15 | https://forums.unraid.net/topic/44136-support-binhex-jenkins/ 16 | https://jenkins-ci.org/ 17 | Jenkins is an open source continuous integration tool written in Java. The project was forked from Hudson after a dispute with Oracle. Jenkins provides continuous integration services for software development. It is a server-based system running in a servlet container such as Apache Tomcat. 18 | http://[IP]:[PORT:8090] 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/jenkins.xml 20 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/jenkins-icon.png 21 | If you appreciate my work, then please consider buying me a beer :D 22 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 23 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 24 | 1970-01-01 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /binhex/krusader.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-krusader 4 | false 5 | Productivity: Tools: 6 | ghcr.io/binhex/arch-krusader 7 | https://github.com/binhex/arch-krusader/pkgs/container/arch-krusader 8 | bridge 9 | true 10 | true 11 | 12 | bash 13 | https://github.com/binhex/arch-krusader 14 | https://github.com/binhex/documentation 15 | https://forums.unraid.net/topic/71764-support-binhex-krusader/ 16 | https://krusader.org/ 17 | Krusader is an advanced orthodox file manager for KDE and other desktops in the Unix world. It is similar to the console-based GNU Midnight Commander, GNOME Commander for the GNOME desktop environment, or Total Commander for Windows, all of which can trace their paradigmatic features to the original Norton Commander for DOS. It supports extensive archive handling, mounted filesystem support, FTP, advanced search, viewer/editor, directory synchronisation, file content comparisons, batch renaming, etc. 18 | https://[IP]:[PORT:6080]/vnc.html?resize=remote&host=[IP]&port=[PORT:6080]&autoconnect=1 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/krusader.xml 20 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/krusader-icon.png 21 | If you appreciate my work, then please consider buying me a beer :D 22 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 23 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 24 | 1970-01-01 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /binhex/libreoffice.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-libreoffice 4 | false 5 | Productivity: Tools: 6 | ghcr.io/binhex/arch-libreoffice 7 | https://github.com/binhex/arch-libreoffice/pkgs/container/arch-libreoffice 8 | bridge 9 | false 10 | 11 | bash 12 | https://github.com/binhex/arch-libreoffice 13 | https://github.com/binhex/documentation 14 | https://forums.unraid.net/topic/61110-support-binhex-libreoffice-fresh/ 15 | https://www.libreoffice.org/download/libreoffice-fresh/ 16 | LibreOffice is a free and open source office suite, a project of The Document Foundation. It was forked from OpenOffice.org in 2010, which was an open-sourced version of the earlier StarOffice. The LibreOffice suite comprises programs for word processing, the creation and editing of spreadsheets, slideshows, diagrams and drawings, working with databases, and composing mathematical formulae. It is available in 110 languages. 17 | https://[IP]:[PORT:6080]/vnc.html?resize=remote&host=[IP]&port=[PORT:6080]&autoconnect=1 18 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/libreoffice.xml 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/libreoffice-icon.png 20 | If you appreciate my work, then please consider buying me a beer :D 21 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 22 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 23 | 1970-01-01 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /binhex/lidarr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-lidarr 4 | false 5 | Downloaders: MediaApp:Music 6 | ghcr.io/binhex/arch-lidarr 7 | https://github.com/binhex/arch-lidarr/pkgs/container/arch-lidarr 8 | bridge 9 | false 10 | false 11 | 12 | bash 13 | https://github.com/binhex/arch-lidarr 14 | https://github.com/binhex/documentation 15 | https://forums.unraid.net/topic/62284-support-binhex-lidarr/ 16 | https://github.com/lidarr/Lidarr/ 17 | Lidarr is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available. 18 | http://[IP]:[PORT:8686] 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/lidarr.xml 20 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/lidarr-icon.png 21 | If you appreciate my work, then please consider buying me a beer :D 22 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 23 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 24 | 1970-01-01 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /binhex/makemkv.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-makemkv 4 | false 5 | Productivity: Tools: 6 | ghcr.io/binhex/arch-makemkv 7 | https://github.com/binhex/arch-makemkv/pkgs/container/arch-makemkv 8 | bridge 9 | false 10 | 11 | bash 12 | https://github.com/binhex/arch-makemkv 13 | https://github.com/binhex/documentation 14 | https://forums.unraid.net/topic/80994-support-binhex-makemkv/ 15 | https://www.makemkv.com/ 16 | MakeMKV is your one-click solution to convert video that you own into free and patents-unencumbered format that can be played everywhere. MakeMKV is a format converter, otherwise called "transcoder". It converts the video clips from proprietary (and usually encrypted) disc into a set of MKV files, preserving most information but not changing it in any way. The MKV format can store multiple video/audio tracks with all meta-information and preserve chapters. There are many players that can play MKV files nearly on all platforms, and there are tools to convert MKV files to many formats, including DVD and Blu-ray discs. 17 | https://[IP]:[PORT:6080]/vnc.html?resize=remote&host=[IP]&port=[PORT:6080]&autoconnect=1 18 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/makemkv.xml 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/makemkv-icon.png 20 | If you appreciate my work, then please consider buying me a beer :D 21 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 22 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 23 | 1970-01-01 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /binhex/medusa.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-medusa 4 | false 5 | Downloaders: MediaApp:Video 6 | ghcr.io/binhex/arch-medusa 7 | https://github.com/binhex/arch-medusa/pkgs/container/arch-medusa 8 | bridge 9 | false 10 | false 11 | 12 | bash 13 | https://github.com/binhex/arch-medusa 14 | https://github.com/binhex/documentation 15 | https://forums.unraid.net/topic/53738-support-binhex-medusa/ 16 | https://github.com/pymedusa/Medusa/ 17 | Medusa is a Video File Manager for TV Shows, It watches for new episodes of your favorite shows and when they are posted it does its magic. Medusa is currently in beta release stage. There may be severe bugs in it and at any given time it may not work at all. 18 | http://[IP]:[PORT:8081] 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/medusa.xml 20 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/medusa-icon.png 21 | If you appreciate my work, then please consider buying me a beer :D 22 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 23 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 24 | 1970-01-01 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /binhex/minecraftbedrockserver.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-minecraftbedrockserver 4 | false 5 | GameServers: 6 | ghcr.io/binhex/arch-minecraftbedrockserver 7 | https://github.com/binhex/arch-minecraftbedrockserver/pkgs/container/arch-minecraftbedrockserver 8 | bridge 9 | false 10 | false 11 | 12 | bash 13 | https://github.com/binhex/arch-minecraftbedrockserver 14 | https://github.com/binhex/documentation 15 | https://forums.unraid.net/topic/84905-support-binhex-minecraftbedrockserver/ 16 | https://www.minecraft.net/en-us/download/server/bedrock/ 17 | Minecraft is a sandbox video game created by Swedish game developer Markus Persson and released by Mojang in 2011. The game allows players to build with a variety of different blocks in a 3D procedurally generated world, requiring creativity from players. Other activities in the game include exploration, resource gathering, crafting, and combat. Multiple game modes that change gameplay are available, including—but not limited to—a survival mode, in which players must acquire resources to build the world and maintain health, and a creative mode, where players have unlimited resources to build with. 18 | http://[IP]:[PORT:8222] 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/minecraftbedrockserver.xml 20 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/minecraftbedrockserver-icon.png 21 | If you appreciate my work, then please consider buying me a beer :D 22 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 23 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 24 | 1970-01-01 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /binhex/minidlna.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-minidlna 4 | false 5 | MediaServer:Video 6 | ghcr.io/binhex/arch-minidlna 7 | https://github.com/binhex/arch-minidlna/pkgs/container/arch-minidlna 8 | host 9 | false 10 | false 11 | 12 | bash 13 | https://github.com/binhex/arch-minidlna 14 | https://github.com/binhex/documentation 15 | https://forums.unraid.net/topic/index.php?topic=45841.0/ 16 | http://sourceforge.net/projects/minidlna/ 17 | ReadyMedia (formerly known as MiniDLNA) is a simple media server software, with the aim of being fully compliant with DLNA/UPnP-AV clients. It is developed by a NETGEAR employee for the ReadyNAS product line. 18 | 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/minidlna.xml 20 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/minidlna-icon.png 21 | If you appreciate my work, then please consider buying me a beer :D 22 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 23 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 24 | 1970-01-01 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /binhex/nginx.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-nginx 4 | false 5 | Network:Web Network:Proxy 6 | ghcr.io/binhex/arch-nginx 7 | https://github.com/binhex/arch-nginx/pkgs/container/arch-nginx 8 | bridge 9 | false 10 | false 11 | 12 | bash 13 | https://github.com/binhex/arch-nginx 14 | https://github.com/binhex/documentation 15 | https://forums.unraid.net/topic/92101-support-binhex-nginx/ 16 | https://www.nginx.com/ 17 | NGINX is open source software for web serving, reverse proxying, caching, load balancing, media streaming, and more. It started out as a web server designed for maximum performance and stability. In addition to its HTTP server capabilities, NGINX can also function as a proxy server for email (IMAP, POP3, and SMTP) and a reverse proxy and load balancer for HTTP, TCP, and UDP servers. 18 | http://[IP]:[PORT:8080] 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/nginx.xml 20 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/nginx-icon.png 21 | If you appreciate my work, then please consider buying me a beer :D 22 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 23 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 24 | 1970-01-01 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /binhex/nicotineplus.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-nicotineplus 4 | false 5 | Downloaders: 6 | ghcr.io/binhex/arch-nicotineplus 7 | https://github.com/binhex/arch-nicotineplus/pkgs/container/arch-nicotineplus 8 | bridge 9 | true 10 | true 11 | 12 | bash 13 | https://github.com/binhex/arch-nicotineplus 14 | https://github.com/binhex/documentation 15 | https://forums.unraid.net/topic/167779-support-binhex-nicotine/ 16 | https://nicotine-plus.org/ 17 | Nicotine+ is a graphical client for the Soulseek peer-to-peer network. Nicotine+ aims to be a lightweight, pleasant, free and open source (FOSS) alternative to the official Soulseek client, while also providing a comprehensive set of features.Nicotine+ is written in Python and uses GTK for its graphical user interface. 18 | https://[IP]:[PORT:6080]/vnc.html?resize=remote&host=[IP]&port=[PORT:6080]&autoconnect=1 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/nicotineplus.xml 20 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/nicotineplus-icon.png 21 | If you appreciate my work, then please consider buying me a beer :D 22 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 23 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 24 | 1970-01-01 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /binhex/nzbget.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-nzbget 4 | false 5 | Downloaders: 6 | ghcr.io/binhex/arch-nzbget 7 | https://github.com/binhex/arch-nzbget/pkgs/container/arch-nzbget 8 | bridge 9 | false 10 | false 11 | 12 | bash 13 | https://github.com/binhex/arch-nzbget 14 | https://github.com/binhex/documentation 15 | https://forums.unraid.net/topic/index.php?topic=45843.0/ 16 | http://nzbget.net/ 17 | NZBGet is a cross-platform binary newsgrabber for nzb files, written in C++. It supports client/server mode, automatic par-check/-repair, web-interface, command-line interface, etc. NZBGet requires low system resources and runs great on routers, NAS-devices and media players. 18 | http://[IP]:[PORT:6789] 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/nzbget.xml 20 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/nzbget-icon.png 21 | If you appreciate my work, then please consider buying me a beer :D 22 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 23 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 24 | 1970-01-01 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /binhex/nzbhydra2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-nzbhydra2 4 | false 5 | Downloaders: MediaApp:Video 6 | ghcr.io/binhex/arch-nzbhydra2 7 | https://github.com/binhex/arch-nzbhydra2/pkgs/container/arch-nzbhydra2 8 | bridge 9 | false 10 | false 11 | 12 | bash 13 | https://github.com/binhex/arch-nzbhydra2 14 | https://github.com/binhex/documentation 15 | https://forums.unraid.net/topic/64638-support-binhex-nzbhydra2/ 16 | https://github.com/theotherp/nzbhydra2 17 | NZBHydra2 is a meta search for NZB indexers. It provides easy access to a number of raw and newznab based indexers. You can search all your indexers from one place and use it as indexer source for tools like Sonarr or CouchPotato. 18 | http://[IP]:[PORT:5076] 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/nzbhydra2.xml 20 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/nzbhydra2-icon.png 21 | If you appreciate my work, then please consider buying me a beer :D 22 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 23 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 24 | 1970-01-01 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /binhex/official-byparr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-official-byparr 4 | false 5 | Network:Other Other: 6 | ghcr.io/thephaseless/byparr 7 | https://github.com/ThePhaseless/Byparr/pkgs/container/byparr 8 | bridge 9 | false 10 | false 11 | --shm-size=2gb 12 | bash 13 | https://github.com/ThePhaseless/Byparr 14 | https://github.com/ThePhaseless/Byparr/issues 15 | https://github.com/ThePhaseless/Byparr 16 | An alternative to FlareSolverr as a drop-in replacement, built with seleniumbase and FastAPI. 17 | 18 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/official-byparr.xml 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/flaresolverr-icon.png 20 | If you appreciate my work, then please consider buying me a beer :D 21 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 22 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 23 | 1970-01-01 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /binhex/official-docker-registry-proxy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | binhex-official-docker-registry-proxy 13 | false 14 | Other: 15 | rpardini/docker-registry-proxy 16 | https://hub.docker.com/r/rpardini/docker-registry-proxy 17 | bridge 18 | false 19 | false 20 | 21 | bash 22 | https://github.com/rpardini/docker-registry-proxy 23 | https://github.com/rpardini/docker-registry-proxy 24 | https://github.com/rpardini/docker-registry-proxy/issues 25 | https://github.com/rpardini/docker-registry-proxy 26 | A caching proxy for Docker; allows centralised management of (multiple) registries and their authentication; caches images from any registry. Caches the potentially huge blob/layer requests (for bandwidth/time savings), and optionally caches manifest requests ("pulls") to avoid rate-limiting. 27 | 28 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/official-docker-registry-proxy.xml 29 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/official-docker-registry-proxy-icon.png 30 | If you appreciate my work, then please consider buying me a beer :D 31 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 32 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 33 | 1970-01-01 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /binhex/official-pihole.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-official-pihole 4 | false 5 | Network:Other Other: 6 | pihole/pihole 7 | https://hub.docker.com/r/pihole/pihole 8 | bridge 9 | false 10 | false 11 | --cap-add NET_ADMIN 12 | bash 13 | https://github.com/pi-hole/pi-hole 14 | https://github.com/pi-hole/pi-hole/issues 15 | https://pi-hole.net/ 16 | Pi-hole is a Linux network-level advertisement and Internet tracker blocking application which acts as a DNS sinkhole and optionally a DHCP server, intended for use on a private network. It is designed for low-power embedded devices with network capability, such as the Raspberry Pi, but can be installed on almost any Linux machine. Pi-hole has the ability to block traditional website advertisements as well as advertisements in unconventional places, such as smart TVs and mobile operating system advertisements. 17 | http://[IP]:[PORT:8155]/admin 18 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/official-pihole.xml 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/official-pihole-icon.png 20 | If you appreciate my work, then please consider buying me a beer :D 21 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 22 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 23 | 1970-01-01 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /binhex/official-simple-cloudflare-solver.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-official-simple-cloudflare-solver 4 | false 5 | Network:Other Other: 6 | ghcr.io/nlevee/simple-cloudflare-solver:sha-a3cdb8b 7 | https://github.com/nlevee/simple-cloudflare-solver/pkgs/container/simple-cloudflare-solver 8 | bridge 9 | false 10 | false 11 | 12 | bash 13 | https://github.com/nlevee/simple-cloudflare-solver 14 | https://github.com/nlevee/simple-cloudflare-solver/issues 15 | https://github.com/nlevee/simple-cloudflare-solver 16 | simple-cloudflare-solver is an API for bypassing Cloudflare's protection system. It can be used as a gateway by applications like Jackett and Prowlarr to access protected resources. 17 | 18 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/official-simple-cloudflare-solver.xml 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/flaresolverr-icon.png 20 | If you appreciate my work, then please consider buying me a beer :D 21 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 22 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 23 | 1970-01-01 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /binhex/official-windows.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-official-windows 4 | false 5 | Other: 6 | dockurr/windows 7 | https://hub.docker.com/r/dockurr/windows 8 | bridge 9 | false 10 | false 11 | --stop-timeout 120 --device-cgroup-rule='c *:* rwm' --cap-add NET_ADMIN 12 | bash 13 | https://github.com/dockur/windows 14 | https://github.com/dockur/windows/issues 15 | https://github.com/dockur/windows 16 | Windows inside a Docker container. 17 | http://[IP]:[PORT:8006] 18 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/official-windows.xml 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/windows-icon.png 20 | If you appreciate my work, then please consider buying me a beer :D 21 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 22 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 23 | 1970-01-01 24 | 25 | /dev/kvm 26 | /dev/net/tun 27 | /dev/vhost-net 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /binhex/overseerr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-overseerr 4 | false 5 | Downloaders: MediaApp:Video 6 | ghcr.io/binhex/arch-overseerr 7 | https://github.com/binhex/arch-overseerr/pkgs/container/arch-overseerr 8 | bridge 9 | false 10 | 11 | bash 12 | https://github.com/binhex/arch-overseerr 13 | https://github.com/binhex/documentation 14 | https://forums.unraid.net/topic/122509-support-binhex-overseerr/ 15 | https://https://github.com/sct/overseerr/ 16 | Overseerr is a request management and media discovery tool built to work with your existing Plex ecosystem. Overseerr helps you find media you want to watch. With inline recommendations and suggestions, you will find yourself deeper and deeper in a rabbit hole of content you never knew you just had to have. 17 | http://[IP]:[PORT:5055] 18 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/overseerr.xml 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/overseerr-icon.png 20 | If you appreciate my work, then please consider buying me a beer :D 21 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 22 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 23 | 1970-01-01 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /binhex/plex.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-plex 4 | false 5 | MediaApp:Video MediaApp:Music MediaApp:Photos MediaServer:Video MediaServer:Music MediaServer:Photos 6 | ghcr.io/binhex/arch-plex 7 | https://github.com/binhex/arch-plex/pkgs/container/arch-plex 8 | host 9 | false 10 | false 11 | 12 | bash 13 | https://github.com/binhex/arch-plex 14 | https://github.com/binhex/documentation 15 | https://forums.unraid.net/topic/index.php?topic=45844.0/ 16 | https://plex.tv/ 17 | The Plex Media Server enriches your life by organizing all your personal media, presenting it beautifully and streaming it to all of your devices. It's easy to use, it's awesome, and it's free! 18 | http://[IP]:[PORT:32400]/web 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/plex.xml 20 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/plex-icon.png 21 | If you appreciate my work, then please consider buying me a beer :D 22 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 23 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 24 | 1970-01-01 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /binhex/plexpass.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-plexpass 4 | false 5 | MediaApp:Video MediaApp:Music MediaApp:Photos MediaServer:Video MediaServer:Music MediaServer:Photos 6 | ghcr.io/binhex/arch-plexpass 7 | https://github.com/binhex/arch-plexpass/pkgs/container/arch-plexpass 8 | host 9 | false 10 | false 11 | 12 | bash 13 | https://github.com/binhex/arch-plexpass 14 | https://github.com/binhex/documentation 15 | https://forums.unraid.net/topic/index.php?topic=45845.0/ 16 | https://plexpass.tv/ 17 | The plexpass Media Server enriches your life by organizing all your personal media, presenting it beautifully and streaming it to all of your devices. It's easy to use, it's awesome, and it's free! 18 | http://[IP]:[PORT:32400]/web 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/plexpass.xml 20 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/plex-icon.png 21 | If you appreciate my work, then please consider buying me a beer :D 22 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 23 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 24 | 1970-01-01 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /binhex/prowlarr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-prowlarr 4 | false 5 | Downloaders: MediaApp:Video 6 | ghcr.io/binhex/arch-prowlarr 7 | https://github.com/binhex/arch-prowlarr/pkgs/container/arch-prowlarr 8 | bridge 9 | false 10 | false 11 | 12 | bash 13 | https://github.com/binhex/arch-prowlarr 14 | https://github.com/binhex/documentation 15 | https://forums.unraid.net/topic/111682-support-binhex-prowlarr/ 16 | https://github.com/Prowlarr/Prowlarr 17 | Prowlarr is a indexer manager/proxy built on the popular arr .net/reactjs base stack to integrate with your various PVR apps. Prowlarr supports both Torrent Trackers and Usenet Indexers. It integrates seamlessly with Sonarr, Radarr, Lidarr, and Readarr offering complete management of your indexers with no per app Indexer setup required. 18 | http://[IP]:[PORT:9696] 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/prowlarr.xml 20 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/prowlarr-icon.png 21 | If you appreciate my work, then please consider buying me a beer :D 22 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 23 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 24 | 1970-01-01 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /binhex/pycharm.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-pycharm 4 | false 5 | Productivity: Tools: 6 | ghcr.io/binhex/arch-pycharm 7 | https://github.com/binhex/arch-pycharm/pkgs/container/arch-pycharm 8 | bridge 9 | false 10 | 11 | bash 12 | https://github.com/binhex/arch-pycharm 13 | https://github.com/binhex/documentation 14 | https://forums.lime-technology.com/topic/60734-support-binhex-pycharm/ 15 | https://www.jetbrains.com/pycharm/ 16 | PyCharm is an Integrated Development Environment (IDE) used in computer programming, specifically for the Python language. It is developed by the Czech company JetBrains.[2] It provides code analysis, a graphical debugger, an integrated unit tester, integration with version control systems (VCSes), and supports web development with Django. 17 | https://[IP]:[PORT:6080]/vnc.html?resize=remote&host=[IP]&port=[PORT:6080]&autoconnect=1 18 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/pycharm.xml 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/pycharm-icon.png 20 | If you appreciate my work, then please consider buying me a beer :D 21 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 22 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 23 | 1970-01-01 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /binhex/radarr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-radarr 4 | false 5 | Downloaders: MediaApp:Video 6 | ghcr.io/binhex/arch-radarr 7 | https://github.com/binhex/arch-radarr/pkgs/container/arch-radarr 8 | bridge 9 | false 10 | false 11 | 12 | bash 13 | https://github.com/binhex/arch-radarr 14 | https://github.com/binhex/documentation 15 | https://forums.unraid.net/topic/index.php?topic=55549.0/ 16 | https://github.com/Radarr/Radarr 17 | Radarr is a free and open-source movie collection manager. It is actually a fork of Sonarr but for movies— similar to what Couchpotato does. Radarr automatically monitors multiple RSS feeds for new movies and interfaces with Usenet and BitTorrent clients to grab, sort, and rename them. It supports automatic upgrading of the quality of existing files and features full integration with popular download clients and media servers. 18 | http://[IP]:[PORT:7878] 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/radarr.xml 20 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/radarr-icon.png 21 | If you appreciate my work, then please consider buying me a beer :D 22 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 23 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 24 | 1970-01-01 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /binhex/readarr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-readarr 4 | false 5 | Downloaders: MediaApp:Video 6 | ghcr.io/binhex/arch-readarr 7 | https://github.com/binhex/arch-readarr/pkgs/container/arch-readarr 8 | bridge 9 | false 10 | false 11 | 12 | bash 13 | https://github.com/binhex/arch-readarr 14 | https://github.com/binhex/documentation 15 | https://forums.unraid.net/topic/116459-support-binhex-readarr/ 16 | https://github.com/Readarr/Readarr 17 | Readarr is an ebook and audiobook collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new books from your favorite authors and will grab, sort and rename them. Note that only one type of a given book is supported. If you want both an audiobook and ebook of a given book you will need multiple instances. 18 | http://[IP]:[PORT:8787] 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/readarr.xml 20 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/readarr-icon.png 21 | If you appreciate my work, then please consider buying me a beer :D 22 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 23 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 24 | 1970-01-01 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /binhex/resilio-sync.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-resilio-sync 4 | false 5 | Productivity: Tools: Backup: 6 | ghcr.io/binhex/arch-resilio-sync 7 | https://github.com/binhex/arch-resilio-sync/pkgs/container/arch-resilio-sync 8 | bridge 9 | false 10 | false 11 | 12 | bash 13 | https://github.com/binhex/arch-resilio-sync 14 | https://github.com/binhex/documentation 15 | https://forums.unraid.net/topic/103784-support-binhex-resilio-sync/ 16 | https://www.resilio.com/individuals/ 17 | Resilio Sync (formerly BitTorrent Sync) by Resilio, Inc. is a proprietary peer-to-peer file synchronization tool available for Windows, Mac, Linux, Android, iOS, Windows Phone, Amazon Kindle Fire and BSD. It can sync files between devices on a local network, or between remote devices over the Internet via a modified version of the BitTorrent protocol. Although not touted by the developers as an intended direct replacement nor competitor to cloud-based file synchronization services, it has attained much of its publicity in this potential role.This is mainly due to the ability of Resilio Sync to address many of the concerns in existing services relating to file storage limits, privacy, cost, and performance. 18 | http://[IP]:[PORT:8888] 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/resilio-sync.xml 20 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/resilio-sync-icon.png 21 | If you appreciate my work, then please consider buying me a beer :D 22 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 23 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 24 | 1970-01-01 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /binhex/rider.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-rider 4 | false 5 | Productivity: Tools: 6 | ghcr.io/binhex/arch-rider 7 | https://github.com/binhex/arch-rider/pkgs/container/arch-rider 8 | bridge 9 | false 10 | 11 | bash 12 | https://github.com/binhex/arch-rider 13 | https://github.com/binhex/documentation 14 | https://forums.unraid.net/topic/76727-support-binhex-rider/ 15 | https://www.jetbrains.com/rider/ 16 | JetBrains Rider is a cross-platform .NET IDE based on the IntelliJ platform and ReSharper. Rider supports .NET Framework, the new cross-platform .NET Core, and Mono based projects. This lets you develop a wide range of applications including .NET desktop applications, services and libraries, Unity games, Xamarin apps, ASP.NET and ASP.NET Core web applications. 17 | https://[IP]:[PORT:6080]/vnc.html?resize=remote&host=[IP]&port=[PORT:6080]&autoconnect=1 18 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/rider.xml 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/rider-icon.png 20 | If you appreciate my work, then please consider buying me a beer :D 21 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 22 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 23 | 1970-01-01 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /binhex/rustrover.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-rustrover 4 | false 5 | Productivity: Tools: 6 | ghcr.io/binhex/arch-rustrover 7 | https://github.com/binhex/arch-rustrover/pkgs/container/arch-rustrover 8 | bridge 9 | false 10 | false 11 | 12 | bash 13 | https://github.com/binhex/arch-rustrover 14 | https://github.com/binhex/documentation 15 | https://forums.unraid.net/topic/146085-support-binhex-rustrover/ 16 | https://www.jetbrains.com/rust/ 17 | RustRover allows you to write code faster by completing relevant names everywhere in your code, adding details such as missing fields, imports, or trait methods, and generating typical constructs with live templates. While you type, RustRover applies a set of inspections to your code and suggests quick-fixes to resolve any problems automatically. RustRover offers many refactorings that work across the whole codebase. 18 | https://[IP]:[PORT:6080]/vnc.html?resize=remote&host=[IP]&port=[PORT:6080]&autoconnect=1 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/rustrover.xml 20 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/rustrover-icon.png 21 | If you appreciate my work, then please consider buying me a beer :D 22 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 23 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 24 | 1970-01-01 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /binhex/sabnzbd.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-sabnzbd 4 | false 5 | Downloaders: 6 | ghcr.io/binhex/arch-sabnzbd 7 | https://github.com/binhex/arch-sabnzbd/pkgs/container/arch-sabnzbd 8 | bridge 9 | false 10 | false 11 | 12 | bash 13 | https://github.com/binhex/arch-sabnzbd 14 | https://github.com/binhex/documentation 15 | https://forums.unraid.net/topic/index.php?topic=45821.0/ 16 | http://sabnzbd.org/ 17 | SABnzbd is an Open Source Binary Newsreader written in Python. SABnzbd makes Usenet as simple and streamlined as possible by automating everything we can. All you have to do is add an .nzb. SABnzbd takes over from there, where it will be automatically downloaded, verified, repaired, extracted and filed away with zero human interaction. 18 | http://[IP]:[PORT:8080] 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/sabnzbd.xml 20 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/sabnzbd-icon.png 21 | If you appreciate my work, then please consider buying me a beer :D 22 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 23 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 24 | 1970-01-01 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /binhex/sickchill.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-sickchill 4 | false 5 | Downloaders: MediaApp:Video 6 | ghcr.io/binhex/arch-sickchill 7 | https://github.com/binhex/arch-sickchill/pkgs/container/arch-sickchill 8 | bridge 9 | false 10 | false 11 | 12 | bash 13 | https://github.com/binhex/arch-sickchill 14 | https://github.com/binhex/documentation 15 | https://forums.unraid.net/topic/74912-support-binhex-sickchill/ 16 | https://github.com/SickChill/SickChill 17 | SickChill is a Video File Manager for TV Shows, It watches for new episodes of your favorite shows and when they are posted it does its magic. SickChill is currently in beta release stage. There may be severe bugs in it and at any given time it may not work at all. 18 | http://[IP]:[PORT:8081] 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/sickchill.xml 20 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/sickchill-icon.png 21 | If you appreciate my work, then please consider buying me a beer :D 22 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 23 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 24 | 1970-01-01 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /binhex/siphonator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | binhex-siphonator 5 | false 6 | Downloaders: MediaApp:Video 7 | ghcr.io/binhex/arch-siphonator 8 | https://github.com/binhex/arch-siphonator/pkgs/container/arch-siphonator 9 | bridge 10 | false 11 | false 12 | 13 | bash 14 | https://github.com/binhex/arch-siphonator 15 | https://github.com/binhex/documentation 16 | https://forums.unraid.net/topic/THREAD/ 17 | https://github.com/binhex/siphonator 18 | Siphonator is a command line tool written in Python, designed to streamline the process of discovering and acquiring movies based on precise user-defined criteria, leveraging the extensive IMDb database. Users can construct complex filters to pinpoint films matching their specific preferences, automating the download process through integration with a torrent client. 19 | 20 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/siphonator.xml 21 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/siphonator-icon.png 22 | If you appreciate my work, then please consider buying me a beer :D 23 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 24 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 25 | true 26 | 1970-01-01 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /binhex/sonarr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-sonarr 4 | false 5 | Downloaders: MediaApp:Video 6 | ghcr.io/binhex/arch-sonarr 7 | https://github.com/binhex/arch-sonarr/pkgs/container/arch-sonarr 8 | bridge 9 | false 10 | false 11 | 12 | bash 13 | https://github.com/binhex/arch-sonarr 14 | https://github.com/binhex/documentation 15 | https://forums.unraid.net/topic/index.php?topic=45848.0/ 16 | https://sonarr.tv/ 17 | Sonarr is a PVR for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available. 18 | http://[IP]:[PORT:8989] 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/sonarr.xml 20 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/sonarr-icon.png 21 | If you appreciate my work, then please consider buying me a beer :D 22 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 23 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 24 | 1970-01-01 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /binhex/syncthing.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-syncthing 4 | false 5 | Productivity: Tools: Backup: 6 | ghcr.io/binhex/arch-syncthing 7 | https://github.com/binhex/arch-syncthing/pkgs/container/arch-syncthing 8 | bridge 9 | false 10 | false 11 | 12 | bash 13 | https://github.com/binhex/arch-syncthing 14 | https://github.com/binhex/documentation 15 | https://forums.unraid.net/topic/103137-support-binhex-syncthing/ 16 | https://syncthing.net/ 17 | Syncthing is a continuous file synchronization program. It synchronizes files between two or more computers in real time, safely protected from prying eyes. Your data is your data alone and you deserve to choose where it is stored, whether it is shared with some third party, and how it's transmitted over the internet. 18 | http://[IP]:[PORT:8384] 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/syncthing.xml 20 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/syncthing-icon.png 21 | If you appreciate my work, then please consider buying me a beer :D 22 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 23 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 24 | 1970-01-01 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /binhex/teamspeak.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-teamspeak 4 | false 5 | Network:Voip 6 | ghcr.io/binhex/arch-teamspeak 7 | https://github.com/binhex/arch-teamspeak/pkgs/container/arch-teamspeak 8 | bridge 9 | false 10 | false 11 | 12 | bash 13 | https://github.com/binhex/arch-teamspeak 14 | https://github.com/binhex/documentation 15 | https://forums.unraid.net/topic/index.php?topic=45849.0/ 16 | https://www.teamspeak.com/en/ 17 | TeamSpeak is proprietary voice-over-Internet Protocol (VoIP) software that allows computer users to speak on a chat channel with fellow computer users, much like a telephone conference call. A TeamSpeak user will often wear a headset with an integrated microphone. Users use the TeamSpeak client software to connect to a TeamSpeak server of their choice, from there they can join chat channels and discuss things. 18 | 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/teamspeak.xml 20 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/teamspeak-icon.png 21 | If you appreciate my work, then please consider buying me a beer :D 22 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 23 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 24 | 1970-01-01 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /binhex/tvheadend.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-tvheadend 4 | false 5 | MediaApp:Video MediaApp:Music MediaApp:Photos MediaServer:Video MediaServer:Music MediaServer:Photos 6 | ghcr.io/binhex/arch-tvheadend 7 | https://github.com/binhex/arch-tvheadend/pkgs/container/arch-tvheadend 8 | bridge 9 | false 10 | false 11 | --device=/dev/tuner-type 12 | bash 13 | https://github.com/binhex/arch-tvheadend 14 | https://github.com/binhex/documentation 15 | https://forums.unraid.net/topic/index.php?topic=46575.0/ 16 | https://tvheadend.org/ 17 | Tvheadend is a TV streaming server and recorder for Linux, FreeBSD and Android supporting DVB-S, DVB-S2, DVB-C, DVB-T, ATSC, ISDB-T, IPTV, SAT>IP and HDHomeRun as input sources. Tvheadend offers the HTTP (VLC, MPlayer), HTSP (Kodi, Movian) and SAT>IP streaming. Multiple EPG sources are supported (over-the-air DVB and ATSC including OpenTV DVB extensions, XMLTV, PyXML). 18 | http://[IP]:[PORT:9981] 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/tvheadend.xml 20 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/tvheadend-icon.png 21 | If you appreciate my work, then please consider buying me a beer :D 22 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 23 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 24 | 1970-01-01 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /binhex/urbackup.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-urbackup 4 | false 5 | Productivity: Tools: Backup: 6 | ghcr.io/binhex/arch-urbackup 7 | https://github.com/binhex/arch-urbackup/pkgs/container/arch-urbackup 8 | bridge 9 | false 10 | false 11 | 12 | bash 13 | https://github.com/binhex/arch-urbackup 14 | https://github.com/binhex/documentation 15 | https://forums.unraid.net/topic/82198-support-binhex-urbackup/ 16 | https://urbackup.org/ 17 | UrBackup is an easy to setup Open Source client/server backup system, that through a combination of image and file backups accomplishes both data safety and a fast restoration time. File and image backups are made while the system is running without interrupting current processes. UrBackup also continuously watches folders you want backed up in order to quickly find differences to previous backups. Because of that, incremental file backups are really fast. Your files can be restored through the web interface, via the client or the Windows Explorer while the backups of drive volumes can be restored with a bootable CD or USB-Stick (bare metal restore). A web interface makes setting up your own backup server really easy. 18 | http://[IP]:[PORT:55414] 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/urbackup.xml 20 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/urbackup-icon.png 21 | If you appreciate my work, then please consider buying me a beer :D 22 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 23 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 24 | 1970-01-01 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /binhex/webstorm.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | binhex-webstorm 4 | false 5 | Productivity: Tools: 6 | ghcr.io/binhex/arch-webstorm 7 | https://github.com/binhex/arch-webstorm/pkgs/container/arch-webstorm 8 | bridge 9 | false 10 | 11 | bash 12 | https://github.com/binhex/arch-webstorm 13 | https://github.com/binhex/documentation 14 | https://forums.unraid.net/topic/169562-support-binhex-webstorm/ 15 | https://www.jetbrains.com/webstorm/ 16 | Get straight to coding without having to install and configure lots of plugins. WebStorm includes everything you need for JavaScript and TypeScript development right from the start. You can personalize it further with various plugins and settings. 17 | https://[IP]:[PORT:6080]/vnc.html?resize=remote&host=[IP]&port=[PORT:6080]&autoconnect=1 18 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/webstorm.xml 19 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/webstorm-icon.png 20 | If you appreciate my work, then please consider buying me a beer :D 21 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 22 | https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif 23 | 1970-01-01 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /ca_profile.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/profile.jpg 4 | 5 | Producing Docker Images with Arch Linux base OS, the main philosophy here is to produce Docker Images that are up to date with the latest stable release (no beta's where possible) to minimize any coding related issues. 6 | 7 | https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4 8 | If you appreciate my work, then please consider buying me a beer :D 9 | --------------------------------------------------------------------------------