mirror of
https://github.com/Merith-TK/docker-vintagestory
synced 2025-01-18 22:30:27 +00:00
updated version to 1.13.2
This commit is contained in:
parent
1d19925778
commit
e8025f3f94
2 changed files with 12 additions and 3 deletions
|
@ -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"
|
||||
|
|
13
README.md
13
README.md
|
@ -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)
|
Loading…
Reference in a new issue