add preliminary wolf docs

This commit is contained in:
2024-10-11 10:46:49 -04:00
parent 98ac374629
commit 227ad86026
2 changed files with 39 additions and 1 deletions

View File

@@ -0,0 +1,25 @@
# Wolf
Games on Whales
## Install
<https://games-on-whales.github.io/wolf/stable/user/quickstart.html>
```bash
docker run \
--name wolf \
--network=host \
-e XDG_RUNTIME_DIR=/tmp/sockets \
-v /tmp/sockets:/tmp/sockets:rw \
-e HOST_APPS_STATE_FOLDER=/etc/wolf \
-v /etc/wolf:/etc/wolf:rw \
-v /var/run/docker.sock:/var/run/docker.sock:rw \
--device /dev/dri/ \
--device /dev/uinput \
--device /dev/uhid \
-v /dev/:/dev/:rw \
-v /run/udev:/run/udev:rw \
--device-cgroup-rule "c 13:* rmw" \
ghcr.io/games-on-whales/wolf:stable
```