Skip to content

Commit b7d5190

Browse files
committed
Rebase to 3.19
1 parent c8a72e0 commit b7d5190

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
FROM ghcr.io/linuxserver/unrar:latest as unrar
44

5-
FROM ghcr.io/by275/libtorrent:2-alpine3.18 as libtorrent
5+
FROM ghcr.io/by275/libtorrent:2-alpine3.19 as libtorrent
66

7-
FROM ghcr.io/linuxserver/baseimage-alpine:3.18
7+
FROM ghcr.io/linuxserver/baseimage-alpine:3.19
88

99
# set version label
1010
ARG BUILD_DATE
@@ -30,7 +30,7 @@ RUN \
3030
libstdc++ \
3131
nodejs \
3232
python3 && \
33-
echo "**** install flexget ****" && \
33+
echo "**** install flexget ****" && \
3434
if [ -z ${FLEXGET_VERSION+x} ]; then \
3535
FLEXGET_VERSION=$(curl -s https://api.github.com/repos/flexget/flexget/releases/latest \
3636
| awk '/tag_name/{print $4;exit}' FS='[""]'); \
@@ -47,7 +47,7 @@ RUN \
4747
pip install -U --no-cache-dir \
4848
pip \
4949
wheel && \
50-
pip install -U --no-cache --find-links https://wheel-index.linuxserver.io/alpine-3.18/ \
50+
pip install -U --no-cache --find-links https://wheel-index.linuxserver.io/alpine-3.19/ \
5151
click \
5252
flexget==${FLEXGET_VERSION#v} \
5353
requests \

Dockerfile.aarch64

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
FROM ghcr.io/linuxserver/unrar:arm64v8-latest as unrar
44

5-
FROM ghcr.io/by275/libtorrent:2-alpine3.18 as libtorrent
5+
FROM ghcr.io/by275/libtorrent:2-alpine3.19 as libtorrent
66

7-
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.18
7+
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.19
88

99
# set version label
1010
ARG BUILD_DATE
@@ -30,7 +30,7 @@ RUN \
3030
libstdc++ \
3131
nodejs \
3232
python3 && \
33-
echo "**** install flexget ****" && \
33+
echo "**** install flexget ****" && \
3434
if [ -z ${FLEXGET_VERSION+x} ]; then \
3535
FLEXGET_VERSION=$(curl -s https://api.github.com/repos/flexget/flexget/releases/latest \
3636
| awk '/tag_name/{print $4;exit}' FS='[""]'); \
@@ -47,7 +47,7 @@ RUN \
4747
pip install -U --no-cache-dir \
4848
pip \
4949
wheel && \
50-
pip install -U --no-cache --find-links https://wheel-index.linuxserver.io/alpine-3.18/ \
50+
pip install -U --no-cache --find-links https://wheel-index.linuxserver.io/alpine-3.19/ \
5151
click \
5252
flexget==${FLEXGET_VERSION#v} \
5353
requests \

readme-vars.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ param_env_vars:
2626
- { env_var: "FG_CONFIG_FILE", env_value: "/config/.flexget/config.yml", desc: "Set the FlexGet config file location." }
2727
param_usage_include_vols: true
2828
param_volumes:
29-
- { vol_path: "/config", vol_host_path: "/path/to/data", desc: "Local path for FlexGet config files." }
29+
- { vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/data", desc: "Local path for FlexGet config files." }
3030
param_usage_include_ports: true
3131
param_ports:
3232
- { external_port: "5050", internal_port: "5050", port_desc: "HTTP port for the WebUI." }
@@ -51,12 +51,13 @@ app_setup_block: |
5151
5252
We have set `/data` as an ***optional path***, this is because it is the easiest way to get started. While easy to use, it has some drawbacks. Mainly losing the ability to hardlink (TL;DR a way for a file to exist in multiple places on the same file system while only consuming one file worth of space), or atomic move (TL;DR instant file moves, rather than copy+delete) files while processing content.
5353
54-
Use the optional paths if you dont understand, or dont want hardlinks/atomic moves.
54+
Use the optional paths if you don't understand, or don't want hardlinks/atomic moves.
5555
5656
The folks over at servarr.com wrote a good [write-up](https://wiki.servarr.com/docker-guide#consistent-and-well-planned-paths) on how to get started with this.
5757
5858
# changelog
5959
changelogs:
60+
- { date: "20.03.24:", desc: "Rebase to Alpine 3.19."}
6061
- { date: "07.10.23:", desc: "Install unrar from [linuxserver repo](https://github.com/linuxserver/docker-unrar)."}
6162
- { date: "10.08.23:", desc: "Bump unrar to 6.2.10."}
6263
- { date: "03.07.23:", desc: "Initial Release." }

0 commit comments

Comments
 (0)