renegademaster/satisfactory-dedicated-server

By renegademaster

Updated over 4 years ago

Simple Satisfactory Dedicated Server (Unofficial)

Image
Networking
Web servers
1

6.9K

renegademaster/satisfactory-dedicated-server repository overview

Satisfactory Dedicated Server

Disclaimer

Note: This image is not officially supported by Valve, nor by Coffee Stain Studios

If issues are encountered, please report them on the GitHub repository

Badges

Docker Image Version (latest by date) Docker Image Size (latest by date) Docker Pulls

Description

Dedicated Server for Satisfactory using Docker, and optionally Docker-Compose.
Built almost from scratch to be the smallest Satisfactory Dedicated Server around!

Source:

Resource links:

Instructions

Docker

The following are instructions for running the server using the Docker image.

  1. Acquire the image locally:

    • Pull the image from DockerHub:

      docker pull renegademaster/satisfactory-dedicated-server:<tagname>
      
    • Or alternatively, build the image:

      git clone https://github.com/Renegade-Master/satisfactory-dedicated-server.git \
          && cd satisfactory-dedicated-server
      
      docker build -t renegademaster/satisfactory-dedicated-server:<tag> -f docker/satisfactory-server.Dockerfile .
      
  2. Run the container:
    Optional arguments table:

    ArgumentDescriptionValuesDefault
    GAME_VERSIONGame version to servepublic, experimentalpublic
    MAX_PLAYERSMax player count1-16+16
    BIND_IPIP to bind the server to127.0.0.10.0.0.0 / [::]
    QUERY_PORTPort for other players to connect to1000-6553515777
    GAME_PORTPort for sending game data to clients1000-655357777

    Note: Arguments inside square brackets are optional. If the default ports are to be overridden, then the published ports below must also be changed

    mkdir SatisfactoryDedicatedServer SatisfactorySaveGames
    
    docker run --detach \
        --mount type=bind,source="$(pwd)/SatisfactoryDedicatedServer",target=/home/steam/SatisfactoryDedicatedServer \
        --mount type=bind,source="$(pwd)/SatisfactorySaveGames",target=/home/steam/.config/Epic/FactoryGame/Saved/SaveGames \
        --publish 15777:15777/udp --publish 15000:15000/udp --publish 7777:7777/udp \
        --publish 15777:15777/tcp --publish 15000:15000/tcp --publish 7777:7777/tcp \
        --name satisfactory-server \
        --user=$(id -u):$(id -g) \
        [--env=GAME_VERSION=<value>] \
        [--env=MAX_PLAYERS=<value>] \
        [--env=BIND_IP=<value>] \
        [--env=QUERY_PORT=<value>] \
        [--env=GAME_PORT=<value>] \
        renegademaster/satisfactory-dedicated-server[:<tagname>]
    
Docker-Compose

The following are instructions for running the server using Docker-Compose.

  1. Download the repository:

    git clone https://github.com/Renegade-Master/satisfactory-dedicated-server.git \
        && cd satisfactory-dedicated-server
    
  2. Make any configuration changes you want to in the docker-compose.yaml file. In the services.satisfactory-server.environment section, you can change values for:

    ArgumentDescriptionValuesDefault
    GAME_VERSIONGame version to servepublic, experimentalpublic
    MAX_PLAYERSMax player count1-16+16
    BIND_IPIP to bind the server to127.0.0.10.0.0.0 / [::]
    QUERY_PORTPort for other players to connect to1000-6553515777
    GAME_PORTPort for sending game data to clients1000-655357777

    Note: If the default ports are to be overridden, then the published ports must also be changed

  3. In the docker-compose.yaml file, you must change the service.satisfactory-server.user values to match your local user. To find your local user and group ids, run the following command:

    printf "UID: %s\nGID: %s\n" $(id -u) $(id -g)
    
  4. Run the following command:

    mkdir SatisfactoryDedicatedServer SatisfactorySaveGames
    
    docker-compose up -d
    

Tag summary

Content type

Image

Digest

Size

40.5 MB

Last updated

over 4 years ago

docker pull renegademaster/satisfactory-dedicated-server:1.0.6