First of all, awesome work @Drahkar
Makes setting up a server a breeze!
---
Now, I also have issues with the whitelisting.
Here is my docker compose.yaml
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=0
restart: unless-stopped
VS_CFG_ENFORCE_WHITELIST should be set to false (0) which means no whitelist will be used, right?
Also tried (just for testing), the values "1","2" and "false".
None seem to work.
But sadly, there is still the "not in whitelist" issue.