Skip to content

Commit 2ac5855

Browse files
committed
rebase to trixie
1 parent f9a869f commit 2ac5855

File tree

5 files changed

+5
-24
lines changed

5 files changed

+5
-24
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax=docker/dockerfile:1
2-
FROM ghcr.io/linuxserver/baseimage-selkies:debianbookworm
2+
FROM ghcr.io/linuxserver/baseimage-selkies:debiantrixie
33

44
# set version label
55
ARG BUILD_DATE

Dockerfile.aarch64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax=docker/dockerfile:1
2-
FROM ghcr.io/linuxserver/baseimage-selkies:arm64v8-debianbookworm
2+
FROM ghcr.io/linuxserver/baseimage-selkies:arm64v8-debiantrixie
33

44
# set version label
55
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
brave:
221221
image: lscr.io/linuxserver/brave:latest
222222
container_name: brave
223-
security_opt:
224-
- seccomp:unconfined #optional
225223
environment:
226224
- PUID=1000
227225
- PGID=1000
@@ -240,7 +238,6 @@ services:
240238
```bash
241239
docker run -d \
242240
--name=brave \
243-
--security-opt seccomp=unconfined `#optional` \
244241
-e PUID=1000 \
245242
-e PGID=1000 \
246243
-e TZ=Etc/UTC \
@@ -265,7 +262,6 @@ Containers are configured using parameters passed at runtime (such as those abov
265262
| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
266263
| `-v /config` | Users home directory in the container, stores local files and settings |
267264
| `--shm-size=` | This is needed for Brave to function. |
268-
| `--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. |
269265

270266
## Environment variables from files (Docker secrets)
271267

@@ -429,4 +425,5 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
429425

430426
## Versions
431427

428+
* **22.09.25:** - Rebase to Debian Trixie.
432429
* **06.06.25:** - Initial Version.

readme-vars.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ development_versions: false
1717
# container parameters
1818
common_param_env_vars_enabled: true
1919
param_container_name: "{{ project_name }}"
20-
param_usage_include_env: true
21-
param_env_vars:
22-
- {env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London."}
2320
param_usage_include_vols: true
2421
param_volumes:
2522
- {vol_path: "/config", vol_host_path: "/path/to/config", desc: "Users home directory in the container, stores local files and settings"}
@@ -29,9 +26,6 @@ param_ports:
2926
- {external_port: "3001", internal_port: "3001", port_desc: "Brave desktop gui HTTPS."}
3027
custom_params:
3128
- {name: "shm-size", name_compose: "shm_size", value: "1gb", desc: "This is needed for Brave to function."}
32-
opt_security_opt_param: true
33-
opt_security_opt_param_vars:
34-
- {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."}
3529
# Selkies blurb settings
3630
selkies_blurb: true
3731
show_nvidia: true
@@ -111,4 +105,5 @@ init_diagram: |
111105
"brave:latest" <- Base Images
112106
# changelog
113107
changelogs:
108+
- {date: "22.09.25:", desc: "Rebase to Debian Trixie."}
114109
- {date: "06.06.25:", desc: "Initial Version."}

root/usr/bin/wrapped-brave

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,7 @@ if pgrep brave > /dev/null;then
77
rm -f $HOME/.config/BraveSoftware/Brave-Browser/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)