Skip to content

SDPowerStrok3/SS14-Docker-Linux-Server

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SS14-Docker-Linux-Server 🚀

Containerized deployment of the Space Station 14 server on Linux.

Create and publish a Docker image

Overview

This project is for those who prefer containerized solutions. It's based on the official documentation but wrapped up in a Docker container for convenience.

Quick Start

  1. Clone the repository

    git clone https://github.com/LiamAEdwards/SS14-Docker-Linux-Server.git && cd SS14-Docker-Linux-Server
  2. Configure Your Server

    Edit the appsettings.yml & server_config.toml to match your desired configuration.

  3. Run the Server

    Using Docker directly:

    docker run -d \
      -p 1212:1212/tcp \
      -p 1212:1212/udp \
      -p 5000:5000/tcp \
      -p 5000:5000/udp \
      -v /path/on/host:/ss14 \
      ghcr.io/liamaedwards/ss14-docker-linux-server:main

    Or using Docker Compose:

    First, create a docker-compose.yml file:

    version: '3'
    
    services:
      ss14-server:
        image: ghcr.io/liamaedwards/ss14-docker-linux-server:main
        ports:
          - "1212:1212/tcp"
          - "1212:1212/udp"
          - "5000:5000/tcp"
          - "5000:5000/udp"
        volumes:
          - /path/on/host:/ss14
        restart: always

    Then, run with:

    docker-compose up -d

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Dockerfile 86.7%
  • Shell 13.3%