Skip to content

Commit 1a5a78a

Browse files
committed
rebase to trixie
1 parent 05dc8d3 commit 1a5a78a

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
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: 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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,7 @@ services:
230230
ports:
231231
- 3000:3000
232232
- 3001:3001
233+
shm_size: "1gb"
233234
restart: unless-stopped
234235
```
235236
@@ -245,6 +246,7 @@ docker run -d \
245246
-p 3001:3001 \
246247
-v /path/to/config:/config \
247248
-v /path/to/data:/data \
249+
--shm-size="1gb" \
248250
--restart unless-stopped \
249251
lscr.io/linuxserver/doublecommander:latest
250252
```
@@ -262,6 +264,7 @@ Containers are configured using parameters passed at runtime (such as those abov
262264
| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
263265
| `-v /config` | Users home directory in the container, stores program settings. |
264266
| `-v /data` | Host data directories, mount as many as needed. |
267+
| `--shm-size=` | Recommended for all desktop images. |
265268

266269
## Environment variables from files (Docker secrets)
267270

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

426429
## Versions
427430

431+
* **22.09.25:** - Rebase to Debian Trixie.
428432
* **28.07.25:** - Fix CPU usage bug by disabling fake udev.
429433
* **12.07.25:** - Rebase to Selkies, HTTPS IS NOW REQUIRED.
430434
* **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)