Sign inSign up

lancer1977/starrupture-dedicated-server

By lancer1977

•Updated 8 months ago

Star Rupture Dedicated Repo Fork

Image
0

924

lancer1977/starrupture-dedicated-server repository overview

⁠Docker for a StarRupture dedicated server

Static Badge Docker Hub

⁠Table of contents

This is a Docker container to help you get started with hosting your own StarRupture⁠ dedicated server.

⁠Info

  • Start the image with the wished port (7777 by default) and then connect ingame to start a game and set passwords.
  • This image uses the pterodactyl/wine yolk Ptero-Eggs⁠ as it was the only thing working. Thank you guys for your work!
VolumePathDescription
savegame/home/container/server_files/StarRupture/Saved/SaveGamesThe path where the savegame will be
server/home/container/server_filesThe path where steam will install the starrupture dedicated server (optional to store to avoid re-downloading)

⁠Docker Run

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

⁠Docker Compose

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

⁠Environment variables server settings

You can use these environment variables for your server settings:

VariableDefaultDescription
SERVER_PORT7777The 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⁠

Tag summary

Content type

Image

Digest

sha256:8571eed73…

Size

1.1 GB

Last updated

8 months ago

docker pull lancer1977/starrupture-dedicated-server