lloesche / valheim-server-docker

Valheim dedicated gameserver with automatic update, World backup, BepInEx and ValheimPlus mod support
https://hub.docker.com/r/lloesche/valheim-server
Apache License 2.0
1.94k stars 272 forks source link

server version #116

Closed Mickroz closed 3 years ago

Mickroz commented 3 years ago

Hi, i cannot connect to the server because the server version: has incompatible version, mine:0.146.11@0.9 remote 0.146.11 There is no update for valheim, so im guessing this is beta version?

im deploying through stack:

---
version: "2"
services:
  valheim-server:
    image: lloesche/valheim-server
    container_name: valheim-server
    network_mode: host
    environment:
      - PUID=1026
      - PGID=100
      - TZ=Europe/Amsterdam
      - SERVER_NAME=Server Name
      - WORLD_NAME=worldname
      - SERVER_PASS=secret
      - VALHEIM_PLUS=true
    ports:
      - 2456-2458:2456-2458/udp
    volumes:
      - /volume1/docker/valheim/config:/config
      - /volume1/docker/valheim/data:/opt/valheim
    restart: unless-stopped
lloesche commented 3 years ago

You enabled ValheimPlus and configured the server so that clients require ValheimPlus (default) but don't have ValheimPlus installed on your client. Either configure the mod so clients don't require ValheimPlus

[Server]
enabled=true
enforceMod=false

or install ValheimPlus on the client.

Mickroz commented 3 years ago

ahh, i really don't need v+ but its the easiest way of enabling mods, i set: [Server] enabled=false

and now it works, thanks for the fast reply!!

lloesche commented 3 years ago

You can also just leave V+ enabled and set enforceMod=false that way the clients don't require the mod and server side only mods like data rate adjustments still work.

Mickroz commented 3 years ago

ah that's even better! thanks!