Star Rupture Dedicated Repo Fork
924
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 \
-v ./savegame:"/home/container/server_files/StarRupture/Saved/SaveGames" \
-v ./server:"/home/container/server_files" \
-e SERVER_PORT=7777 \
struppinet/starrupture-dedicated-server:latest
services:
starrupture:
container_name: starrupture
image: struppinet/starrupture-dedicated-server:latest
network_mode: bridge
environment:
- SERVER_PORT=7777
- MULTIHOME=192.168.0.XYZ
volumes:
- './savegame:/home/container/server_files/StarRupture/Saved/SaveGames:rw'
- './server:/home/container/server_files:rw'
ports:
- '7777:7777/udp'
- '7777:7777'
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 |
Github https://github.com/struppinet/starrupture-dedicated-server
Docker https://hub.docker.com/r/struppinet/starrupture-dedicated-server
Content type
Image
Digest
sha256:8571eed73…
Size
1.1 GB
Last updated
8 months ago
docker pull lancer1977/starrupture-dedicated-server