-
-
Notifications
You must be signed in to change notification settings - Fork 304
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eb4bfde
commit c55c4b1
Showing
1 changed file
with
13 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -142,25 +142,31 @@ Follow the steps in the [README.md here](k8s/readme.md) to deploy it. | |
|
||
### Running without root | ||
|
||
This is only recommended for advance users | ||
This is only for advanced users | ||
|
||
It is possible to run this container and [override the default user](https://docs.docker.com/engine/reference/run/#user) which is root in this image. | ||
It is possible to run this container and | ||
Check failure on line 147 in README.md GitHub Actions / Lint - MarkdownTrailing spaces
|
||
[override the default user](https://docs.docker.com/engine/reference/run/#user) which is root in this image. | ||
|
||
Because you are specifiying the user and group `PUID` and `PGID` are ignored. | ||
|
||
If you want to find your UID: `id -u` | ||
If you want to find your GID: `id -g` | ||
|
||
You must set user to `NUMBERICAL_UID:NUMBERICAL_GID`. | ||
|
||
* In docker run add `--user 1000:1000 \` above the last line. | ||
* In docker compose add `user: 1000:1000` above ports. | ||
* In k8s add the following above the ports in deployment.yaml | ||
Below we assume your UID is 1000 and your GID is 1001 | ||
* In docker run add `--user 1000:1001 \` above the last line. | ||
Check failure on line 158 in README.md GitHub Actions / Lint - MarkdownLists should be surrounded by blank lines
|
||
* In docker compose add `user: 1000:1001` above ports. | ||
* In k8s add the following above the ports in deployment.yaml | ||
|
||
``` | ||
Check failure on line 162 in README.md GitHub Actions / Lint - MarkdownFenced code blocks should have a language specified
|
||
securityContext: | ||
runAsUser: 1000 | ||
runAsGroup: 1000 | ||
runAsGroup: 1001 | ||
``` | ||
|
||
If you wish to run it with a different UID/GID than your own you will need to change the ownership of the directory that is being bind: `chown UID:GID palworld/` | ||
If you wish to run it with a different UID/GID than your own you will need to change the ownership of the directory that | ||
is being bind: `chown UID:GID palworld/` | ||
or by changing the permissions for all other: `chmod o=rwx palworld/` | ||
|
||
#### Using helm chart | ||
|