Docker + HTPC Manager on SolusOS

HTPC Manager combines all your favorite services running on your server in a beautiful interface that offers you a lot of useful information. It shows the latest downloads, latest TV Shows, Latest Movies, HDD usage and future TV Shows keeping you up to date with your media.

sudo docker pull linuxserver/htpcmanager

Next we will configure our docker, Setting up the port and folders and our timezone, To find out your timezone visit http://www.timezoneconverter.com/cgi-bin/findzone.tzc

sudo docker create --name=htpcmanager \
--restart=always \
-v /home/docker/htpcmanager/config:/config \
-e PGID=1001 -e PUID=1001 \
-e TZ=TIMEZONE_CODE_HERE \
-p 8085:8085 \
linuxserver/htpcmanager
sudo docker start htpcmanager

Now your all set and ready to configure HTPC Manager

http://localhost:8085

Leave a comment