34 lines
738 B
YAML
34 lines
738 B
YAML
# Satisfactory - Game server
|
|
# Port: 7777
|
|
# Satisfactory dedicated game server
|
|
|
|
services:
|
|
satisfactory-server:
|
|
container_name: 'satisfactory-server'
|
|
hostname: 'satisfactory-server'
|
|
image: 'wolveix/satisfactory-server:latest'
|
|
ports:
|
|
- '7777:7777/udp'
|
|
- '7777:7777/tcp'
|
|
volumes:
|
|
- /home/homelab/docker/sf:/data
|
|
environment:
|
|
- MAXPLAYERS=4
|
|
- PGID=1000
|
|
- PUID=1000
|
|
- ROOTLESS=false
|
|
- STEAMBETA=false
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: bash /healthcheck.sh
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 120s
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 6G
|
|
reservations:
|
|
memory: 4G
|