A Satisfactory Server
🌄
It's been a while since my last blog post. I've been busy cooking up a big project that will bring together a lot of my recent work in containerizing game servers.
New Features
The latest addition to the game server fleet is Satisfactory! There's quite a few notable new features of this one, including:
- Automatic updates at runtime (no more rebuilding containers with each update)
- Implementation of SteamCMD, Valve's CLI tool for managing game files.
- Standardized framework for future builds and more.
How to Run the Server
- Ensure you have Docker installed on your system.
- In your terminal of choice, navigate to your docker-compose.yaml file and enter
docker compose up -d
. - After a few minutes, your server will be running.
In your docker-compose.yaml file, replace {SAVE DIR} and {BACKUP DIR} with the directories where you would like saves and backups to be placed.
Note: Docker must have read/write access to these directories.
Learn More
For more information, check out the Readme on GitHub: