Pull the image from the docker index. This is the recommended method of installation as it is easier to update image. These builds are performed by the Docker Trusted Build service.
docker pull ninux/flexget:<stable_version>
You can also pull the latest tag which is built from the repository HEAD
docker pull ninux/flexget:latest
Alternately you can build the image locally.
git clone https://github.com/ninuxhub/docker-flexget.git
cd docker-flexget
docker build --tag="$USER/flexget" .
You can launch the image using the docker command line,
docker run --rm -it \
-v $HOME/Desktop/flexget:/root/.flexget \
-v $HOME/Download:/download \
-e TRAKT=YES -e TRAKT_USER=$USER ninux/flexget:1
Default value of rss feed is http://rss.bt-chat.com/?group=3
You can overide si value with RSS variable
Frenchtorrentdb is a private torrent tracker.
docker run --rm -it \
-v $HOME/Desktop/flexget:/root/.flexget \
-v $HOME/Download:/download \
-e FTDB=YES -e RSS=http://www.frenchtorrentdb.com/rss/****YOUR_PERSONAL_TOKEN_HERE****/tv_hd_vostfr.rss \
-e TRAKT=YES -e TRAKT_USER=$USER ninux/flexget:1
Please refer the docker run command options for the --env-file flag where you can specify all required environment variables in a single file. This will save you from writing a potentially long docker run command. Alternately you can use fig.
Below is the complete list of available options that can be used to customize your flexget installation.
If you find this image useful here's how you can help:
Content type
Image
Digest
sha256:65a14516d…
Size
301.4 MB
Last updated
almost 11 years ago
docker pull ninux/flexget