A satisfying server setup for Satisfactory!
1.5K
A painless Satisfactory server setup for Docker!
Start the container:
docker run -d \
--name satisfactory \
-p 7777:7777/tcp \
-p 7777:7777/udp \
-v ./SatisfactorySaves:/satisfactory/data \
--restart=unless-stopped \
satisfactory-server:latest
Help menu:
docker run --rm satisfactory --help
Start:
docker-compose -f ./docker-compose.yml up -d
Stop:
docker-compose stop satisfactory
You can use Docker environment variables to configure the server. Given that Satisfactory exposes msot of the server configurations in-game, the only property that can be configured via Docker is the maximum number of players allowed on the server.
Set the MAX_PLAYERS variable to change the default value of 4.
docker run -d \
--name satisfactory \
-p 7777:7777/tcp \
-p 7777:7777/udp \
-v ./SatisfactorySaves:/satisfactory/data \
-e MAX_PLAYERS=8 \
--restart=unless-stopped \
satisfactory-server:latest
Content type
Image
Digest
sha256:5ea97fdfe…
Size
1.5 GB
Last updated
9 months ago
docker pull rdall96/satisfactory-server