docs(docker): add ipc note (#3034)

This commit is contained in:
ReenigneArcher 2024-08-16 17:18:35 -04:00 committed by GitHub
commit 727ea9037e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -54,6 +54,7 @@ docker run -d \
--device /dev/dri/ \ --device /dev/dri/ \
--name=<image_name> \ --name=<image_name> \
--restart=unless-stopped \ --restart=unless-stopped \
--ipc=host \
-e PUID=<uid> \ -e PUID=<uid> \
-e PGID=<gid> \ -e PGID=<gid> \
-e TZ=<timezone> \ -e TZ=<timezone> \
@ -80,6 +81,7 @@ services:
- PUID=<uid> - PUID=<uid>
- PGID=<gid> - PGID=<gid>
- TZ=<timezone> - TZ=<timezone>
ipc: host
ports: ports:
- "47984-47990:47984-47990/tcp" - "47984-47990:47984-47990/tcp"
- "48010:48010" - "48010:48010"
@ -125,6 +127,9 @@ port `47990` (e.g. `http://<host_ip>:47990`). The internal port must be `47990`,
| `-e PGID=<gid>` | Group ID | `1001` | False | | `-e PGID=<gid>` | Group ID | `1001` | False |
| `-e TZ=<timezone>` | Lookup [TZ value][1] | `America/New_York` | False | | `-e TZ=<timezone>` | Lookup [TZ value][1] | `America/New_York` | False |
For additional configuration, it is recommended to reference the *Games on Whales*
[sunshine config](https://github.com/games-on-whales/gow/blob/2e442292d79b9d996f886b8a03d22b6eb6bddf7b/compose/streamers/sunshine.yml).
[1]: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones [1]: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
#### User / Group Identifiers: #### User / Group Identifiers: