Skip to content

Commit 58ce47c

Browse files
committed
rebase to trixie
1 parent b96f9dc commit 58ce47c

4 files changed

Lines changed: 7 additions & 18 deletions

File tree

Dockerfile

Lines changed: 4 additions & 2 deletions
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
@@ -42,6 +44,6 @@ RUN \
4244
COPY /root /
4345

4446
# ports and volumes
45-
EXPOSE 3000
47+
EXPOSE 3001
4648

4749
VOLUME /config

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,6 @@ services:
220220
opera:
221221
image: lscr.io/linuxserver/opera:latest
222222
container_name: opera
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=opera \
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 OPERA_CLI=https://www.linuxserver.io/` | Specify one or multiple Chromium 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 required for Opera to launch and function. |
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. Opera runs in no-sandbox 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
* **03.07.25:** - Rebase to Selkies HTTPS is now required.
436433
* **12.03.25:** - Clear singletons on launch to properly support persistance.
437434
* **13.02.24:** - Remove manual codecs ingestion.

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: "OPERA_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."}
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. Opera runs in no-sandbox mode without it."}
3832
# Selkies blurb settings
3933
selkies_blurb: true
4034
show_nvidia: true
@@ -114,6 +108,7 @@ init_diagram: |
114108
"opera:latest" <- Base Images
115109
# changelog
116110
changelogs:
111+
- {date: "22.09.25:", desc: "Rebase to Debian Trixie."}
117112
- {date: "03.07.25:", desc: "Rebase to Selkies HTTPS is now required."}
118113
- {date: "12.03.25:", desc: "Clear singletons on launch to properly support persistance."}
119114
- {date: "13.02.24:", desc: "Remove manual codecs ingestion."}

root/usr/bin/opera

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,4 @@ if [ -f /usr/lib/x86_64-linux-gnu/opera/localization/${LANG}.pak ]; then
1515
LANG_CLI="--lang=${LANG}"
1616
fi
1717

18-
# Run normally on privved containers or modified un non priv
19-
if grep -q 'Seccomp:.0' /proc/1/status; then
20-
${BIN} --password-store=basic ${LANG_CLI} "$@"
21-
else
22-
${BIN} --password-store=basic --no-sandbox --test-type ${LANG_CLI} "$@"
23-
fi
18+
${BIN} --password-store=basic --no-sandbox --test-type ${LANG_CLI} "$@"

0 commit comments

Comments
 (0)