Mediabox is an all Docker Container based media aggregator stack.
Components include:
- Bazarr subtitle manager
- Couchpotato movie library manager
- Deluge torrent client (using VPN)
- Dozzle realtime log viewer
- Duplicati Backup Software
- Emby Open Media Solution
- Filebrowser Web-Based File Manager
- Flaresolverr proxy server to bypass Cloudflare protection (Used with Jackett)
- Glances system monitoring
- Headphones automated music downloader
- Homer - Server Home Page
- Homer Icons - Icons for Homer
- Jackett Tracker API and Proxy
- Jellyfin Free Software Media System
- Lidarr Music collection manager
- Maintainerr library management system
- MeTube Web GUI for youtube-dl
- Minio cloud storage
- NetData System Monitoring
- NZBGet Usenet Downloader
- NZBHydra2 Meta Search
- Ombi media assistant
- Seerr Media Library Request Management
- Plex media server
- Portainer Docker Container manager
- Prowlarr indexer manager/proxy
- Radarr movie library manager
- Requestrr Chatbot for Sonarr/Radarr/Ombi
- SABnzbd Usenet download tool
- SickChill TV library manager
- Sonarr TV library manager
- Speedtest - Tracker
- SQLitebrowser DB browser for SQLite
- Tautulli Plex Media Server monitor
- Tdarr Distributed Transcoding System
- TubeSync - YouTube PVR
- Watchtower Automatic container updater
- Ubuntu 24.04 LTS
- VPN account from Private internet Access (Please see binhex's Github Repo if you want to use a different VPN)
- Git
- Docker
- Docker-Compose
For simplicity's sake (eg. automatic dependency management), the method used to install these packages is Ubuntu's default package manager, APT. There are several other methods that work just as well, if not better (especially if you don't have superuser access on your system), so use whichever method you prefer. Continue when you've successfully installed all packages listed.
(You'll need superuser access to run these commands successfully)
sudo apt update && sudo apt full-upgradesudo apt install -y curl git bridge-utils whiptailsudo apt remove -y docker docker-engine docker.io containerd runc
sudo snap remove dockersudo install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
sudo chmod a+r /etc/apt/keyrings/docker.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] \
https://download.docker.com/linux/ubuntu $(. /etc/os-release && echo $VERSION_CODENAME) stable" \
| sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt update
sudo apt install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-pluginVerify:
docker --version
docker compose versionsudo usermod -aG docker $USER
newgrp dockersudo /sbin/modprobe iptable_mangle
echo iptable_mangle | sudo tee -a /etc/modulessudo rebootOnce the prerequisites are all taken care of you can move forward with using mediabox.
git clone https://github.com/jamesvthompson/mediabox.git
cd mediabox# Run the Mediabox setup script (collects .env and prepares compose)
./mediabox.sh- Plex tag: set
PMSTAGin.env(e.g.,publicorplexpass). Example image:image: plexinc/pms-docker:${PMSTAG:-public} - If you change image tags, test them directly first:
As the script runs you will be prompted for:
-
Your Private Internet Access credentials
- username
- password
-
The version of Plex you want to run
- latest
- public
- plexpass
Note: If you choose plexpass as your version you may optionally specify CLAIM_TOKEN - you can get your claim token by logging in at plex.tv/claim
-
Credentials for the NBZGet interface and the Deluge daemon which needed for the CouchPotato container.
- username
- password
Upon completion, the script will launch your mediabox containers.
Portainer has been switched to the CE branch
- A Password will now be required - the password can be set at initial login to Portiner.
- Initial Username The initial username for Portainer is admin
Thanks go out to:
If you enjoy the project -- Fuel it with some caffeine :)
THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
MIT License
Copyright (c) 2017 Tom Morgan
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.