Sons of The Forest server is deployed automatically in a Docker container. You can modify the docker-compose.yml file if you wish and change the container name, ports, etc. The file is under the /sotf folder and the default content is this:
version: '3.9' services: sons-of-the-forest-dedicated-server: container_name: sons-of-the-forest-dedicated-server image: jammsen/sons-of-the-forest-dedicated-server:latest restart: always environment: PUID: 1000 PGID: 1000 ALWAYS_UPDATE_ON_START: true SKIP_NETWORK_ACCESSIBILITY_TEST: true FILTER_SHADER_AND_MESH_AND_WINE_DEBUG: true ports: - 8766:8766/udp - 27016:27016/udp - 9700:9700/udp volumes: -./game:/sonsoftheforest
Extended configuration settings, which are not covered by Docker Compose, can be setup in the config-file of the server - you can find it at /sotf/game/userdata/dedicatedserver.cfg
