Skip to content

Commit 29f08aa

Browse files
authored
Merge pull request #63 from linuxserver/trixie
Trixie
2 parents 891486a + f2fda44 commit 29f08aa

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
FROM ghcr.io/linuxserver/baseimage-selkies:debianbookworm
1+
# syntax=docker/dockerfile:1
2+
3+
FROM ghcr.io/linuxserver/baseimage-selkies:debiantrixie
24

35
# set version label
46
ARG BUILD_DATE

Dockerfile.aarch64

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
FROM ghcr.io/linuxserver/baseimage-selkies:arm64v8-debianbookworm
1+
# syntax=docker/dockerfile:1
2+
3+
FROM ghcr.io/linuxserver/baseimage-selkies:arm64v8-debiantrixie
24

35
# set version label
46
ARG BUILD_DATE

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -229,8 +229,6 @@ services:
229229
chromium:
230230
image: lscr.io/linuxserver/chromium:latest
231231
container_name: chromium
232-
security_opt:
233-
- seccomp:unconfined #optional
234232
environment:
235233
- PUID=1000
236234
- PGID=1000
@@ -250,7 +248,6 @@ services:
250248
```bash
251249
docker run -d \
252250
--name=chromium \
253-
--security-opt seccomp=unconfined `#optional` \
254251
-e PUID=1000 \
255252
-e PGID=1000 \
256253
-e TZ=Etc/UTC \
@@ -277,7 +274,6 @@ Containers are configured using parameters passed at runtime (such as those abov
277274
| `-e CHROME_CLI=https://www.linuxserver.io/` | Specify one or multiple Chromium CLI flags, this string will be passed to the application in full. |
278275
| `-v /config` | Users home directory in the container, stores local files and settings |
279276
| `--shm-size=` | This is needed for any modern website to function like youtube. |
280-
| `--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. Chromium runs in no-sandbox test mode without it. |
281277

282278
## Environment variables from files (Docker secrets)
283279

@@ -441,6 +437,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
441437

442438
## Versions
443439

440+
* **22.09.25:** - Rebase to Debian Trixie.
444441
* **01.07.25:** - Add Kasm branch.
445442
* **24.06.25:** - Rebase to Selkies.
446443
* **03.04.25:** - Update chromium launch options to improve performance.

readme-vars.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@ custom_params:
3333
opt_param_usage_include_env: true
3434
opt_param_env_vars:
3535
- {env_var: "CHROME_CLI", env_value: "https://www.linuxserver.io/", desc: "Specify one or multiple Chromium CLI flags, this string will be passed to the application in full."}
36-
opt_security_opt_param: true
37-
opt_security_opt_param_vars:
38-
- {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. Chromium runs in no-sandbox test mode without it."}
3936
# Selkies blurb settings
4037
selkies_blurb: true
4138
show_nvidia: true
@@ -115,6 +112,7 @@ init_diagram: |
115112
"chromium:latest" <- Base Images
116113
# changelog
117114
changelogs:
115+
- {date: "22.09.25:", desc: "Rebase to Debian Trixie."}
118116
- {date: "01.07.25:", desc: "Add Kasm branch."}
119117
- {date: "24.06.25:", desc: "Rebase to Selkies."}
120118
- {date: "03.04.25:", desc: "Update chromium launch options to improve performance."}

0 commit comments

Comments
 (0)