mirror of
https://github.com/linuxserver/docker-flexget.git
synced 2026-06-03 09:57:36 +00:00
Compare commits
50
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b10dca5863 | ||
|
|
43f124e323 | ||
|
|
d207db9c58 | ||
|
|
78c4ff8006 | ||
|
|
809d55725c | ||
|
|
f6f94a0165 | ||
|
|
fcfc023325 | ||
|
|
7a8a849c57 | ||
|
|
416839a05f | ||
|
|
e6d2e12bf1 | ||
|
|
be8bc847cb | ||
|
|
10c9f62d63 | ||
|
|
30eea04d07 | ||
|
|
95dba1da00 | ||
|
|
a978f2c412 | ||
|
|
a30f8174ce | ||
|
|
5f0f9b43d4 | ||
|
|
c1dd4b7ade | ||
|
|
ebab1894d9 | ||
|
|
8370bd1ed7 | ||
|
|
0801c345dc | ||
|
|
ed9a88fcf4 | ||
|
|
39a6d79f6b | ||
|
|
ce827fb0e3 | ||
|
|
d26ab76118 | ||
|
|
6abd0f4d8f | ||
|
|
161e1853bf | ||
|
|
df6357089a | ||
|
|
22561580e2 | ||
|
|
0e31103657 | ||
|
|
6df317ac40 | ||
|
|
a36ef59629 | ||
|
|
a249d5cb0f | ||
|
|
9dcb6db2f8 | ||
|
|
0a55cfe085 | ||
|
|
489502c496 | ||
|
|
df59ebb3b3 | ||
|
|
1c33490318 | ||
|
|
6d9fc56ff8 | ||
|
|
8f250328a4 | ||
|
|
2ca523aab8 | ||
|
|
6b4b50a9cd | ||
|
|
b17f83edd7 | ||
|
|
3c88b4d44b | ||
|
|
f073d04e63 | ||
|
|
7de3bd4ae9 | ||
|
|
ec923e9963 | ||
|
|
efcabb3fe8 | ||
|
|
b92e513d3c | ||
|
|
afb3cf426f |
@@ -6,7 +6,7 @@
|
||||
* Read, and fill the Pull Request template
|
||||
* If this is a fix for a typo (in code, documentation, or the README) please file an issue and let us sort it out. We do not need a PR
|
||||
* If the PR is addressing an existing issue include, closes #\<issue number>, in the body of the PR commit message
|
||||
* If you want to discuss changes, you can also bring it up in [#dev-talk](https://discordapp.com/channels/354974912613449730/757585807061155840) in our [Discord server](https://discord.gg/YWrKVTn)
|
||||
* If you want to discuss changes, you can also bring it up in [#dev-talk](https://discordapp.com/channels/354974912613449730/757585807061155840) in our [Discord server](https://linuxserver.io/discord)
|
||||
|
||||
## Common files
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
blank_issues_enabled: false
|
||||
contact_links:
|
||||
- name: Discord chat support
|
||||
url: https://discord.gg/YWrKVTn
|
||||
url: https://linuxserver.io/discord
|
||||
about: Realtime support / chat with the community and the team.
|
||||
|
||||
- name: Discourse discussion forum
|
||||
|
||||
@@ -15,7 +15,10 @@ jobs:
|
||||
SKIP_EXTERNAL_TRIGGER: ${{ vars.SKIP_EXTERNAL_TRIGGER }}
|
||||
run: |
|
||||
printf "# External trigger for docker-flexget\n\n" >> $GITHUB_STEP_SUMMARY
|
||||
if grep -q "^flexget_main" <<< "${SKIP_EXTERNAL_TRIGGER}"; then
|
||||
if grep -q "^flexget_main_" <<< "${SKIP_EXTERNAL_TRIGGER}"; then
|
||||
echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY
|
||||
echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` contains \`flexget_main_\`; will skip trigger if version matches." >> $GITHUB_STEP_SUMMARY
|
||||
elif grep -q "^flexget_main" <<< "${SKIP_EXTERNAL_TRIGGER}"; then
|
||||
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
|
||||
echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` contains \`flexget_main\`; skipping trigger." >> $GITHUB_STEP_SUMMARY
|
||||
exit 0
|
||||
@@ -25,6 +28,11 @@ jobs:
|
||||
printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY
|
||||
EXT_RELEASE=$(curl -u "${{ secrets.CR_USER }}:${{ secrets.CR_PAT }}" -sX GET "https://api.github.com/repos/flexget/flexget/releases/latest" | jq -r '. | .tag_name')
|
||||
echo "Type is \`github_stable\`" >> $GITHUB_STEP_SUMMARY
|
||||
if grep -q "^flexget_main_${EXT_RELEASE}" <<< "${SKIP_EXTERNAL_TRIGGER}"; then
|
||||
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
|
||||
echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` matches current external release; skipping trigger." >> $GITHUB_STEP_SUMMARY
|
||||
exit 0
|
||||
fi
|
||||
if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then
|
||||
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
|
||||
echo "> Can't retrieve external version, exiting" >> $GITHUB_STEP_SUMMARY
|
||||
|
||||
+14
-15
@@ -6,6 +6,8 @@ FROM ghcr.io/by275/libtorrent:2-alpine3.19 AS libtorrent
|
||||
|
||||
FROM ghcr.io/linuxserver/baseimage-alpine:3.19
|
||||
|
||||
COPY --from=ghcr.io/astral-sh/uv:0.5.26 /uv /uvx /bin/
|
||||
|
||||
# set version label
|
||||
ARG BUILD_DATE
|
||||
ARG VERSION
|
||||
@@ -16,7 +18,10 @@ LABEL maintainer="thespad"
|
||||
# environment settings
|
||||
ENV HOME="/config" \
|
||||
PYTHONIOENCODING=utf-8 \
|
||||
TMPDIR=/run/flexget-temp
|
||||
TMPDIR=/run/flexget-temp \
|
||||
UV_PROJECT_ENVIRONMENT=/lsiopy \
|
||||
UV_COMPILE_BYTECODE=1 \
|
||||
UV_LINK_MODE=copy
|
||||
|
||||
RUN \
|
||||
echo "**** install packages ****" && \
|
||||
@@ -36,24 +41,18 @@ RUN \
|
||||
FLEXGET_VERSION=$(curl -s https://api.github.com/repos/flexget/flexget/releases/latest \
|
||||
| awk '/tag_name/{print $4;exit}' FS='[""]'); \
|
||||
fi && \
|
||||
mkdir -p /tmp/flexget && \
|
||||
mkdir -p /data && \
|
||||
mkdir -p /run/flexget-temp /data && \
|
||||
mkdir -p /app/flexget && \
|
||||
curl -o \
|
||||
/tmp/flexget.tar.gz -L \
|
||||
"https://github.com/flexget/flexget/releases/download/${FLEXGET_VERSION}/FlexGet-${FLEXGET_VERSION#v}.tar.gz" && \
|
||||
"https://github.com/Flexget/Flexget/archive/refs/tags/${FLEXGET_VERSION}.tar.gz" && \
|
||||
tar xf \
|
||||
/tmp/flexget.tar.gz -C \
|
||||
/tmp/flexget --strip-components=1 && \
|
||||
cd /tmp/flexget && \
|
||||
python3 -m venv /lsiopy && \
|
||||
pip install -U --no-cache-dir \
|
||||
pip \
|
||||
wheel && \
|
||||
pip install -U --no-cache --find-links https://wheel-index.linuxserver.io/alpine-3.20/ \
|
||||
click \
|
||||
flexget==${FLEXGET_VERSION#v} \
|
||||
requests \
|
||||
-r requirements-docker.txt && \
|
||||
/app/flexget --strip-components=1 && \
|
||||
cd /app/flexget && \
|
||||
uv venv /lsiopy && \
|
||||
uv run bundle_webui.py && \
|
||||
uv sync --frozen --no-dev --no-cache --group=all && \
|
||||
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
|
||||
echo "**** cleanup ****" && \
|
||||
apk del --purge \
|
||||
|
||||
+14
-15
@@ -6,6 +6,8 @@ FROM ghcr.io/by275/libtorrent:2-alpine3.19 AS libtorrent
|
||||
|
||||
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.19
|
||||
|
||||
COPY --from=ghcr.io/astral-sh/uv:0.5.26 /uv /uvx /bin/
|
||||
|
||||
# set version label
|
||||
ARG BUILD_DATE
|
||||
ARG VERSION
|
||||
@@ -16,7 +18,10 @@ LABEL maintainer="thespad"
|
||||
# environment settings
|
||||
ENV HOME="/config" \
|
||||
PYTHONIOENCODING=utf-8 \
|
||||
TMPDIR=/run/flexget-temp
|
||||
TMPDIR=/run/flexget-temp \
|
||||
UV_PROJECT_ENVIRONMENT=/lsiopy \
|
||||
UV_COMPILE_BYTECODE=1 \
|
||||
UV_LINK_MODE=copy
|
||||
|
||||
RUN \
|
||||
echo "**** install packages ****" && \
|
||||
@@ -36,24 +41,18 @@ RUN \
|
||||
FLEXGET_VERSION=$(curl -s https://api.github.com/repos/flexget/flexget/releases/latest \
|
||||
| awk '/tag_name/{print $4;exit}' FS='[""]'); \
|
||||
fi && \
|
||||
mkdir -p /tmp/flexget && \
|
||||
mkdir -p /data && \
|
||||
mkdir -p /run/flexget-temp /data && \
|
||||
mkdir -p /app/flexget && \
|
||||
curl -o \
|
||||
/tmp/flexget.tar.gz -L \
|
||||
"https://github.com/flexget/flexget/releases/download/${FLEXGET_VERSION}/FlexGet-${FLEXGET_VERSION#v}.tar.gz" && \
|
||||
"https://github.com/Flexget/Flexget/archive/refs/tags/${FLEXGET_VERSION}.tar.gz" && \
|
||||
tar xf \
|
||||
/tmp/flexget.tar.gz -C \
|
||||
/tmp/flexget --strip-components=1 && \
|
||||
cd /tmp/flexget && \
|
||||
python3 -m venv /lsiopy && \
|
||||
pip install -U --no-cache-dir \
|
||||
pip \
|
||||
wheel && \
|
||||
pip install -U --no-cache --find-links https://wheel-index.linuxserver.io/alpine-3.20/ \
|
||||
click \
|
||||
flexget==${FLEXGET_VERSION#v} \
|
||||
requests \
|
||||
-r requirements-docker.txt && \
|
||||
/app/flexget --strip-components=1 && \
|
||||
cd /app/flexget && \
|
||||
uv venv /lsiopy && \
|
||||
uv run bundle_webui.py && \
|
||||
uv sync --frozen --no-dev --no-cache --group=all && \
|
||||
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
|
||||
echo "**** cleanup ****" && \
|
||||
apk del --purge \
|
||||
|
||||
Vendored
+32
-9
@@ -36,7 +36,7 @@ pipeline {
|
||||
CI_PORT='5050'
|
||||
CI_SSL='false'
|
||||
CI_DELAY='120'
|
||||
CI_DOCKERENV=''
|
||||
CI_DOCKERENV='TZ=Europe/London'
|
||||
CI_AUTH=''
|
||||
CI_WEBPATH=''
|
||||
}
|
||||
@@ -59,11 +59,23 @@ pipeline {
|
||||
steps{
|
||||
echo "Running on node: ${NODE_NAME}"
|
||||
sh '''#! /bin/bash
|
||||
containers=$(docker ps -aq)
|
||||
echo "Pruning builder"
|
||||
docker builder prune -f --builder container || :
|
||||
containers=$(docker ps -q)
|
||||
if [[ -n "${containers}" ]]; then
|
||||
docker stop ${containers}
|
||||
BUILDX_CONTAINER_ID=$(docker ps -qf 'name=buildx_buildkit')
|
||||
for container in ${containers}; do
|
||||
if [[ "${container}" == "${BUILDX_CONTAINER_ID}" ]]; then
|
||||
echo "skipping buildx container in docker stop"
|
||||
else
|
||||
echo "Stopping container ${container}"
|
||||
docker stop ${container}
|
||||
fi
|
||||
done
|
||||
fi
|
||||
docker system prune -af --volumes || : '''
|
||||
docker system prune -f --volumes || :
|
||||
docker image prune -af || :
|
||||
'''
|
||||
script{
|
||||
env.EXIT_STATUS = ''
|
||||
env.LS_RELEASE = sh(
|
||||
@@ -751,7 +763,8 @@ pipeline {
|
||||
if [[ -n "${containers}" ]]; then
|
||||
docker stop ${containers}
|
||||
fi
|
||||
docker system prune -af --volumes || :
|
||||
docker system prune -f --volumes || :
|
||||
docker image prune -af || :
|
||||
'''
|
||||
}
|
||||
}
|
||||
@@ -1162,12 +1175,22 @@ EOF
|
||||
}
|
||||
cleanup {
|
||||
sh '''#! /bin/bash
|
||||
echo "Performing docker system prune!!"
|
||||
containers=$(docker ps -aq)
|
||||
echo "Pruning builder!!"
|
||||
docker builder prune -f --builder container || :
|
||||
containers=$(docker ps -q)
|
||||
if [[ -n "${containers}" ]]; then
|
||||
docker stop ${containers}
|
||||
BUILDX_CONTAINER_ID=$(docker ps -qf 'name=buildx_buildkit')
|
||||
for container in ${containers}; do
|
||||
if [[ "${container}" == "${BUILDX_CONTAINER_ID}" ]]; then
|
||||
echo "skipping buildx container in docker stop"
|
||||
else
|
||||
echo "Stopping container ${container}"
|
||||
docker stop ${container}
|
||||
fi
|
||||
done
|
||||
fi
|
||||
docker system prune -af --volumes || :
|
||||
docker system prune -f --volumes || :
|
||||
docker image prune -af || :
|
||||
'''
|
||||
cleanWs()
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
[](https://linuxserver.io)
|
||||
|
||||
[](https://blog.linuxserver.io "all the things you can do with our containers including How-To guides, opinions and much more!")
|
||||
[](https://discord.gg/YWrKVTn "realtime support / chat with the community and the team.")
|
||||
[](https://linuxserver.io/discord "realtime support / chat with the community and the team.")
|
||||
[](https://discourse.linuxserver.io "post on our community forum.")
|
||||
[](https://fleet.linuxserver.io "an online web interface which displays all of our maintained images.")
|
||||
[](https://github.com/linuxserver "view the source for all of our repositories.")
|
||||
@@ -20,7 +20,7 @@ The [LinuxServer.io](https://linuxserver.io) team brings you another container r
|
||||
Find us at:
|
||||
|
||||
* [Blog](https://blog.linuxserver.io) - all the things you can do with our containers including How-To guides, opinions and much more!
|
||||
* [Discord](https://discord.gg/YWrKVTn) - realtime support / chat with the community and the team.
|
||||
* [Discord](https://linuxserver.io/discord) - realtime support / chat with the community and the team.
|
||||
* [Discourse](https://discourse.linuxserver.io) - post on our community forum.
|
||||
* [Fleet](https://fleet.linuxserver.io) - an online web interface which displays all of our maintained images.
|
||||
* [GitHub](https://github.com/linuxserver) - view the source for all of our repositories.
|
||||
|
||||
+1
-1
@@ -24,7 +24,7 @@ repo_vars:
|
||||
- CI_PORT='5050'
|
||||
- CI_SSL='false'
|
||||
- CI_DELAY='120'
|
||||
- CI_DOCKERENV=''
|
||||
- CI_DOCKERENV='TZ=Europe/London'
|
||||
- CI_AUTH=''
|
||||
- CI_WEBPATH=''
|
||||
sponsor_links:
|
||||
|
||||
+173
-174
@@ -1,174 +1,173 @@
|
||||
NAME VERSION TYPE
|
||||
7zip 23.01-r0 apk
|
||||
Simple Launcher 1.1.0.14 dotnet (+5 duplicates)
|
||||
ada-libs 2.7.4-r0 apk
|
||||
alpine-baselayout 3.4.3-r2 apk
|
||||
alpine-baselayout-data 3.4.3-r2 apk
|
||||
alpine-keys 2.4-r1 apk
|
||||
alpine-release 3.19.4-r0 apk
|
||||
aniso8601 9.0.1 python
|
||||
anyio 4.7.0 python
|
||||
apk-tools 2.14.4-r0 apk
|
||||
apscheduler 3.11.0 python
|
||||
attrs 24.2.0 python
|
||||
autocommand 2.2.2 python (+1 duplicate)
|
||||
babelfish 0.6.0 python
|
||||
backports-tarfile 1.2.0 python (+1 duplicate)
|
||||
bash 5.2.21-r0 apk
|
||||
beautifulsoup4 4.12.3 python
|
||||
blinker 1.9.0 python
|
||||
boost1.82-python3 1.82.0-r3 apk
|
||||
boost1.82-system 1.82.0-r3 apk
|
||||
brotli 1.1.0 python
|
||||
brotli-libs 1.1.0-r1 apk
|
||||
busybox 1.36.1-r19 apk
|
||||
busybox-binsh 1.36.1-r19 apk
|
||||
c-ares 1.27.0-r0 apk
|
||||
ca-certificates 20240226-r0 apk
|
||||
ca-certificates-bundle 20240226-r0 apk
|
||||
catatonit 0.2.0-r0 apk
|
||||
certifi 2024.12.14 python
|
||||
charset-normalizer 3.4.0 python
|
||||
cheroot 10.0.1 python
|
||||
cherrypy 18.10.0 python
|
||||
click 8.1.7 python
|
||||
cloudscraper 1.2.71 python
|
||||
colorama 0.4.6 python
|
||||
coreutils 9.4-r2 apk
|
||||
coreutils-env 9.4-r2 apk
|
||||
coreutils-fmt 9.4-r2 apk
|
||||
coreutils-sha512sum 9.4-r2 apk
|
||||
curl 8.9.1-r1 apk
|
||||
deluge-client 1.10.2 python
|
||||
feedparser 6.0.11 python
|
||||
findutils 4.9.0-r5 apk
|
||||
flask 3.1.0 python
|
||||
flask-compress 1.17 python
|
||||
flask-cors 5.0.0 python
|
||||
flask-login 0.6.3 python
|
||||
flask-restx 1.3.0 python
|
||||
flexget 3.13.5 python
|
||||
gdbm 1.23-r1 apk
|
||||
greenlet 3.1.1 python
|
||||
guessit 3.8.0 python
|
||||
h11 0.14.0 python
|
||||
html5lib 1.1 python
|
||||
httpcore 1.0.7 python
|
||||
httpx 0.28.1 python
|
||||
icu-data-en 74.1-r0 apk
|
||||
icu-libs 74.1-r0 apk
|
||||
idna 3.10 python
|
||||
importlib-metadata 8.0.0 python
|
||||
importlib-resources 6.4.5 python
|
||||
inflect 7.3.1 python
|
||||
itsdangerous 2.2.0 python
|
||||
jaraco-collections 5.1.0 python (+1 duplicate)
|
||||
jaraco-context 5.3.0 python
|
||||
jaraco-context 6.0.1 python
|
||||
jaraco-functools 4.0.1 python
|
||||
jaraco-functools 4.1.0 python
|
||||
jaraco-text 3.12.1 python
|
||||
jaraco-text 4.0.0 python
|
||||
jinja2 3.1.5 python
|
||||
jq 1.7.1-r0 apk
|
||||
jsonschema 4.23.0 python
|
||||
jsonschema-specifications 2024.10.1 python
|
||||
libacl 2.3.1-r4 apk
|
||||
libattr 2.5.1-r5 apk
|
||||
libbase64 0.5.0-r0 apk
|
||||
libbsd 0.11.7-r3 apk
|
||||
libbz2 1.0.8-r6 apk
|
||||
libc-utils 0.7.2-r5 apk
|
||||
libcrypto3 3.1.7-r1 apk
|
||||
libcurl 8.9.1-r1 apk
|
||||
libexpat 2.6.4-r0 apk
|
||||
libffi 3.4.4-r3 apk
|
||||
libgcc 13.2.1_git20231014-r0 apk
|
||||
libidn2 2.3.4-r4 apk
|
||||
libintl 0.22.3-r0 apk
|
||||
libmd 1.1.0-r0 apk
|
||||
libncursesw 6.4_p20231125-r0 apk
|
||||
libpanelw 6.4_p20231125-r0 apk
|
||||
libproc2 4.0.4-r0 apk
|
||||
libssl3 3.1.7-r1 apk
|
||||
libstdc++ 13.2.1_git20231014-r0 apk
|
||||
libunistring 1.1-r2 apk
|
||||
linux-pam 1.5.3-r7 apk
|
||||
loguru 0.7.3 python
|
||||
markdown-it-py 3.0.0 python
|
||||
markupsafe 3.0.2 python
|
||||
mdurl 0.1.2 python
|
||||
more-itertools 10.3.0 python
|
||||
more-itertools 10.5.0 python
|
||||
mpdecimal 2.5.1-r2 apk
|
||||
musl 1.2.4_git20230717-r4 apk
|
||||
musl-utils 1.2.4_git20230717-r4 apk
|
||||
my-test-package 1.0 python
|
||||
ncurses-terminfo-base 6.4_p20231125-r0 apk
|
||||
netcat-openbsd 1.226-r0 apk
|
||||
nghttp2-libs 1.58.0-r0 apk
|
||||
nodejs 20.15.1-r0 apk
|
||||
oniguruma 6.9.9-r0 apk
|
||||
packaging 24.2 python (+1 duplicate)
|
||||
pendulum 3.0.0 python
|
||||
pip 24.3.1 python
|
||||
platformdirs 4.2.2 python
|
||||
plumbum 1.9.0 python
|
||||
portend 3.2.0 python
|
||||
procps-ng 4.0.4-r0 apk
|
||||
psutil 6.1.0 python
|
||||
pyc 3.11.11-r0 apk
|
||||
pygments 2.18.0 python
|
||||
pynzb 0.1.0 python
|
||||
pyparsing 3.2.0 python
|
||||
pyrss2gen 1.1 python
|
||||
python-dateutil 2.9.0.post0 python
|
||||
python-telegram-bot 21.9 python
|
||||
python3 3.11.11-r0 apk
|
||||
python3-pyc 3.11.11-r0 apk
|
||||
python3-pycache-pyc0 3.11.11-r0 apk
|
||||
pytz 2024.2 python
|
||||
pyyaml 6.0.2 python
|
||||
qbittorrent-api 2024.11.70 python
|
||||
readline 8.2.1-r2 apk
|
||||
rebulk 3.2.0 python
|
||||
referencing 0.35.1 python
|
||||
requests 2.32.3 python
|
||||
requests-toolbelt 1.0.0 python
|
||||
rich 13.9.4 python
|
||||
rpds-py 0.22.3 python
|
||||
rpyc 6.0.1 python
|
||||
scanelf 1.3.7-r2 apk
|
||||
setuptools 75.6.0 python
|
||||
sgmllib3k 1.0.0 python
|
||||
shadow 4.14.2-r0 apk
|
||||
six 1.17.0 python
|
||||
skalibs 2.14.0.1-r0 apk
|
||||
sniffio 1.3.1 python
|
||||
socksio 1.0.0 python
|
||||
soupsieve 2.6 python
|
||||
sqlalchemy 2.0.36 python
|
||||
sqlite-libs 3.44.2-r0 apk
|
||||
ssl_client 1.36.1-r19 apk
|
||||
tempora 5.7.0 python
|
||||
time-machine 2.16.0 python
|
||||
tomli 2.0.1 python
|
||||
transmission-rpc 7.0.11 python
|
||||
triangular 2.5.0 npm
|
||||
typeguard 4.3.0 python
|
||||
typing-extensions 4.12.2 python (+1 duplicate)
|
||||
tzdata 2024.2 python
|
||||
tzdata 2024a-r0 apk
|
||||
tzlocal 5.2 python
|
||||
urllib3 1.26.20 python
|
||||
utmps-libs 0.1.2.2-r0 apk
|
||||
webencodings 0.5.1 python
|
||||
werkzeug 3.1.3 python
|
||||
wheel 0.43.0 python
|
||||
wheel 0.45.1 python
|
||||
xz-libs 5.4.5-r0 apk
|
||||
zc-lockfile 3.0.post1 python
|
||||
zipp 3.19.2 python
|
||||
zlib 1.3.1-r0 apk
|
||||
zstandard 0.23.0 python
|
||||
zxcvbn 4.4.28 python
|
||||
NAME VERSION TYPE
|
||||
7zip 23.01-r0 apk
|
||||
ada-libs 2.7.4-r0 apk
|
||||
alpine-baselayout 3.4.3-r2 apk
|
||||
alpine-baselayout-data 3.4.3-r2 apk
|
||||
alpine-keys 2.4-r1 apk
|
||||
alpine-release 3.19.6-r0 apk
|
||||
aniso8601 10.0.0 python
|
||||
anyio 4.8.0 python
|
||||
apk-tools 2.14.4-r0 apk
|
||||
apscheduler 3.11.0 python
|
||||
attrs 25.1.0 python
|
||||
autocommand 2.2.2 python (+1 duplicate)
|
||||
babelfish 0.6.1 python
|
||||
backports-tarfile 1.2.0 python (+1 duplicate)
|
||||
bash 5.2.21-r0 apk
|
||||
beautifulsoup4 4.13.3 python
|
||||
blinker 1.9.0 python
|
||||
boost1.82-python3 1.82.0-r3 apk
|
||||
boost1.82-system 1.82.0-r3 apk
|
||||
brotli 1.1.0 python
|
||||
brotli-libs 1.1.0-r1 apk
|
||||
busybox 1.36.1-r19 apk
|
||||
busybox-binsh 1.36.1-r19 apk
|
||||
c-ares 1.27.0-r0 apk
|
||||
ca-certificates 20241121-r1 apk
|
||||
ca-certificates-bundle 20241121-r1 apk
|
||||
catatonit 0.2.0-r0 apk
|
||||
certifi 2025.1.31 python
|
||||
charset-normalizer 3.4.1 python
|
||||
cheroot 10.0.1 python
|
||||
cherrypy 18.10.0 python
|
||||
click 8.1.8 python
|
||||
colorama 0.4.6 python
|
||||
coreutils 9.4-r2 apk
|
||||
coreutils-env 9.4-r2 apk
|
||||
coreutils-fmt 9.4-r2 apk
|
||||
coreutils-sha512sum 9.4-r2 apk
|
||||
curl 8.12.0-r0 apk
|
||||
deluge-client 1.10.2 python
|
||||
feedparser 6.0.11 python
|
||||
findutils 4.9.0-r5 apk
|
||||
flask 3.1.0 python
|
||||
flask-compress 1.17 python
|
||||
flask-cors 5.0.0 python
|
||||
flask-login 0.6.3 python
|
||||
flask-restx 1.3.0 python
|
||||
flexget 3.15.5 python
|
||||
gdbm 1.23-r1 apk
|
||||
greenlet 3.1.1 python
|
||||
guessit 3.8.0 python
|
||||
h11 0.14.0 python
|
||||
h2 4.2.0 python
|
||||
hpack 4.1.0 python
|
||||
html5lib 1.1 python
|
||||
httpcore 1.0.7 python
|
||||
httpx 0.28.1 python
|
||||
hyperframe 6.1.0 python
|
||||
icu-data-en 74.1-r0 apk
|
||||
icu-libs 74.1-r0 apk
|
||||
idna 3.10 python
|
||||
importlib-metadata 8.0.0 python
|
||||
importlib-resources 6.5.2 python
|
||||
inflect 7.3.1 python
|
||||
itsdangerous 2.2.0 python
|
||||
jaraco-collections 5.1.0 python (+1 duplicate)
|
||||
jaraco-context 5.3.0 python
|
||||
jaraco-context 6.0.1 python
|
||||
jaraco-functools 4.0.1 python
|
||||
jaraco-functools 4.1.0 python
|
||||
jaraco-text 3.12.1 python
|
||||
jaraco-text 4.0.0 python
|
||||
jinja2 3.1.5 python
|
||||
jq 1.7.1-r0 apk
|
||||
jsonschema 4.23.0 python
|
||||
jsonschema-specifications 2024.10.1 python
|
||||
libacl 2.3.1-r4 apk
|
||||
libattr 2.5.1-r5 apk
|
||||
libbase64 0.5.0-r0 apk
|
||||
libbsd 0.11.7-r3 apk
|
||||
libbz2 1.0.8-r6 apk
|
||||
libc-utils 0.7.2-r5 apk
|
||||
libcrypto3 3.1.7-r1 apk
|
||||
libcurl 8.12.0-r0 apk
|
||||
libexpat 2.6.4-r0 apk
|
||||
libffi 3.4.4-r3 apk
|
||||
libgcc 13.2.1_git20231014-r0 apk
|
||||
libidn2 2.3.4-r4 apk
|
||||
libintl 0.22.3-r0 apk
|
||||
libmd 1.1.0-r0 apk
|
||||
libncursesw 6.4_p20231125-r0 apk
|
||||
libpanelw 6.4_p20231125-r0 apk
|
||||
libproc2 4.0.4-r0 apk
|
||||
libpsl 0.21.5-r0 apk
|
||||
libssl3 3.1.7-r1 apk
|
||||
libstdc++ 13.2.1_git20231014-r0 apk
|
||||
libunistring 1.1-r2 apk
|
||||
linux-pam 1.5.3-r7 apk
|
||||
loguru 0.7.3 python
|
||||
markdown-it-py 3.0.0 python
|
||||
markupsafe 3.0.2 python
|
||||
mdurl 0.1.2 python
|
||||
more-itertools 10.3.0 python
|
||||
more-itertools 10.6.0 python
|
||||
mpdecimal 2.5.1-r2 apk
|
||||
musl 1.2.4_git20230717-r4 apk
|
||||
musl-utils 1.2.4_git20230717-r4 apk
|
||||
my-test-package 1.0 python
|
||||
ncurses-terminfo-base 6.4_p20231125-r0 apk
|
||||
netcat-openbsd 1.226-r0 apk
|
||||
nghttp2-libs 1.58.0-r0 apk
|
||||
nodejs 20.15.1-r0 apk
|
||||
oniguruma 6.9.9-r0 apk
|
||||
packaging 24.2 python (+1 duplicate)
|
||||
pendulum 3.0.0 python
|
||||
platformdirs 4.2.2 python
|
||||
plumbum 1.9.0 python
|
||||
portend 3.2.0 python
|
||||
procps-ng 4.0.4-r0 apk
|
||||
psutil 6.1.1 python
|
||||
pyc 3.11.11-r0 apk
|
||||
pygments 2.19.1 python
|
||||
pynzb 0.1.0 python
|
||||
pyparsing 3.2.1 python
|
||||
pyrss2gen 1.1 python
|
||||
python-dateutil 2.9.0.post0 python
|
||||
python-telegram-bot 21.10 python
|
||||
python3 3.11.11-r0 apk
|
||||
python3-pyc 3.11.11-r0 apk
|
||||
python3-pycache-pyc0 3.11.11-r0 apk
|
||||
pytz 2025.1 python
|
||||
pyyaml 6.0.2 python
|
||||
qbittorrent-api 2024.12.71 python
|
||||
readline 8.2.1-r2 apk
|
||||
rebulk 3.2.0 python
|
||||
referencing 0.36.2 python
|
||||
requests 2.32.3 python
|
||||
rich 13.9.4 python
|
||||
rpds-py 0.22.3 python
|
||||
rpyc 6.0.1 python
|
||||
scanelf 1.3.7-r2 apk
|
||||
setuptools 75.8.0 python
|
||||
sgmllib3k 1.0.0 python
|
||||
shadow 4.14.2-r0 apk
|
||||
six 1.17.0 python
|
||||
skalibs 2.14.0.1-r0 apk
|
||||
sniffio 1.3.1 python
|
||||
socksio 1.0.0 python
|
||||
soupsieve 2.6 python
|
||||
sqlalchemy 2.0.38 python
|
||||
sqlite-libs 3.44.2-r0 apk
|
||||
ssl_client 1.36.1-r19 apk
|
||||
tempora 5.8.0 python
|
||||
time-machine 2.16.0 python
|
||||
tomli 2.0.1 python
|
||||
transmission-rpc 7.0.11 python
|
||||
triangular 2.5.0 npm
|
||||
typeguard 4.3.0 python
|
||||
typing-extensions 4.12.2 python (+1 duplicate)
|
||||
tzdata 2024b-r0 apk
|
||||
tzdata 2025.1 python
|
||||
tzlocal 5.2 python
|
||||
urllib3 1.26.20 python
|
||||
utmps-libs 0.1.2.2-r0 apk
|
||||
webencodings 0.5.1 python
|
||||
werkzeug 3.1.3 python
|
||||
wheel 0.43.0 python
|
||||
xz-libs 5.4.5-r0 apk
|
||||
zc-lockfile 3.0.post1 python
|
||||
zipp 3.19.2 python
|
||||
zlib 1.3.1-r0 apk
|
||||
zstandard 0.23.0 python
|
||||
zxcvbn 4.4.28 python
|
||||
|
||||
@@ -6,6 +6,7 @@ project_url: "http://flexget.com/"
|
||||
project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/flexget-banner.png"
|
||||
project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) is a multipurpose automation tool for all of your media."
|
||||
project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
|
||||
project_categories: "Downloaders"
|
||||
# supported architectures
|
||||
available_architectures:
|
||||
- {arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
|
||||
|
||||
Reference in New Issue
Block a user