32 lines
No EOL
786 B
YAML
32 lines
No EOL
786 B
YAML
services:
|
|
satisfactory:
|
|
image: wolveix/satisfactory-server:latest
|
|
container_name: satisfactory
|
|
hostname: satisfactory
|
|
restart: unless-stopped
|
|
ports:
|
|
- "7777:7777/udp"
|
|
- "15000:15000/udp"
|
|
- "15777:15777/udp"
|
|
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
|
|
- SKIPUPDATE=false
|
|
- MULTIHOME=10.3.1.120
|
|
- DEBUG=false
|
|
command: ["-unattended"]
|
|
logging:
|
|
driver: json-file
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "3" |