Skip to content

Commit 1ba8fe0

Browse files
authored
Merge pull request #9 from linuxserver/trixie
rebase to trixie
2 parents a9c4c08 + dbb5cf4 commit 1ba8fe0

4 files changed

Lines changed: 13 additions & 9 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

Dockerfile.aarch64

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:arm64v8-debianbookworm
1+
# syntax=docker/dockerfile:1
2+
3+
FROM ghcr.io/linuxserver/baseimage-selkies:arm64v8-debiantrixie
24

35
# set version label
46
ARG BUILD_DATE

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,6 @@ services:
220220
freecad:
221221
image: lscr.io/linuxserver/freecad:latest
222222
container_name: freecad
223-
security_opt:
224-
- seccomp:unconfined #optional
225223
environment:
226224
- PUID=1000
227225
- PGID=1000
@@ -231,6 +229,7 @@ services:
231229
ports:
232230
- 3000:3000
233231
- 3001:3001
232+
shm_size: "1gb"
234233
restart: unless-stopped
235234
```
236235
@@ -239,13 +238,13 @@ services:
239238
```bash
240239
docker run -d \
241240
--name=freecad \
242-
--security-opt seccomp=unconfined `#optional` \
243241
-e PUID=1000 \
244242
-e PGID=1000 \
245243
-e TZ=Etc/UTC \
246244
-p 3000:3000 \
247245
-p 3001:3001 \
248246
-v /path/to/config:/config \
247+
--shm-size="1gb" \
249248
--restart unless-stopped \
250249
lscr.io/linuxserver/freecad:latest
251250
```
@@ -262,7 +261,7 @@ Containers are configured using parameters passed at runtime (such as those abov
262261
| `-e PGID=1000` | for GroupID - see below for explanation |
263262
| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
264263
| `-v /config` | Users home directory in the container, stores program settings and files. |
265-
| `--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. |
264+
| `--shm-size=` | Recommended for all desktop images. |
266265

267266
## Environment variables from files (Docker secrets)
268267

@@ -426,6 +425,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
426425

427426
## Versions
428427

428+
* **22.09.25:** - Rebase to Debian Trixie.
429429
* **02.07.25:** - Rebase to Selkies, HTTPS is now required! Ingest from current appimage.
430430
* **10.02.24:** - Update Readme with new env vars and ingest proper PWA icon.
431431
* **06.12.23:** - Initial release.

readme-vars.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,8 @@ param_usage_include_ports: true
2727
param_ports:
2828
- {external_port: "3000", internal_port: "3000", port_desc: "FreeCAD desktop gui HTTP, must be proxied."}
2929
- {external_port: "3001", internal_port: "3001", port_desc: "FreeCAD desktop gui HTTPS."}
30-
opt_security_opt_param: true
31-
opt_security_opt_param_vars:
32-
- {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."}
30+
custom_params:
31+
- {name: "shm-size", name_compose: "shm_size", value: "1gb", desc: "Recommended for all desktop images."}
3332
# Selkies blurb settings
3433
selkies_blurb: true
3534
show_nvidia: true
@@ -109,6 +108,7 @@ init_diagram: |
109108
"freecad:latest" <- Base Images
110109
# changelog
111110
changelogs:
111+
- {date: "22.09.25:", desc: "Rebase to Debian Trixie."}
112112
- {date: "02.07.25:", desc: "Rebase to Selkies, HTTPS is now required! Ingest from current appimage."}
113113
- {date: "10.02.24:", desc: "Update Readme with new env vars and ingest proper PWA icon."}
114114
- {date: "06.12.23:", desc: "Initial release."}

0 commit comments

Comments
 (0)