Skip to content

Commit 5e35fca

Browse files
authored
Merge pull request #28 from linuxserver/trixie
rebase to trixie
2 parents 05dc8d3 + d4935af commit 5e35fca

File tree

4 files changed

+17
-7
lines changed

4 files changed

+17
-7
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
@@ -42,5 +44,5 @@ RUN \
4244
COPY /root /
4345

4446
# ports and volumes
45-
EXPOSE 3000
47+
EXPOSE 3001
4648
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
@@ -42,5 +44,5 @@ RUN \
4244
COPY /root /
4345

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

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@ By default, this container has no authentication. The optional `CUSTOM_USER` and
7878

7979
The web interface includes a terminal with passwordless `sudo` access. Any user with access to the GUI can gain root control within the container, install arbitrary software, and probe your local network.
8080

81+
While not generally recommended, certain legacy environments specifically those with older hardware or outdated Linux distributions may require the deactivation of the standard seccomp profile to get containerized desktop software to run. This can be achieved by utilizing the `--security-opt seccomp=unconfined` parameter. It is critical to use this option only when absolutely necessary as it disables a key security layer of Docker, elevating the potential for container escape vulnerabilities.
82+
8183
### Options in all Selkies-based GUI containers
8284

8385
This container is based on [Docker Baseimage Selkies](https://github.com/linuxserver/docker-baseimage-selkies), which provides the following environment variables and run configurations to customize its functionality.
@@ -230,6 +232,7 @@ services:
230232
ports:
231233
- 3000:3000
232234
- 3001:3001
235+
shm_size: "1gb"
233236
restart: unless-stopped
234237
```
235238
@@ -245,6 +248,7 @@ docker run -d \
245248
-p 3001:3001 \
246249
-v /path/to/config:/config \
247250
-v /path/to/data:/data \
251+
--shm-size="1gb" \
248252
--restart unless-stopped \
249253
lscr.io/linuxserver/doublecommander:latest
250254
```
@@ -262,6 +266,7 @@ Containers are configured using parameters passed at runtime (such as those abov
262266
| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
263267
| `-v /config` | Users home directory in the container, stores program settings. |
264268
| `-v /data` | Host data directories, mount as many as needed. |
269+
| `--shm-size=` | Recommended for all desktop images. |
265270

266271
## Environment variables from files (Docker secrets)
267272

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

426431
## Versions
427432

433+
* **22.09.25:** - Rebase to Debian Trixie.
428434
* **28.07.25:** - Fix CPU usage bug by disabling fake udev.
429435
* **12.07.25:** - Rebase to Selkies, HTTPS IS NOW REQUIRED.
430436
* **05.07.24:** - Add rar, 7zip, ace, and arj archive support.

readme-vars.yml

Lines changed: 3 additions & 3 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 program settings."}
@@ -28,6 +25,8 @@ param_usage_include_ports: true
2825
param_ports:
2926
- {external_port: "3000", internal_port: "3000", port_desc: "Double Commander desktop gui HTTP, must be proxied."}
3027
- {external_port: "3001", internal_port: "3001", port_desc: "Double Commander desktop gui HTTPS."}
28+
custom_params:
29+
- {name: "shm-size", name_compose: "shm_size", value: "1gb", desc: "Recommended for all desktop images."}
3130
# Selkies blurb settings
3231
selkies_blurb: true
3332
show_nvidia: true
@@ -107,6 +106,7 @@ init_diagram: |
107106
"doublecommander:latest" <- Base Images
108107
# changelog
109108
changelogs:
109+
- {date: "22.09.25:", desc: "Rebase to Debian Trixie."}
110110
- {date: "28.07.25:", desc: "Fix CPU usage bug by disabling fake udev."}
111111
- {date: "12.07.25:", desc: "Rebase to Selkies, HTTPS IS NOW REQUIRED."}
112112
- {date: "05.07.24:", desc: "Add rar, 7zip, ace, and arj archive support."}

0 commit comments

Comments
 (0)