You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/images/docker-yaak.md
+26Lines changed: 26 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,6 +69,7 @@ This container is based on [Docker Baseimage Selkies](https://github.com/linuxse
69
69
70
70
| Variable | Description |
71
71
| :----: | --- |
72
+
| PIXELFLUX_WAYLAND |**Experimental** If set to true the container will initialize in Wayland mode running [Smithay](https://github.com/Smithay/smithay) and Labwc while enabling zero copy encoding with a GPU |
72
73
| CUSTOM_PORT | Internal port the container listens on for http if it needs to be swapped from the default `3000`|
73
74
| CUSTOM_HTTPS_PORT | Internal port the container listens on for https if it needs to be swapped from the default `3001`|
74
75
| CUSTOM_WS_PORT | Internal port the container listens on for websockets if it needs to be swapped from the default 8082 |
@@ -123,6 +124,30 @@ To launch the desktop session in a different language, set the `LC_ALL` environm
123
124
*`-e LC_ALL=nl_NL.UTF-8` - Netherlands
124
125
*`-e LC_ALL=it_IT.UTF-8` - Italian
125
126
127
+
### SealSkin Compatibility
128
+
129
+
This container is compatible with [SealSkin](https://github.com/linuxserver/docker-sealskin).
130
+
131
+
SealSkin is a self-hosted, client-server platform that provides secure authentication and collaboration features while using a browser extension to intercept user actions such as clicking a link or downloading a file and redirect them to a secure, isolated application environment running on a remote server.
132
+
133
+
***SealSkin Server:**[Get it Here](https://github.com/linuxserver/docker-sealskin)
When using 3d acceleration via Nvidia DRM or DRI3 it is important to clamp the virtual display to a reasonable max resolution. This can be achieved with the environment setting:
139
+
140
+
*`-e MAX_RESOLUTION=3840x2160`
141
+
142
+
This will set the total virtual framebuffer to 4K, you can also set a manual resolution to achieve this.
143
+
By default the virtual monitor in the session is 16K to support large monitors and dual display configurations. Leaving it this large has no impact on CPU based performance but costs GPU memory usage and memory bandwidth when leveraging one for acceleration. If you have performance issues in an accelerated session, try clamping the resolution to 1080p and work up from there:
144
+
145
+
```
146
+
-e SELKIES_MANUAL_WIDTH=1920
147
+
-e SELKIES_MANUAL_HEIGHT=1080
148
+
-e MAX_RESOLUTION=1920x1080
149
+
```
150
+
126
151
### DRI3 GPU Acceleration
127
152
128
153
For accelerated apps or games, render devices can be mounted into the container and leveraged by applications using:
@@ -607,5 +632,6 @@ To help with development, we generate this dependency graph.
607
632
608
633
## Versions
609
634
635
+
* **28.12.25:** - Add Wayland init logic.
610
636
* **29.07.25:** - Rebase to selkies. Breaking Change: HTTPS is now required. Either use a reverse proxy with SSL cert or direct connect to port 8181 with HTTPS.
0 commit comments