No description
Find a file
2023-10-04 06:23:44 +02:00
compose-default refactor: made using this repo/image more simple 2023-05-12 17:16:39 +02:00
build.stable.sh updated version to 1.15.4 2021-08-09 16:56:17 +02:00
build.unstable.sh updated version to 1.15.4 2021-08-09 16:56:17 +02:00
docker-compose.yml updated to 1.18.10 2023-09-04 21:16:04 +02:00
Dockerfile updated to 1.18.14 2023-10-04 06:23:44 +02:00
README.md refactor: made using this repo/image more simple 2023-05-12 17:16:39 +02:00

About this image

This image can be used to run a dedicated server for Vintage Story

Run this image with docker run

To run this image you can use docker run -pd 42420:42420 --name VintageStoryServer devidian/vintagestory:latest, but you may want to use a customized version for your needs so see following instructions.

Run this image with docker compose

To run this image with docker compose you can start using the following file:

version: '3.8'

services: 
  vsserver:
    image: devidian/vintagestory:latest
    container_name: vsserver
    restart: unless-stopped
    volumes: 
    # • your world will be in /appdata/vintagestory/vs by default (/gamedata/vs on the container)
    # • if you run multiple servers just change the left part 
    # • you could also use docker volumes instead of host path
      - /appdata/vintagestory:/gamedata
    ports:
      - 42420:42420

Using unstable versions

To use unstable versions just replace tag latest with unstable. See docker-compose.yml for all versions.

Updating container

To update to the latest version call docker compose pull first, this will download the newest latest base image. Then execute docker compose up -d.

Copy/Override files

If you use a host volume, you can just edit files there. First stop the container, then make your changes and start the container again.

Troubleshooting / Help / Issues

If you encounter any Problems or want some help feeel free to contact me on Discord (Devidian#1334) on my Discord Server (https://discord.gg/8h3yhUT) or write an issue at GitHub (https://github.com/Devidian/docker-vintagestory)