mirror of
https://github.com/LiamAEdwards/SS14-Docker-Linux-Server.git
synced 2026-02-14 23:14:39 +01:00
974d47dab11176804cfd7abc2972bd5c3b9c4d1b
SS14-Docker-Linux-Server 🚀
Containerized deployment of the Space Station 14 server on Linux.
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
-
Clone the repository
git clone https://github.com/LiamAEdwards/SS14-Docker-Linux-Server.git && cd SS14-Docker-Linux-Server -
Configure Your Server
Edit the
appsettings.yml&server_config.tomlto match your desired configuration. -
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:mainOr using Docker Compose:
First, create a
docker-compose.ymlfile: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: alwaysThen, run with:
docker-compose up -d
Description
Languages
Dockerfile
88.3%
Shell
11.7%