From 1814e093cf736e8e22a6443b3d3009a70f30e282 Mon Sep 17 00:00:00 2001 From: sascha Date: Tue, 2 Jun 2026 16:06:32 +0200 Subject: [PATCH] Add Satisfactory server compose.yaml --- compose.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 compose.yaml diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..25ce593 --- /dev/null +++ b/compose.yaml @@ -0,0 +1,28 @@ +services: + satisfactory: + image: wolveix/satisfactory-server:latest + container_name: satisfactory + hostname: satisfactory + restart: unless-stopped + ports: + - "7777:7777/udp" # Game Port + - "15000:15000/udp" # Beacon Port + - "15777:15777/udp" # Query Port + volumes: + - "/app-config/satisfactory:/config" + - "/app-config/satisfactory/backups:/config/backups" + environment: + - MAXPLAYERS=8 + - TIMEOUT=600 + - SERVERSTREAMING=0 + - AUTOLOADONSTART=1 + - AUTOPAUSED=0 + - AUTOSAVEONEXIT=1 + - DISABLESEASONALEVENTS=0 + - PGID=1000 + - PUID=1000 + logging: + driver: json-file + options: + max-size: "10m" + max-file: "3"