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

@@ -113,7 +113,7 @@
"TTL": 300,
"ResourceRecords": [
{
"Value": "2603:6013:3140:103:7656:3cff:febd:1df8"
"Value": "2603:6013:3140:103:21b:21ff:fee4:941a"
}
]
}
@@ -130,6 +130,19 @@
}
]
}
},
{
"Action": "UPSERT",
"ResourceRecordSet": {
"Name": "wolf.reeselink.com",
"Type": "AAAA",
"TTL": 300,
"ResourceRecords": [
{
"Value": "2603:6013:3140:100:2a0:98ff:fe0b:8800"
}
]
}
}
]
}

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
```