diff --git a/Dockerfile b/Dockerfile index 4094f8a..d59ce9f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-selkies:debianbookworm +FROM ghcr.io/linuxserver/baseimage-selkies:debiantrixie # set version label ARG BUILD_DATE @@ -44,6 +44,6 @@ RUN \ COPY /root / # ports and volumes -EXPOSE 3000 +EXPOSE 3001 VOLUME /config diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index c03311a..b1ccf24 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-selkies:arm64v8-debianbookworm +FROM ghcr.io/linuxserver/baseimage-selkies:arm64v8-debiantrixie # set version label ARG BUILD_DATE @@ -44,6 +44,6 @@ RUN \ COPY /root / # ports and volumes -EXPOSE 3000 +EXPOSE 3001 VOLUME /config diff --git a/README.md b/README.md index 0b0025a..c8fc3b1 100644 --- a/README.md +++ b/README.md @@ -220,8 +220,6 @@ services: librewolf: image: lscr.io/linuxserver/librewolf:latest container_name: librewolf - security_opt: - - seccomp:unconfined #optional environment: - PUID=1000 - PGID=1000 @@ -241,7 +239,6 @@ services: ```bash docker run -d \ --name=librewolf \ - --security-opt seccomp=unconfined `#optional` \ -e PUID=1000 \ -e PGID=1000 \ -e TZ=Etc/UTC \ @@ -268,7 +265,6 @@ Containers are configured using parameters passed at runtime (such as those abov | `-e LIBREWOLF_CLI=https://www.linuxserver.io/` | Specify one or multiple LibreWolf CLI flags, this string will be passed to the application in full. | | `-v /config` | Users home directory in the container, stores local files and settings | | `--shm-size=` | This is needed for any modern website to function like youtube. | -| `--security-opt seccomp=unconfined` | For Docker Engine only, many modern gui apps need this to function on older hosts as syscalls are unknown to Docker. | ## Environment variables from files (Docker secrets) @@ -432,6 +428,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **22.09.25:** - Rebase to Debian Trixie. * **12.07.25:** - Rebase to Selkies, HTTPS IS NOW REQUIRED. * **12.10.24:** - Publish aarch64 image. Switch to new upstream repo. * **09.04.24:** - Initial release. diff --git a/readme-vars.yml b/readme-vars.yml index 2301348..972ccbf 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -30,9 +30,6 @@ custom_params: opt_param_usage_include_env: true opt_param_env_vars: - {env_var: "LIBREWOLF_CLI", env_value: "https://www.linuxserver.io/", desc: "Specify one or multiple LibreWolf CLI flags, this string will be passed to the application in full."} -opt_security_opt_param: true -opt_security_opt_param_vars: - - {run_var: "seccomp=unconfined", compose_var: "seccomp:unconfined", desc: "For Docker Engine only, many modern gui apps need this to function on older hosts as syscalls are unknown to Docker."} # Selkies blurb settings selkies_blurb: true show_nvidia: true @@ -112,6 +109,7 @@ init_diagram: | "librewolf:latest" <- Base Images # changelog changelogs: + - {date: "22.09.25:", desc: "Rebase to Debian Trixie."} - {date: "12.07.25:", desc: "Rebase to Selkies, HTTPS IS NOW REQUIRED."} - {date: "12.10.24:", desc: "Publish aarch64 image. Switch to new upstream repo."} - {date: "09.04.24:", desc: "Initial release."}