This is a Dockerfile for the lucansnz version of pyTivo
There isn't really any installation, but you need to have Docker installed. Consult the official Docker documentation for full details, but see below for Ubuntu 14.04.
To install Docker on a fresh install of Ubuntu 14.04 Server:
sudo su -
[ -e /usr/lib/apt/methods/https ] || { apt-get update; \
apt-get install apt-transport-https; }
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9
echo deb https://get.docker.com/ubuntu docker main > /etc/apt/sources.list.d/docker.list
apt-get update
apt-get upgrade
apt-get install lxc-docker
The first run will pull the container image down to your local machine.
If you have a copy of pyTivo.conf you'd like to use, place it in the directory at /path/to/config as below before starting. If you don't have one, no worries! A default one will be created for you.
For maximum flexibility on file transfers, run the containter in host mode:
docker run -d --restart=always --net="host" --name="pytivo" -v /net/je-nas/c/media:/media \
-v /home/justintime/pytivo:/config -v /etc/localtime:/etc/localtime:ro justintime/pytivo
If you don't need to push files (see below), you can use bridge mode:
docker run -p 9032:9032 -p 2190:2190/udp -d --restart=always -h pytivo --name="pytivo" -v /net/je-nas/c/media:/media \
-v /home/justintime/pytivo:/config -v /etc/localtime:/etc/localtime:ro justintime/pytivo
If you already had a pyTivo.conf file, you're done! If not, follow these steps:
For additional help on the settings, see: http://pytivo.sourceforge.net/wiki/index.php/Configure_pyTivo
Not sure how to find your Tivo Mak? See http://lmgtfy.com/?q=what+is+my+tivo+mak
You have three options for transferring files:
There are other pros and cons of each, for more info see http://lmgtfy.com/?q=pytivo+push+vs+pull
Content type
Image
Digest
sha256:717fc9610…
Size
161.3 MB
Last updated
almost 11 years ago
docker pull justintime/pytivo