Skip to content

Unraid: Valheim server can't find my world map files #207

Answered by guillian77
guillian77 asked this question in Q&A
Discussion options

You must be logged in to vote

Hi

First, thanks for help and answers from everyone !

After multiple test, I found a solution to make it run successfuly under an UnRAID OS environment.

• I create a new folder under /mnt/cache/valheim-server.
/mnt/cache is not supervised by the UnRAID parity system.
So UnRAID do not try to save in real time everything is wrote on this disk.

• I create a little shell script to initialise my docker settings.
touch /mnt/cache/valheim-server/docker.sh

#!/bin/bash
#encoding=utf8

set -e

docker run -d \
    --name valheim-server \
    -p 2456:2456/udp \
    -v /mnt/cache/valheim-server/config:/config \
    -e SERVER_NAME="ServerNameHere" \
    -e WORLD_NAME="Dedicated" \
    -e SERVER_PASS="S…

Replies: 9 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by lloesche
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants
Converted from issue

This discussion was converted from issue #161 on March 10, 2021 18:26.