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: README.md
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -106,7 +106,9 @@ To use hardware acceleration in Wayland mode, we distinguish between the card us
106
106
*`DRINODE`: The path to the GPU used for **Rendering** (EGL).
107
107
*`DRI_NODE`: The path to the GPU used for **Encoding** (VAAPI/NVENC).
108
108
109
-
If both variables point to the same device, the container will automatically enable **Zero Copy** encoding, significantly reducing CPU usage and latency.
109
+
If both variables point to the same device, the container will automatically enable **Zero Copy** encoding, significantly reducing CPU usage and latency. If they are set to different devices one will be used for **Rendering** and one for **Encoding** with a cpu readback.
110
+
111
+
You can also use the environment variable `AUTO_GPU=true`, with this set the first card detected in the container (IE `/dev/dri/renderD128`) will be used and configured for **Zero Copy**.
110
112
111
113
##### Intel & AMD (Open Source Drivers)
112
114
@@ -121,8 +123,6 @@ For Intel and AMD GPUs.
121
123
- DRINODE=/dev/dri/renderD128
122
124
- DRI_NODE=/dev/dri/renderD128
123
125
```
124
-
125
-
126
126
### SealSkin Compatibility
127
127
128
128
This container is compatible with [SealSkin](https://sealskin.app).
@@ -143,12 +143,14 @@ This container is based on [Docker Baseimage Selkies](https://github.com/linuxse
143
143
| Variable | Description |
144
144
| :----: | --- |
145
145
| 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 |
146
+
| SELKIES_DESKTOP | If set to true and in Wayland mode, a simple panel will be initialized with labwc |
146
147
| CUSTOM_PORT | Internal port the container listens on for http if it needs to be swapped from the default `3000` |
147
148
| CUSTOM_HTTPS_PORT | Internal port the container listens on for https if it needs to be swapped from the default `3001` |
148
149
| CUSTOM_WS_PORT | Internal port the container listens on for websockets if it needs to be swapped from the default 8082 |
| DRI_NODE | **Encoding GPU**: Enable VAAPI/NVENC stream encoding and use the specified device IE `/dev/dri/renderD128` |
151
152
| DRINODE | **Rendering GPU**: Specify which GPU to use for EGL/3D acceleration IE `/dev/dri/renderD129` |
153
+
| AUTO_GPU | If set to true and in Wayland mode, we will automatically use the first GPU available for encoding and rendering IE `/dev/dri/renderD128` |
152
154
| PASSWORD | HTTP Basic auth password, abc is default. If unset there will be no auth |
153
155
| SUBFOLDER | Subfolder for the application if running a subfolder reverse proxy, need both slashes IE `/subfolder/` |
154
156
| TITLE | The page title displayed on the web browser, default "Selkies" |
@@ -589,6 +591,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
589
591
590
592
## Versions
591
593
594
+
***04.04.26:** - Make Wayland default disable with PIXELFLUX_WAYLAND=false.
592
595
***28.12.25:** - Add Wayland init logic, rebase to Alpine 3.23.
593
596
***12.07.25:** - Rebase to Selkies and Alpine 3.22, HTTPS IS NOW REQUIRED.
0 commit comments