Dedicated game server for the StarRupture game
10K+
This is a Docker container to help you get started with hosting your own StarRupture dedicated server.
| Volume | Path | Description |
|---|---|---|
| savegame | /home/container/server_files/StarRupture/Saved/SaveGames | The path where the savegame will be |
| server | /home/container/server_files | The path where steam will install the starrupture dedicated server (optional to store to avoid re-downloading) |
docker run -d \
--name starrupture \
-p 7777:7777/udp \
-p 7777:7777/tcp \
-v ./savegame:"/home/container/server_files/StarRupture/Saved/SaveGames" \
-v ./server:"/home/container/server_files" \
-e SERVER_PORT=7777 \
-e USE_DSSETTINGS=true \
struppinet/starrupture-dedicated-server:latest
services:
starrupture:
container_name: starrupture
image: struppinet/starrupture-dedicated-server:latest
network_mode: bridge
environment:
- SERVER_PORT=7777
- USE_DSSETTINGS=true
volumes:
- './savegame:/home/container/server_files/StarRupture/Saved/SaveGames:rw'
- './server:/home/container/server_files:rw'
ports:
- '7777:7777/udp'
- '7777:7777/tcp'
restart: unless-stopped
You can use these environment variables for your server settings:
| Variable | Default | Description |
|---|---|---|
| SERVER_PORT | 7777 | The port that clients will connect to for gameplay |
| USE_DSSETTINGS | false | Set to true if you want a DSSettings.txt (auto-start) to be created |
Github https://github.com/struppinet/starrupture-dedicated-server
Docker https://hub.docker.com/r/struppinet/starrupture-dedicated-server
Content type
Image
Digest
sha256:de97d2f8e…
Size
1.1 GB
Last updated
5 months ago
docker pull struppinet/starrupture-dedicated-server