Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated memory limitiations (based on update 8) #200

Merged
merged 9 commits into from
Nov 19, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ docker run \
--env PUID=1000 \
--env STEAMBETA=false \
--memory-reservation=12G \
--memory 16G \
--memory 5G \
--publish 7777:7777/udp \
--publish 15000:15000/udp \
--publish 15777:15777/udp \
Expand All @@ -54,7 +54,7 @@ If you want to see the logs replace it with `--sig-proxy=false`.
Allows you to easily access your savegames.
* For the environment (`--env`) variables please see [here](https://github.com/wolveix/satisfactory-server#environment-variables).
* `--memory-reservation` -> Is a memory soft limit.
* `--memory 16G` -> Limits the RAM that the container uses to 16 Gigabytes.
* `--memory 5G` -> Limits the RAM that the container uses to 16 Gigabytes.
* `--publish` -> Specifies the ports that the container exposes.<br>
</details>

Expand Down Expand Up @@ -84,7 +84,7 @@ services:
deploy:
resources:
limits:
memory: 16G
memory: 5G
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would suggest setting the reservation to 5 and leaving the limit at 16. This will not deploy as the limit is lower than the reservation.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. Yes you're right must have forgotten this...
  2. I wouldn't leave the imit by 16

I ran some tests:
On a mid game safe game the server consumes between 2 and 4GB of RAM in endgame its like 4 to 5GB.
I'll update the numbers to this but it would be great if someone else could also test this to backup (or not refute) the numbers.

reservations:
memory: 12G
```
Expand Down