Skip to content

Commit 5a2f053

Browse files
authored
Merge pull request #10 from linuxserver/trixie
Trixie
2 parents 98dc756 + 3e5b5b3 commit 5a2f053

4 files changed

Lines changed: 6 additions & 23 deletions

File tree

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

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,6 @@ services:
220220
chrome:
221221
image: lscr.io/linuxserver/chrome:latest
222222
container_name: chrome
223-
security_opt:
224-
- seccomp:unconfined #optional
225223
environment:
226224
- PUID=1000
227225
- PGID=1000
@@ -241,7 +239,6 @@ services:
241239
```bash
242240
docker run -d \
243241
--name=chrome \
244-
--security-opt seccomp=unconfined `#optional` \
245242
-e PUID=1000 \
246243
-e PGID=1000 \
247244
-e TZ=Etc/UTC \
@@ -268,7 +265,6 @@ Containers are configured using parameters passed at runtime (such as those abov
268265
| `-e CHROME_CLI=https://www.linuxserver.io/` | Specify one or multiple Chrome CLI flags, this string will be passed to the application in full. |
269266
| `-v /config` | Users home directory in the container, stores local files and settings |
270267
| `--shm-size=` | This is needed for any modern website to function like youtube. |
271-
| `--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. Chrome runs in no-sandbox test mode without it. |
272268

273269
## Environment variables from files (Docker secrets)
274270

@@ -432,6 +428,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
432428

433429
## Versions
434430

431+
* **22.09.25:** - Rebase to Debian Trixie.
435432
* **02.09.25:** - Revert graceful shutdown script to rely on the baseimage fix.
436433
* **29.08.25:** - Attempt graceful shutdown of Chrome.
437434
* **12.06.25:** - Initial release.

readme-vars.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ development_versions: false
1616
# container parameters
1717
common_param_env_vars_enabled: true
1818
param_container_name: "{{ project_name }}"
19-
param_usage_include_env: true
20-
param_env_vars:
21-
- {env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London."}
2219
param_usage_include_vols: true
2320
param_volumes:
2421
- {vol_path: "/config", vol_host_path: "/path/to/config", desc: "Users home directory in the container, stores local files and settings"}
@@ -32,9 +29,6 @@ custom_params:
3229
opt_param_usage_include_env: true
3330
opt_param_env_vars:
3431
- {env_var: "CHROME_CLI", env_value: "https://www.linuxserver.io/", desc: "Specify one or multiple Chrome CLI flags, this string will be passed to the application in full."}
35-
opt_security_opt_param: true
36-
opt_security_opt_param_vars:
37-
- {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. Chrome runs in no-sandbox test mode without it."}
3832
# Selkies blurb settings
3933
selkies_blurb: true
4034
show_nvidia: true
@@ -114,6 +108,7 @@ init_diagram: |
114108
"chrome:latest" <- Base Images
115109
# changelog
116110
changelogs:
111+
- {date: "22.09.25:", desc: "Rebase to Debian Trixie."}
117112
- {date: "02.09.25:", desc: "Revert graceful shutdown script to rely on the baseimage fix."}
118113
- {date: "29.08.25:", desc: "Attempt graceful shutdown of Chrome."}
119114
- {date: "12.06.25:", desc: "Initial release."}

root/usr/bin/wrapped-chrome

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,7 @@ if pgrep chrome > /dev/null;then
77
rm -f $HOME/.config/google-chrome/Singleton*
88
fi
99

10-
# Run normally on privved containers or modified un non priv
11-
if grep -q 'Seccomp:.0' /proc/1/status; then
12-
${BIN} \
13-
--no-first-run \
14-
--password-store=basic \
15-
--simulate-outdated-no-au='Tue, 31 Dec 2099 23:59:59 GMT' \
16-
--start-maximized \
17-
--user-data-dir \
18-
"$@" > /dev/null 2>&1
19-
else
20-
${BIN} \
10+
${BIN} \
2111
--no-first-run \
2212
--no-sandbox \
2313
--password-store=basic \
@@ -26,4 +16,3 @@ else
2616
--test-type \
2717
--user-data-dir \
2818
"$@" > /dev/null 2>&1
29-
fi

0 commit comments

Comments
 (0)