Skip to content

Commit 2743c08

Browse files
authored
Merge pull request #7 from linuxserver/trixie
rebase to trixie
2 parents 43de7eb + 0d897c4 commit 2743c08

File tree

4 files changed

+15
-12
lines changed

4 files changed

+15
-12
lines changed

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
@@ -39,6 +41,6 @@ RUN \
3941
COPY /root /
4042

4143
# ports and volumes
42-
EXPOSE 3000
44+
EXPOSE 3001
4345

4446
VOLUME /config

Dockerfile.aarch64

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: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
@@ -39,6 +41,6 @@ RUN \
3941
COPY /root /
4042

4143
# ports and volumes
42-
EXPOSE 3000
44+
EXPOSE 3001
4345

4446
VOLUME /config

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,6 @@ services:
220220
rustdesk:
221221
image: lscr.io/linuxserver/rustdesk:latest
222222
container_name: rustdesk
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=rustdesk \
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/rustdesk: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 local files and settings |
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,5 +425,6 @@ 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
* **12.07.25:** - Rebase to Selkies, HTTPS IS NOW REQUIRED.
430430
* **25.07.24:** - Initial release.

readme-vars.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,8 @@ param_usage_include_ports: true
2424
param_ports:
2525
- {external_port: "3000", internal_port: "3000", port_desc: "HTTP RustDesk desktop gui, must be proxied."}
2626
- {external_port: "3001", internal_port: "3001", port_desc: "HTTPS Rustdesk desktop gui."}
27-
# optional variables
28-
opt_security_opt_param: true
29-
opt_security_opt_param_vars:
30-
- {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."}
27+
custom_params:
28+
- {name: "shm-size", name_compose: "shm_size", value: "1gb", desc: "Recommended for all desktop images."}
3129
# Selkies blurb settings
3230
selkies_blurb: true
3331
show_nvidia: true
@@ -107,5 +105,6 @@ init_diagram: |
107105
"rustdesk:latest" <- Base Images
108106
# changelog
109107
changelogs:
108+
- {date: "22.09.25:", desc: "Rebase to Debian Trixie."}
110109
- {date: "12.07.25:", desc: "Rebase to Selkies, HTTPS IS NOW REQUIRED."}
111110
- {date: "25.07.24:", desc: "Initial release."}

0 commit comments

Comments
 (0)