You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-4Lines changed: 1 addition & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -220,8 +220,6 @@ services:
220
220
chrome:
221
221
image: lscr.io/linuxserver/chrome:latest
222
222
container_name: chrome
223
-
security_opt:
224
-
- seccomp:unconfined #optional
225
223
environment:
226
224
- PUID=1000
227
225
- PGID=1000
@@ -241,7 +239,6 @@ services:
241
239
```bash
242
240
docker run -d \
243
241
--name=chrome \
244
-
--security-opt seccomp=unconfined `#optional` \
245
242
-e PUID=1000 \
246
243
-e PGID=1000 \
247
244
-e TZ=Etc/UTC \
@@ -268,7 +265,6 @@ Containers are configured using parameters passed at runtime (such as those abov
268
265
|`-e CHROME_CLI=https://www.linuxserver.io/`| Specify one or multiple Chrome CLI flags, this string will be passed to the application in full. |
269
266
|`-v /config`| Users home directory in the container, stores local files and settings |
270
267
|`--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. |
272
268
273
269
## Environment variables from files (Docker secrets)
274
270
@@ -432,6 +428,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
432
428
433
429
## Versions
434
430
431
+
***22.09.25:** - Rebase to Debian Trixie.
435
432
***02.09.25:** - Revert graceful shutdown script to rely on the baseimage fix.
436
433
***29.08.25:** - Attempt graceful shutdown of Chrome.
Copy file name to clipboardExpand all lines: readme-vars.yml
+1-6Lines changed: 1 addition & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -16,9 +16,6 @@ development_versions: false
16
16
# container parameters
17
17
common_param_env_vars_enabled: true
18
18
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."}
22
19
param_usage_include_vols: true
23
20
param_volumes:
24
21
- {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:
32
29
opt_param_usage_include_env: true
33
30
opt_param_env_vars:
34
31
- {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."}
38
32
# Selkies blurb settings
39
33
selkies_blurb: true
40
34
show_nvidia: true
@@ -114,6 +108,7 @@ init_diagram: |
114
108
"chrome:latest" <- Base Images
115
109
# changelog
116
110
changelogs:
111
+
- {date: "22.09.25:", desc: "Rebase to Debian Trixie."}
117
112
- {date: "02.09.25:", desc: "Revert graceful shutdown script to rely on the baseimage fix."}
118
113
- {date: "29.08.25:", desc: "Attempt graceful shutdown of Chrome."}
0 commit comments