flexget latest using lightweight Alpine Linux container (official)
450
Run flexget from a docker container
Key features of this repository:
To use this package you must ensure the following:
git clone https://github.com/hobbsAU/docker-flexget.git
cd docker-flexget
make run
docker pull hobbsau/flexget
$ make run
$ make stop
$ make start
$ make clean
$ make build
First let's setup the data container that will map the config directory from the host to the container as well as the output directory. This container will provide persistent storage.
$ docker create \
--name flexget-data \
-v <hostdir>:/config \
-v <hostdir>:/mnt \
hobbsau/flexget \
/bin/true
Example using my host and the /srv/flexget location on my host:
$ sudo docker create --name flexget-data -v /srv/flexget/config:/config -v /srv/flexget/mnt:/mnt hobbsau/flexget
Next we run the flexget-service and this will automatically map the volumes within the new container.
$ docker run -d \
--restart=always \
--volumes-from flexget-data \
--name flexget-service \
hobbsau/flexget
You should see two new containers in the docker listing:
$ docker ps -a
The source repo is linked to dockerhub using autobuild. Any push to this repo will auto-update the docker image on docker hub.
Content type
Image
Digest
Size
55.8 MB
Last updated
over 7 years ago
docker pull hobbsau/flexget