-
Notifications
You must be signed in to change notification settings - Fork 0
Windows Usage
github-actions[bot] edited this page Apr 12, 2026
·
1 revision
This page provides Windows-specific notes.
Home: Home
Short guidance:
- Use Docker Desktop for Windows.
- Install an X server on the host (for example, VcXsrv or Xming) if you need to forward X11 GUI from the container.
- Start the X server and allow connections from local addresses, then run the container and set
DISPLAYaccordingly (for examplehost.docker.internal:0.0or127.0.0.1:0depending on your setup).
Example (may vary by setup):
# Start X server on Windows host first
docker run -it --rm \
-e DISPLAY=host.docker.internal:0.0 \
-v ./user_code:/app/user_code \
raylib_containerWindows instructions are environment-dependent. If you want, I can expand these steps with a tested workflow for your environment.
Wiki links: Home overview Linux-Usage macOS-Compatibility