After running docker compose down and then using docker compose up -d all players start with a new fresh player character.
/opt/vintagestory shows the player and world data.
Still after restarting the server, all progress is lost.
version: '3.8'
services:
vintagestory-server:
image: ghcr.io/darkmatterproductions/vintagestory:latest
container_name: vintagestory-server
ports:
- "42420:42420/tcp"
- "42420:42420/udp"
volumes:
- /opt/vintagestory:/vintagestory/data
environment:
- ENABLE_DEBUG_LOGGING=false
- ENABLE_CHAT_LOGGING=true
- VS_CFG_SERVER_NAME=My Vintage Story Server
- VS_CFG_MAX_CLIENTS=16
- VS_CFG_ENFORCE_WHITELIST=1
restart: unless-stopped
After running
docker compose downand then usingdocker compose up -dall players start with a new fresh player character./opt/vintagestoryshows the player and world data.Still after restarting the server, all progress is lost.