UnAfraid / docker-satisfactory

Satisfactory Game Dedicated Server containerized.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This is Satisfactory Game Dedicated Server containerized.

Usage

Here are some example snippets to help you get started creating a container.

docker-compose (recommended)

version: "3.4"

services:
    app:
        image: unafraid/satisfactory:latest
        container_name: satisfactory
        restart: unless-stopped
        environment:
          - PUID=1000
          - PGID=1000
          - TZ=Europe/Sofia
        ports:
          - "15777:15777/udp"
          - "15000:15000/udp"
          - "7777:7777/udp"
        volumes:
            - ./save:/config/.config/Epic
            - ./server:/app/SatisfactoryDedicatedServer
docker run -d \
  --name=satisfactory \
  -e PUID=1000 \
  -e PGID=1000 \
  -e TZ=Europe/Sofia \
  -p 15777:15777/udp \
  -p 15000:15000/udp \
  -p 7777:7777/udp \
  -v </path/to/save>:/config/.config/Epic \
  -v </path/to/server>:/app/SatisfactoryDedicatedServer \
  --restart unless-stopped \
  unafraid/satisfactory

About

Satisfactory Game Dedicated Server containerized.


Languages

Language:Dockerfile 100.0%