updated version to 1.13.2

This commit is contained in:
Maik Laschober 2020-09-02 10:09:52 +02:00
parent 1d19925778
commit e8025f3f94
2 changed files with 12 additions and 3 deletions

View file

@ -4,7 +4,7 @@ FROM alpine as downloader
WORKDIR /download
ARG vs_type=stable
ARG vs_version=1.13.1
ARG vs_version=1.13.2
RUN wget "https://cdn.vintagestory.at/gamefiles/${vs_type}/vs_server_${vs_version}.tar.gz"
RUN tar xzf "vs_server_${vs_version}.tar.gz"

View file

@ -57,5 +57,14 @@ volumes:
gamedata:
```
# using unstable versions
to use unstable versions just replace tag `latest` with `unstable` in `Dockerfile`
# Using unstable versions
To use unstable versions just replace tag `latest` with `unstable` in `Dockerfile`
# Updating container
To update to the latest version call `docker pull devidian/vintagestory` first, this will download the newest latest base image. Then execute `docker-compose up -d --build` if you have not changed any other files it should not override them (did not for me)
# Copy/Override files
To copy and override files use `docker exec vsserver cp [local path] [docker-path]` where `docker-path` is starting with `/gamedata/vs-custom/..` for the example composer file. This is useful to update white/blacklists manually or update `serversettings.json`
# 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)