Skip to content

Commit 46bf3e8

Browse files
committed
rebase to trixie
1 parent 5041e91 commit 46bf3e8

3 files changed

Lines changed: 5 additions & 12 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
flycast:
221221
image: lscr.io/linuxserver/flycast:latest
222222
container_name: flycast
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=flycast \
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 Flycast 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
* **19.06.25:** - Initial release.

readme-vars.yml

Lines changed: 1 addition & 7 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,10 +26,6 @@ param_ports:
2926
- {external_port: "3001", internal_port: "3001", port_desc: "HTTPS Flycast desktop gui."}
3027
custom_params:
3128
- {name: "shm-size", name_compose: "shm_size", value: "1gb", desc: "This is needed for Flycast to function."}
32-
# optional variables
33-
opt_security_opt_param: true
34-
opt_security_opt_param_vars:
35-
- {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."}
3629
# Selkies blurb settings
3730
selkies_blurb: true
3831
show_nvidia: true
@@ -112,4 +105,5 @@ init_diagram: |
112105
"flycast:latest" <- Base Images
113106
# changelog
114107
changelogs:
108+
- {date: "22.09.25:", desc: "Rebase to Debian Trixie."}
115109
- {date: "19.06.25:", desc: "Initial release."}

0 commit comments

Comments
 (0)