FlexGet in a Docker container, with config in a volume and configurable UID/GID
50K+
FlexGet in a Docker container, with configuration in a volume, and a configurable UID/GID for said files.
Pull the latest image from Docker Hub:
docker pull wastrachan/flexget
Clone this repository, and run make build to build an image:
git clone https://github.com/wastrachan/docker-flexget
cd docker-flexget
make build
If you need to rebuild the image, run make clean build.
Run this image with the make run shortcut, or manually with docker run.
docker run -v "$(pwd)/config:/config" \
--name flexget \
-e PUID=1111 \
-e PGID=1112 \
-e TZ=US/Eastern \
--restart unless-stopped \
wastrachan/flexget:latest
If you wish to run this image with docker-compose, an example docker-compose.yml might read as follows:
---
version: "2"
services:
flexget:
image: wastrachan/flexget
container_name: flexget
environment:
- PUID=1111
- PGID=1112
volumes:
- </path/to/config>:/config
restart: unless-stopped
Configuration files are stored in the /config volume. You may wish to mount this volume as a local directory, as shown in the examples above.
The main config file for FlexGet is config.yml, and will be created automatically if the container is started without a config file present. Please review the FlexGet docs for more information.
If you'd like to override the UID and GID of the flexget process, you can do so with the environment variables PUID and PGID. This is helpful if other containers must access your configuration volume.
The timezone the container uses defaults to UTC, and can be overridden with the TZ environment variable.
| Volume | Description |
|---|---|
/config | Configuration directory |
The content of this project itself is licensed under the MIT License.
View license information for the software contained in this image.
Content type
Image
Digest
sha256:348a60b12…
Size
123.5 MB
Last updated
about 3 years ago
docker pull wastrachan/flexget