Git Product home page Git Product logo

docker-flexget's Introduction

docker-flexget

Docker image for running flexget

Container features are

  • lsiobase/alpine
  • pre-installed dependencies for plugins
    • telegram
    • cfscraper
    • convert_magnet
    • decompress
    • transmission
    • deluge
    • irc

Usage

docker run

docker run -d \
    --name=<container name> \
    -p 5050:5050 \
    -v <path for data files>:/data \
    -v <path for config files>:/config \
    -e FG_WEBUI_PASSWD=<desired password> \
    -e FG_LOG_LEVEL=info \
    -e FG_LOG_FILE=flexget.log \
    -e PUID=<UID for user> \
    -e PGID=<GID for user> \
    -e TZ=<timezone> \
    wiserain/flexget

docker-compose

version: "3"
services:
  flexget:
    image: wiserain/flexget
    container_name: <container name>
    environment:
      - FG_WEBUI_PASSWD=<desired password>
      - FG_LOG_LEVEL=info
      - FG_LOG_FILE=flexget.log
      - PUID=<UID for user>
      - PGID=<GID for user>
    ports :
      - 5050:5050
    volumes:
      - <path for data files>:/data
      - <path for config files>:/config
    restart: on-failure:5 

Most importantly, secure webui using FG_WEBUI_PASSWD.

Additional packages

If there are additional packages you may want to install, create bash script with any name under /config/custom-cont-init.d, for example,

#!/usr/bin/with-contenv bash
apk add -q --no-cache <alpine pkgs>
pip install <python pkgs>

Then, it will run every container start.

Custom plugins

You can install custom plugins by FG_PLUGINS="{plugin_name_1} {plugin_name_2}" whose value is a space-separated list of plugin names. Currently available ones are

  • write_magnet: Mostly same as built-in convert_magnet but expect better performance and improved error handling, which is compatible with a version of libtorrent containerized in this image.

docker-flexget's People

Contributors

dependabot[bot] avatar einverne avatar hinatakato avatar jimeh avatar kujyp avatar newfolk avatar nolooseends avatar sarbian avatar superjc710e avatar thde avatar wiserain avatar zankevich avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.