|
|
hace 1 año | |
|---|---|---|
| .github | hace 1 año | |
| Dockerfile | hace 1 año | |
| LICENSE | hace 2 años | |
| README.md | hace 1 año | |
| docker-compose.yml | hace 1 año | |
| entrypoint.sh | hace 1 año | |
| kasmvnc-entrypoint.sh | hace 1 año | |
| selkies-gstreamer-entrypoint.sh | hace 1 año | |
| supervisord.conf | hace 1 año | |
| xgl.yml | hace 1 año |
KDE Plasma Desktop container designed for Kubernetes, supporting OpenGL EGL and GLX, Vulkan, and Wine/Proton for NVIDIA GPUs through WebRTC and HTML5, providing an open-source remote cloud/HPC graphics or game streaming platform. Spawns its own fully isolated X.Org X11 Server instead of using the host X Server, not requiring /tmp/.X11-unix host sockets or host configuration.
Use docker-nvidia-egl-desktop for a KDE Plasma Desktop container which directly accesses NVIDIA (and unofficially Intel and AMD) GPUs without using an X.Org X11 Server, supports sharing one GPU with many containers, supports Apptainer/Singularity, and automatically falling back to software acceleration in the absence of GPUs (but with lower graphics performance).
Please read Troubleshooting first, then use Discord or GitHub Discussions for support questions. Please only use Issues for technical inquiries or bug reports.
Container startup may take some time at first launch as it could automatically install NVIDIA driver libraries compatible with the host.
For Windows applications or games, Wine, Winetricks, Lutris, Heroic Launcher, PlayOnLinux, and q4wine are bundled by default. Comment out the section where it is installed within Dockerfile if the user wants containers without Wine.
The container requires host NVIDIA GPU driver versions of at least 450.80.02 and preferably 470.42.01 (the latest minor version in each major version), with the NVIDIA Container Toolkit to be also configured on the host for allocating GPUs. The latest minor versions (xx in 000.xx.00) are strongly encouraged. All Maxwell or later generation GPUs in the consumer, professional, or datacenter lineups should not have significant issues running this container, although the Selkies-GStreamer high-performance NVENC backend may not be available. Kepler GPUs are untested and likely does not support the NVENC backend, but can be mostly functional using fallback software acceleration.
The high-performance NVENC backend for the Selkies-GStreamer WebRTC interface is only supported in GPUs listed as supporting H.264 (AVCHD) under the NVENC - Encoding section of NVIDIA's Video Encode and Decode GPU Support Matrix. If your GPU is not listed as supporting H.264 (AVCHD), add the environment variable SELKIES_ENCODER to values including x264enc, vp8enc, or vp9enc in your container configuration for falling back to software acceleration, which also has a very good performance depending on your CPU.
There are two web interfaces that may be chosen in this container, the first being the default Selkies-GStreamer WebRTC HTML5 web interface (requires a TURN server or host networking for best performance), and the second being the fallback KasmVNC WebSocket HTML5 web interface. While the KasmVNC interface does not support audio forwarding, it can be useful for troubleshooting the Selkies-GStreamer WebRTC interface or using this container in constrained environments.
The KasmVNC interface can be enabled in place of Selkies-GStreamer by setting KASMVNC_ENABLE to true. KASMVNC_THREADS sets the number of threads KasmVNC should use for frame encoding, defaulting to all threads if not set. When using the KasmVNC interface, environment variables SELKIES_ENABLE_BASIC_AUTH, SELKIES_BASIC_AUTH_USER, SELKIES_BASIC_AUTH_PASSWORD, SELKIES_ENABLE_RESIZE, SELKIES_ENABLE_HTTPS, SELKIES_HTTPS_CERT, and SELKIES_HTTPS_KEY, used with Selkies-GStreamer, are also inherited. As with the Selkies-GStreamer WebRTC interface, the KasmVNC interface username and password will also be set to the environment variables SELKIES_BASIC_AUTH_USER and SELKIES_BASIC_AUTH_PASSWORD, also using ubuntu and the environment variable PASSWD by default if not set.
Run the container with Docker, Podman, or other NVIDIA-supported container runtimes (NVIDIA Container Toolkit required):
docker run --pull=always --name xgl -it -d --gpus 1 --tmpfs /dev/shm:rw -e TZ=UTC -e DISPLAY_SIZEW=1920 -e DISPLAY_SIZEH=1080 -e DISPLAY_REFRESH=60 -e DISPLAY_DPI=96 -e DISPLAY_CDEPTH=24 -e PASSWD=mypasswd -e SELKIES_ENCODER=nvh264enc -e SELKIES_VIDEO_BITRATE=8000 -e SELKIES_FRAMERATE=60 -e SELKIES_AUDIO_BITRATE=128000 -e SELKIES_BASIC_AUTH_PASSWORD=mypasswd -p 8080:8080 ghcr.io/selkies-project/nvidia-glx-desktop:latest
Alternatively, use Docker Compose by editing the docker-compose.yml file:
# Start the container from the path containing docker-compose.yml
docker compose up -d
# Stop the container
docker compose down
If the Selkies-GStreamer WebRTC HTML5 interface does not connect or is extremely slow, read Step 3 and the WebRTC and Firewall Issues section very carefully.
NOTE: The container tags available are
latestand24.04for Ubuntu 24.04,22.04for Ubuntu 22.04, and20.04for Ubuntu 20.04. Persistent container tags are available in the form24.04-20210101010101. Replace all instances ofmypasswdwith your desired password.SELKIES_BASIC_AUTH_PASSWORDwill default toPASSWDif unspecified. The container must NOT be run in privileged mode.
Change SELKIES_ENCODER to x264enc, vp8enc, or vp9enc when using the Selkies-GStreamer interface if your GPU does not support H.264 (AVCHD) under the NVENC - Encoding section in NVIDIA's Video Encode and Decode GPU Support Matrix.
The default username is ubuntu for both the web authentication prompt and the container Linux username. The environment variable PASSWD (defaulting to mypasswd) is the password for the container Linux user account, and SELKIES_BASIC_AUTH_PASSWORD is the password for the HTML5 interface authentication prompt. If SELKIES_ENABLE_BASIC_AUTH is set to true for Selkies-GStreamer but SELKIES_BASIC_AUTH_PASSWORD is unspecified, the HTML5 interface password will default to PASSWD.
NOTE: Only one web browser can be connected at a time with the Selkies-GStreamer WebRTC interface. If the signaling connection works, but the WebRTC connection fails, read Step 3 and the WebRTC and Firewall Issues section.
Additional configurations and environment variables for the Selkies-GStreamer WebRTC HTML5 interface are listed in lines that start with parser.add_argument within the Selkies-GStreamer Main Script or selkies-gstreamer --help.
Choose whether to use host networking, an internal TURN server, or an external TURN server.
A TURN server is required because you are self-hosting WebRTC, unlike commercial services using WebRTC.
There is an internal TURN server inside the container that may be used when an external TURN server or host networking is not available.
Add environment variables -e SELKIES_TURN_PROTOCOL=udp -e SELKIES_TURN_PORT=3478 -e TURN_MIN_PORT=65534 -e TURN_MAX_PORT=65535 (change the ports accordingly) with the docker run command (or uncomment the relevant docker-compose.yml sections), where the SELKIES_TURN_PORT should not be used by any other host process or container, and the TURN_MIN_PORT/TURN_MAX_PORT port range has to contain at least two ports also not used by any other host process or container.
Then, open the ports with the docker run arguments -p 8080:8080 -p 3478:3478 -p 3478:3478/udp -p 65534-65535:65534-65535 -p 65534-65535:65534-65535/udp (or uncomment the relevant docker-compose.yml sections) in addition to the web server port.
All these ports must be exposed to the internet if you need access over the internet. If you need use TURN within a local network, add -e SELKIES_TURN_HOST=[YOUR_INTERNAL_IP] with YOUR_INTERNAL_IP to the internal hostname or IP of the local network.
If UDP cannot be used, at the cost of higher latency and lower performance, omit the ports containing /udp and use the environment variable -e SELKIES_TURN_PROTOCOL=tcp.
The Selkies-GStreamer WebRTC HTML5 interface will likely just start working if you open UDP and TCP ports 49152–65535 in your host server network and add --network host to the above docker run command, or network_mode: 'host' in docker-compose.yml. When deploying multiple containers, you must also pass a new DISPLAY environment variable such as -e DISPLAY=:22, that is not used with any other X11 server or container in the same host, into the container.
However, host networking may be restricted or not be desired because of security reasons. If not available, check if the container starts working after omitting --network host.
If having no TURN server does not work, you need an external TURN server. Read the WebRTC and Firewall Issues section and add the environment variables -e SELKIES_TURN_HOST=, -e SELKIES_TURN_PORT=, and pick one of -e SELKIES_TURN_SHARED_SECRET= or both -e SELKIES_TURN_USERNAME= and -e SELKIES_TURN_PASSWORD= environment variables to the docker run command based on your authentication method.
Create the Kubernetes Secret with your authentication password (change keys and values as adequate):
kubectl create secret generic my-pass --from-literal=my-pass=YOUR_PASSWORD
NOTE: Replace
YOUR_PASSWORDwith your desired password, and change the namemy-passto your preferred name of the Kubernetes secret with thexgl.ymlfile changed accordingly as well. It is possible to skip the first step and directly provide the password withvalue:inxgl.yml, but this exposes the password in plain text.
Create the pod after editing the xgl.yml file to your needs, explanations are available in the file:
kubectl create -f xgl.yml
If the Selkies-GStreamer WebRTC HTML5 interface does not connect or is extremely slow, read Step 4 and the WebRTC and Firewall Issues section very carefully.
NOTE: The container tags available are
latestand24.04for Ubuntu 24.04,22.04for Ubuntu 22.04, and20.04for Ubuntu 20.04. Persistent container tags are available in the form24.04-20210101010101.SELKIES_BASIC_AUTH_PASSWORDwill default toPASSWDif unspecified. The container must NOT be run in privileged mode.
Change SELKIES_ENCODER to x264enc, vp8enc, or vp9enc when using the Selkies-GStreamer interface if your GPU does not support H.264 (AVCHD) under the NVENC - Encoding section in NVIDIA's Video Encode and Decode GPU Support Matrix.
The default username is ubuntu for both the web authentication prompt and the container Linux username. The environment variable PASSWD (defaulting to mypasswd) is the password for the container Linux user account, and SELKIES_BASIC_AUTH_PASSWORD is the password for the HTML5 interface authentication prompt. If SELKIES_ENABLE_BASIC_AUTH is set to true for Selkies-GStreamer but SELKIES_BASIC_AUTH_PASSWORD is unspecified, the HTML5 interface password will default to PASSWD.
NOTE: Only one web browser can be connected at a time with the Selkies-GStreamer WebRTC interface. If the signaling connection works, but the WebRTC connection fails, read Step 4 and the WebRTC and Firewall Issues section.
Additional configurations and environment variables for the Selkies-GStreamer WebRTC HTML5 interface are listed in lines that start with parser.add_argument within the Selkies-GStreamer Main Script or selkies-gstreamer --help.
Choose whether to use host networking, an internal TURN server, or an external TURN server.
A TURN server is required because you are self-hosting WebRTC, unlike commercial services using WebRTC.
There is an internal TURN server inside the container that may be used when an external TURN server or host networking is not available.
Uncomment the relevant environment variables SELKIES_TURN_PROTOCOL=udp, SELKIES_TURN_PORT=3478, TURN_MIN_PORT=65534, TURN_MAX_PORT=65535 (change the ports accordingly) within xgl.yml (within name: and value:), where the SELKIES_TURN_PORT should not be used by any other host process or container, and the TURN_MIN_PORT/TURN_MAX_PORT port range has to contain at least two ports also not used by any other host process or container. Then, open all of these ports in the Kubernetes configuration ports: section in addition to the web server port.
All these ports must be exposed to the internet if you need access over the internet. If you need use TURN within a local network, add the environment variable SELKIES_TURN_HOST=[YOUR_INTERNAL_IP] (within name: and value:) with YOUR_INTERNAL_IP to the internal hostname or IP of the local network.
If UDP cannot be used, at the cost of higher latency and lower performance, omit the ports containing /udp and use the environment variable SELKIES_TURN_PROTOCOL=tcp (within name: and value:).
Otherwise, the Selkies-GStreamer WebRTC HTML5 interface will likely just start working if you open UDP and TCP ports 49152–65535 in your host server network and uncomment hostNetwork: true in xgl.yml. When deploying multiple containers with hostNetwork: true, you must also pass a new DISPLAY environment variable such as the value :22, that is not used with any other X11 server or container in the same host, into the container.
However, host networking may be restricted or not be desired because of security reasons. If not available, check if the container starts working after commenting out hostNetwork: true.
If having no TURN server does not work, you need an external TURN server. Read the WebRTC and Firewall Issues section and fill in the environment variables SELKIES_TURN_HOST and SELKIES_TURN_PORT, then pick one of SELKIES_TURN_SHARED_SECRET or both SELKIES_TURN_USERNAME and SELKIES_TURN_PASSWORD environment variables, based on your authentication method.
Note that this section is only required for the Selkies-GStreamer WebRTC HTML5 interface.
For an easy fix to when the signaling connection works, but the WebRTC connection fails, open UDP and TCP ports 49152–65535 in your host server network (or use Full Cone NAT in your network router/infrastructure settings), then add the option --network host to your Docker command (or network_mode: 'host' in docker-compose.yml), or uncomment hostNetwork: true in your xgl.yml file when using Kubernetes (note that your cluster may have not allowed this, resulting in an error). This exposes your container to the host network, which disables network isolation.
When deploying multiple containers with host networking, you must also pass a new DISPLAY environment variable such as -e DISPLAY=:22, that is not used with any other X11 server or container in the same host, into the container.
If this does not fix the connection issue (normally when the host is behind another additional firewall) or you cannot use this fix for security or technical reasons, read the below text to set up an external TURN server.
In most cases when either of your server or client has a permissive firewall, the default Google STUN server configuration will work without additional configuration. However, when connecting from networks that cannot be traversed with STUN, a TURN server is required.
Read the instructions from Selkies-GStreamer if want to deploy an external TURN server or use a public TURN server instance. Read the last steps of each Docker/Kubernetes instruction to use an internal TURN server instead.
More information is available in the Selkies-GStreamer documentation.
With Docker (or Podman), use the -e option to add the SELKIES_TURN_HOST, SELKIES_TURN_PORT environment variables. This is the hostname or IP and the port of the TURN server (3478 in most cases).
You may set SELKIES_TURN_PROTOCOL to tcp if you are only able to open TCP ports for the coTURN container to the internet, or if the UDP protocol is blocked or throttled in your client network. You may also set SELKIES_TURN_TLS to true with the -e option if TURN over TLS/DTLS was properly configured.
You also require to provide either just SELKIES_TURN_SHARED_SECRET for time-limited shared secret TURN authentication, or both SELKIES_TURN_USERNAME and SELKIES_TURN_PASSWORD for legacy long-term TURN authentication, depending on your TURN server configuration. Provide just one of these authentication methods, not both.
If there is a TURN REST API server, provide the environment variable SELKIES_TURN_REST_URI to the TURN REST URI within this infrastructure. If there is a shared TURN server within an infrastructure, consider reading the TURN REST API documentation or provide the link to your infrastructure administrator to deploy a TURN REST API server.
More information is available in the Selkies-GStreamer documentation.
Your TURN server will use only one out of three ways to authenticate the client, so only provide one type of authentication method. The time-limited shared secret TURN authentication only requires the Base64 encoded SELKIES_TURN_SHARED_SECRET. The legacy long-term TURN authentication requires both SELKIES_TURN_USERNAME and SELKIES_TURN_PASSWORD credentials. The TURN REST API method only requires the SELKIES_TURN_REST_URI URI.
If there is a shared TURN server within an infrastructure, consider reading the TURN REST API documentation or provide the link to your infrastructure administrator to deploy a TURN REST API server.
Then, uncomment the lines in the xgl.yml file related to TURN server usage, updating the SELKIES_TURN_REST_URI environment variable as needed:
- name: SELKIES_TURN_REST_URI
value: "https://turn-rest.myinfrastructure.io:8443/myturnrest"
- name: SELKIES_TURN_PROTOCOL
value: "udp"
- name: SELKIES_TURN_TLS
value: "false"
Create a secret containing the TURN shared secret:
kubectl create secret generic turn-shared-secret --from-literal=turn-shared-secret=MY_SELKIES_TURN_SHARED_SECRET
NOTE: Replace
MY_SELKIES_TURN_SHARED_SECRETwith the shared secret of the TURN server, then changing the nameturn-shared-secretto your preferred name of the Kubernetes secret, with thexgl.ymlfile also being changed accordingly.
Uncomment the lines in the xgl.yml file related to TURN server usage, updating the SELKIES_TURN_HOST and SELKIES_TURN_PORT environment variables as needed:
- name: SELKIES_TURN_HOST
value: "turn.example.com"
- name: SELKIES_TURN_PORT
value: "3478"
- name: SELKIES_TURN_SHARED_SECRET
valueFrom:
secretKeyRef:
name: turn-shared-secret
key: turn-shared-secret
- name: SELKIES_TURN_PROTOCOL
value: "udp"
- name: SELKIES_TURN_TLS
value: "false"
NOTE: It is possible to skip the first step and directly provide the shared secret with
value:, but this exposes the shared secret in plain text. SetSELKIES_TURN_PROTOCOLtotcpif you were able to only open TCP ports while creating your own coTURN Deployment/DaemonSet, or if your client network throttles or blocks the UDP protocol at the cost of higher latency and lower performance.
Create a secret containing the TURN password:
kubectl create secret generic turn-password --from-literal=turn-password=MY_SELKIES_TURN_PASSWORD
NOTE: Replace
MY_SELKIES_TURN_PASSWORDwith the password of the TURN server, then changing the nameturn-passwordto your preferred name of the Kubernetes secret, with thexgl.ymlfile also being changed accordingly.
Uncomment the lines in the xgl.yml file related to TURN server usage, updating the SELKIES_TURN_HOST, SELKIES_TURN_PORT, and SELKIES_TURN_USERNAME environment variables as needed:
- name: SELKIES_TURN_HOST
value: "turn.example.com"
- name: SELKIES_TURN_PORT
value: "3478"
- name: SELKIES_TURN_USERNAME
value: "username"
- name: SELKIES_TURN_PASSWORD
valueFrom:
secretKeyRef:
name: turn-password
key: turn-password
- name: SELKIES_TURN_PROTOCOL
value: "udp"
- name: SELKIES_TURN_TLS
value: "false"
NOTE: It is possible to skip the first step and directly provide the TURN password with
value:, but this exposes the TURN password in plain text. SetSELKIES_TURN_PROTOCOLtotcpif you were able to only open TCP ports while creating your own coTURN Deployment/DaemonSet, or if your client network throttles or blocks the UDP protocol at the cost of higher latency and lower performance.
systemd, polkit, FUSE mounts, or sandboxed (containerized) application distribution systems like Flatpak, Snapcraft (snap), AppImage, and etc.--privileged mode or with --cap-add and do not want other containers to interfere.Upgrade to the latest minor version of the NVIDIA major driver versions 535, 550, or higher. The answer contains legacy information for people who cannot upgrade.
This project has been developed and is supported in part by the National Research Platform (NRP) and the Cognitive Hardware and Software Ecosystem Community Infrastructure (CHASE-CI) at the University of California, San Diego, by funding from the National Science Foundation (NSF), with awards #1730158, #1540112, #1541349, #1826967, #2138811, #2112167, #2100237, and #2120019, as well as additional funding from community partners, infrastructure utilization from the Open Science Grid Consortium, supported by the National Science Foundation (NSF) awards #1836650 and #2030508, and infrastructure utilization from the Chameleon testbed, supported by the National Science Foundation (NSF) awards #1419152, #1743354, and #2027170. This project has also been funded by the Seok-San Yonsei Medical Scientist Training Program (MSTP) Song Yong-Sang Scholarship, College of Medicine, Yonsei University, the MD-PhD/Medical Scientist Training Program (MSTP) through the Korea Health Industry Development Institute (KHIDI), funded by the Ministry of Health & Welfare, Republic of Korea, and the Student Research Bursary of Song-dang Institute for Cancer Research, College of Medicine, Yonsei University.