@@ -50,8 +50,9 @@ docker run \
5050--env STEAMBETA=false \
5151--memory-reservation=4G \
5252--memory 8G \
53- --publish 7777:7777/udp \
5453--publish 7777:7777/tcp \
54+ --publish 7777:7777/udp \
55+ --publish 8888:8888/tcp \
5556wolveix/satisfactory-server:latest
5657```
5758
@@ -84,8 +85,9 @@ services:
8485 hostname : ' satisfactory-server'
8586 image : ' wolveix/satisfactory-server:latest'
8687 ports :
87- - ' 7777:7777/udp'
8888 - ' 7777:7777/tcp'
89+ - ' 7777:7777/udp'
90+ - ' 8888:8888/tcp'
8991 volumes :
9092 - ' ./satisfactory-server:/config'
9193 environment :
@@ -165,7 +167,8 @@ helm install satisfactory k8s-at-home/satisfactory -f values.yaml
165167| `MULTIHOME` | `::` | set the server's listening interface (usually not needed) |
166168| `PGID` | `1000` | set the group ID of the user the server will run as |
167169| `PUID` | `1000` | set the user ID of the user the server will run as |
168- | `SERVERGAMEPORT` | `7777` | set the game's port |
170+ | `SERVERGAMEPORT` | `7777` | set the game's server port |
171+ | `SERVERMESSAGINGPORT` | `8888` | set the game's messaging port |
169172| `SERVERSTREAMING` | `true` | toggle whether the game utilizes asset streaming |
170173| `SKIPUPDATE` | `false` | avoid updating the game on container start/restart |
171174| `STEAMBETA` | `false` | set experimental game version |
@@ -202,7 +205,8 @@ services:
202205 command: 'your-ftp-user:your-ftp-password:1000'
203206` ` `
204207
205- With this, you'll be able to SFTP into your server and access your game files via `/home/your-ftp-user/satisfactory-server/gamefiles`.
208+ With this, you'll be able to SFTP into your server and access your game files via
209+ ` /home/your-ftp-user/satisfactory-server/gamefiles` .
206210
207211# # How to Improve the Multiplayer Experience
208212
@@ -245,8 +249,9 @@ services:
245249 GID: 1001 # Your desired GID
246250 user: "1001:1001" # Must match UID:GID above
247251 ports:
248- - '7777:7777/udp'
249252 - '7777:7777/tcp'
253+ - '7777:7777/udp'
254+ - '8888:8888/tcp'
250255 volumes:
251256 - './satisfactory-server:/config'
252257 environment:
0 commit comments