In this guide, we'll assume you're running Ubuntu 22.04 LTS. Because we won't be covering many distros, the guide will only use the most popular one.
- Open your terminal
- Do a
sudo apt update
- Then we must install the following prerequisites:
sudo apt install -y apt-transport-https ca-certificates curl software-properties-common
- Then we need to add the GPG key from the official Docker repository to our system:
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
- Then we will add the Docker repository to our APT sources:
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
- Do another
sudo apt update
to let the system update the packages, now including the Docker repository. - Let's install Docker and docker-compose:
sudo apt-get install -y docker-ce docker-ce-cli containerd.io docker-compose-plugin
- After that's done, let's add the current user to the docker group, so we don't need to write
sudo
all the time while using docker:
sudo usermod -aG docker ${USER}
- You will need to re-log your user, for this to take effect (open and close your terminal, if you're using a headless Ubuntu server)
I like to put my stuff in /opt/
so that's what we will do for now
- Let's create the folders needed. We will need sudo privilige to create folders in
/opt/
.
sudo mkdir -p /opt/docker/skyrimserver/{config,Data,logs}
- Now let us take ownership of the folders
sudo chown -R ${USER}:${USER} /opt/docker
- Docker is extremely simple to get up and running
- We just need to run this command, and Docker will take care of the rest:
docker run -d -it --name skyrimserver -p 10578:10578/udp -v /opt/docker/skyrimserver/config:/home/server/config -v /opt/docker/skyrimserver/Data:/home/server/Data -v /opt/docker/skyrimserver/logs:/home/server/logs tiltedphoques/st-reborn-server:latest
- Docker will now download the latest server image, and run it afterwards.
- If you want to see the logs in your terminal, you can use this command:
docker logs -tf "skyrimserver"
- If you would like to attach to your server console to enter commands (such as
/help
), you can use this command:
docker attach skyrimserver
- Note: to detach from the console, the default hotkey is
CTRL+P,Q
. This means you hold Left-Control, then you press and release P, and then press and release Q.
- Note: to detach from the console, the default hotkey is
- Now your server is up and running.
- To stop your
skyrimserver
, simply run the following command in your console and it will stop your Skyrim Together Reborn server:docker stop skyrimserver -t 1
- To start it again, simply run the following command in your console and it will start your Skyrim Together Reborn server again:
docker start skyrimserver
- To restart the server, run the following command in your console and it will stop *and* start the server:
docker restart skyrimserver -t 1
version: "3"
services:
skyrimserver:
container_name: skyrimserver
image: tiltedphoques/st-reborn-server:latest
ports:
- "10578:10578/udp"
volumes:
- /opt/docker/skyrimserver/config:/home/server/config
- /opt/docker/skyrimserver/logs:/home/server/logs
- /opt/docker/skyrimserver/Data:/home/server/Data
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
restart: unless-stopped
stdin_open: true
tty: true