{"id":38429413,"url":"https://github.com/manbearwiz/flexget-dockerfile","last_synced_at":"2026-01-17T04:23:03.594Z","repository":{"id":22758676,"uuid":"26104258","full_name":"manbearwiz/flexget-dockerfile","owner":"manbearwiz","description":"Flexget Dockerfile for automated Docker builds","archived":false,"fork":false,"pushed_at":"2024-10-29T11:42:05.000Z","size":36,"stargazers_count":2,"open_issues_count":4,"forks_count":8,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-14T17:22:26.144Z","etag":null,"topics":["docker","docker-compose","docker-image","flexget","scheduling"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/manbearwiz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2014-11-03T04:49:56.000Z","updated_at":"2024-07-25T05:02:11.000Z","dependencies_parsed_at":"2022-08-21T11:00:45.305Z","dependency_job_id":"b4632ee6-cac9-446d-b722-39604ff74c72","html_url":"https://github.com/manbearwiz/flexget-dockerfile","commit_stats":null,"previous_names":["kmb32123/flexget-dockerfile"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/manbearwiz/flexget-dockerfile","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manbearwiz%2Fflexget-dockerfile","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manbearwiz%2Fflexget-dockerfile/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manbearwiz%2Fflexget-dockerfile/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manbearwiz%2Fflexget-dockerfile/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/manbearwiz","download_url":"https://codeload.github.com/manbearwiz/flexget-dockerfile/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manbearwiz%2Fflexget-dockerfile/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28494822,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T02:39:23.645Z","status":"ssl_error","status_checked_at":"2026-01-17T02:34:19.649Z","response_time":85,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","docker-compose","docker-image","flexget","scheduling"],"created_at":"2026-01-17T04:23:03.475Z","updated_at":"2026-01-17T04:23:03.575Z","avatar_url":"https://github.com/manbearwiz.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Docker Stars Shield](https://img.shields.io/docker/stars/kmb32123/flexget-dockerfile.svg?style=flat-square)\n![Docker Pulls Shield](https://img.shields.io/docker/pulls/kmb32123/flexget-dockerfile.svg?style=flat-square)\n![License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)\n\n# flexget-dockerfile\n\nFlexget Dockerfile for automated Docker builds.\n\n# What is Flexget?\n\nFrom [Flexget](https://flexget.com/):\n\n\u003eFlexGet is a multipurpose automation tool for all of your media.\n\u003e\n\u003eSupport for torrents, nzbs, podcasts, comics, TV, movies, RSS, HTML, CSV, and more.\n\n# How to use this image\n\n## Run on host networking\n\nThis example uses host networking for simplicity. Also note the `-v` arguments. This image will expect the `flexget` directory to contain a valid [`config.yml`](http://flexget.com/wiki/Cookbook). Flexget will also use this directory for storing the resulting database and log file. The other directories, `input` and `output` are essentially working directories for Flexget. The intention is that the `input` directory is where files are downloaded to (from transmission, youtube-dl, etc) and the `output` directory is where the sorted and renamed files will be moved to; however, this can all be changed via the Flexget configuration file.\n\n```shell\nsudo docker run -d --net=\"host\" --name flexget -v /home/kevin/flexget:/flexget -v /home/kevin/Downloads:/input -v /home/kevin/media:/output kmb32123/flexget-dockerfile\n```\n\n## Configuration\n\nBecause of the way the volumes are attached to the host, paths can be very simple. An example of a task configuration that sorts tv episode looks like so:\n\n```yml\nsort-tvseries:\n  find:\n    path: /input/tv\n    regexp: '.*\\.(mkv|mp4)$'\n    recursive: yes\n  template: tv\n  move:\n    to: /output/video/tv/{{series_name}}/Season {{series_season|pad(2)}}\n    filename: 'S{{series_season|pad(2)}} E{{series_episode|pad(2)}} {{tvdb_ep_name}}'\n```\n\n## View log information\n\nTo monitor the flexget logs (highly recommended) simply run:\n\n```shell\nsudo docker logs -f flexget\n```\n\n## Run out of schedule\n\nSometimes you don't want to wait for the flexget process to kick on from the scheduler. In these cases you can simply enter:\n\n```shell\nsudo docker exec -it flexget flexget execute\n```\n\nNote the first `flexget` is the container name, and the second is the CLI command. This will run all tasks regardless of scheduling.\n\n# Implementation\n\nThis image is based on [`python:2-onbuild`](https://registry.hub.docker.com/_/python/) and consequently [`debian:jessie`](https://registry.hub.docker.com/u/library/debian/).\n\nAs of now, the version of Flexget installed will soley depend on the latest version available in the [Python Package Index](https://pypi.python.org/pypi/FlexGet). I may change this in the future to [manually install](https://github.com/Flexget/Flexget#how-to-use-git-checkout) from [flexget:master](https://github.com/Flexget/Flexget) but for right now this suites my needs.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanbearwiz%2Fflexget-dockerfile","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmanbearwiz%2Fflexget-dockerfile","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanbearwiz%2Fflexget-dockerfile/lists"}