mirror of
https://github.com/linuxserver/docker-radarr.git
synced 2025-06-28 01:07:38 -04:00
Rebase to 3.21
This commit is contained in:
parent
010edf887f
commit
69376a23e7
8 changed files with 28 additions and 12 deletions
|
@ -1,6 +1,6 @@
|
||||||
# syntax=docker/dockerfile:1
|
# syntax=docker/dockerfile:1
|
||||||
|
|
||||||
FROM ghcr.io/linuxserver/baseimage-alpine:3.20
|
FROM ghcr.io/linuxserver/baseimage-alpine:3.21
|
||||||
|
|
||||||
# set version label
|
# set version label
|
||||||
ARG BUILD_DATE
|
ARG BUILD_DATE
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# syntax=docker/dockerfile:1
|
# syntax=docker/dockerfile:1
|
||||||
|
|
||||||
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.20
|
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.21
|
||||||
|
|
||||||
# set version label
|
# set version label
|
||||||
ARG BUILD_DATE
|
ARG BUILD_DATE
|
||||||
|
|
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
|
@ -32,7 +32,7 @@ pipeline {
|
||||||
CI_WEB='true'
|
CI_WEB='true'
|
||||||
CI_PORT='7878'
|
CI_PORT='7878'
|
||||||
CI_SSL='false'
|
CI_SSL='false'
|
||||||
CI_DELAY='120'
|
CI_DELAY='240'
|
||||||
CI_DOCKERENV=''
|
CI_DOCKERENV=''
|
||||||
CI_AUTH=''
|
CI_AUTH=''
|
||||||
CI_WEBPATH='/system/status'
|
CI_WEBPATH='/system/status'
|
||||||
|
|
|
@ -83,6 +83,10 @@ The folks over at servarr.com wrote a good [write-up](https://wiki.servarr.com/d
|
||||||
|
|
||||||
This image can be run with a read-only container filesystem. For details please [read the docs](https://docs.linuxserver.io/misc/read-only/).
|
This image can be run with a read-only container filesystem. For details please [read the docs](https://docs.linuxserver.io/misc/read-only/).
|
||||||
|
|
||||||
|
## Non-Root Operation
|
||||||
|
|
||||||
|
This image can be run with a non-root user. For details please [read the docs](https://docs.linuxserver.io/misc/non-root/).
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
To help you get started creating a container from this image you can either use docker-compose or the docker cli.
|
To help you get started creating a container from this image you can either use docker-compose or the docker cli.
|
||||||
|
@ -141,6 +145,7 @@ Containers are configured using parameters passed at runtime (such as those abov
|
||||||
| `-v /movies` | Location of Movie library on disk (See note in Application setup) |
|
| `-v /movies` | Location of Movie library on disk (See note in Application setup) |
|
||||||
| `-v /downloads` | Location of download managers output directory (See note in Application setup) |
|
| `-v /downloads` | Location of download managers output directory (See note in Application setup) |
|
||||||
| `--read-only=true` | Run container with a read-only filesystem. Please [read the docs](https://docs.linuxserver.io/misc/read-only/). |
|
| `--read-only=true` | Run container with a read-only filesystem. Please [read the docs](https://docs.linuxserver.io/misc/read-only/). |
|
||||||
|
| `--user=1000:1000` | Run container with a non-root user. Please [read the docs](https://docs.linuxserver.io/misc/non-root/). |
|
||||||
|
|
||||||
## Environment variables from files (Docker secrets)
|
## Environment variables from files (Docker secrets)
|
||||||
|
|
||||||
|
@ -304,6 +309,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
|
||||||
|
|
||||||
## Versions
|
## Versions
|
||||||
|
|
||||||
|
* **23.12.24:** - Rebase Alpine 3.21.
|
||||||
* **31.05.24:** - Rebase Alpine 3.20.
|
* **31.05.24:** - Rebase Alpine 3.20.
|
||||||
* **20.03.24:** - Rebase to Alpine 3.19.
|
* **20.03.24:** - Rebase to Alpine 3.19.
|
||||||
* **06.06.23:** - Rebase master to Alpine 3.18, deprecate armhf as per [https://www.linuxserver.io/armhf](https://www.linuxserver.io/armhf).
|
* **06.06.23:** - Rebase master to Alpine 3.18, deprecate armhf as per [https://www.linuxserver.io/armhf](https://www.linuxserver.io/armhf).
|
||||||
|
|
|
@ -20,7 +20,7 @@ repo_vars:
|
||||||
- CI_WEB='true'
|
- CI_WEB='true'
|
||||||
- CI_PORT='7878'
|
- CI_PORT='7878'
|
||||||
- CI_SSL='false'
|
- CI_SSL='false'
|
||||||
- CI_DELAY='120'
|
- CI_DELAY='240'
|
||||||
- CI_DOCKERENV=''
|
- CI_DOCKERENV=''
|
||||||
- CI_AUTH=''
|
- CI_AUTH=''
|
||||||
- CI_WEBPATH='/system/status'
|
- CI_WEBPATH='/system/status'
|
||||||
|
|
|
@ -30,6 +30,7 @@ param_usage_include_ports: true
|
||||||
param_ports:
|
param_ports:
|
||||||
- {external_port: "7878", internal_port: "7878", port_desc: "The port for the Radarr Web UI"}
|
- {external_port: "7878", internal_port: "7878", port_desc: "The port for the Radarr Web UI"}
|
||||||
readonly_supported: true
|
readonly_supported: true
|
||||||
|
nonroot_supported: true
|
||||||
# application setup block
|
# application setup block
|
||||||
app_setup_block_enabled: true
|
app_setup_block_enabled: true
|
||||||
app_setup_block: |
|
app_setup_block: |
|
||||||
|
@ -87,6 +88,7 @@ init_diagram: |
|
||||||
"radarr:latest" <- Base Images
|
"radarr:latest" <- Base Images
|
||||||
# changelog
|
# changelog
|
||||||
changelogs:
|
changelogs:
|
||||||
|
- {date: "23.12.24:", desc: "Rebase Alpine 3.21."}
|
||||||
- {date: "31.05.24:", desc: "Rebase Alpine 3.20."}
|
- {date: "31.05.24:", desc: "Rebase Alpine 3.20."}
|
||||||
- {date: "20.03.24:", desc: "Rebase to Alpine 3.19."}
|
- {date: "20.03.24:", desc: "Rebase to Alpine 3.19."}
|
||||||
- {date: "06.06.23:", desc: "Rebase master to Alpine 3.18, deprecate armhf as per [https://www.linuxserver.io/armhf](https://www.linuxserver.io/armhf)."}
|
- {date: "06.06.23:", desc: "Rebase master to Alpine 3.18, deprecate armhf as per [https://www.linuxserver.io/armhf](https://www.linuxserver.io/armhf)."}
|
||||||
|
|
|
@ -3,7 +3,8 @@
|
||||||
|
|
||||||
mkdir -p /run/radarr-temp
|
mkdir -p /run/radarr-temp
|
||||||
|
|
||||||
# permissions
|
if [[ -z ${LSIO_NON_ROOT_USER} ]]; then
|
||||||
lsiown -R abc:abc \
|
lsiown -R abc:abc \
|
||||||
/config \
|
/config \
|
||||||
/run/radarr-temp
|
/run/radarr-temp
|
||||||
|
fi
|
||||||
|
|
|
@ -1,7 +1,14 @@
|
||||||
#!/usr/bin/with-contenv bash
|
#!/usr/bin/with-contenv bash
|
||||||
# shellcheck shell=bash
|
# shellcheck shell=bash
|
||||||
|
|
||||||
exec \
|
if [[ -z ${LSIO_NON_ROOT_USER} ]]; then
|
||||||
s6-notifyoncheck -d -n 300 -w 1000 \
|
exec \
|
||||||
cd /app/radarr/bin s6-setuidgid abc /app/radarr/bin/Radarr \
|
s6-notifyoncheck -d -n 300 -w 1000 \
|
||||||
-nobrowser -data=/config
|
cd /app/radarr/bin s6-setuidgid abc /app/radarr/bin/Radarr \
|
||||||
|
-nobrowser -data=/config
|
||||||
|
else
|
||||||
|
exec \
|
||||||
|
s6-notifyoncheck -d -n 300 -w 1000 \
|
||||||
|
cd /app/radarr/bin /app/radarr/bin/Radarr \
|
||||||
|
-nobrowser -data=/config
|
||||||
|
fi
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue