Last active
June 9, 2022 21:42
-
-
Save mkosmo/0b3da048fabd607a3254b4cf0cadc0f9 to your computer and use it in GitHub Desktop.
Satisfactory Docker Compose
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.3' | |
services: | |
satisfactory-server: | |
restart: always | |
container_name: satisfactory-server | |
volumes: | |
- 'data:/steamcmd/satisfactory' | |
- 'saves:/app/.config' | |
ports: | |
- '7777:7777/udp' | |
- '15000:15000/udp' | |
- '15777:15777/udp' | |
environment: | |
- TZ=America/Chicago | |
- SATISFACTORY_BRANCH=public | |
- SATISFACTORY_START_MODE=0 | |
- SATISFACTORY_MULTIHOME=0.0.0.0 | |
image: 'didstopia/satisfactory-server:latest' | |
volumes: | |
data: | |
saves: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment