-
I come from the AWS ECS package (https://github.com/rileydakota/valheim-ecs-fargate-cdk), and I am working on allowing users to populate the docker image with a world that already exists. https://github.com/RyoshiKayo/valheim-ecs-fargate-cdk/blob/bootstrap-world/lib/valheim-server-aws-cdk-stack.ts#L98-L99 Questions:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Check the "basic docker usage" section of the Readme. You don't really need a hook you just mount a folder that contains your worlds_local folder with worlds inside. |
Beta Was this translation helpful? Give feedback.
-
Figured this out. In the ECS repo we are mounting all of I was referencing files in |
Beta Was this translation helpful? Give feedback.
Figured this out. In the ECS repo we are mounting all of
/config
to a Elastic File System file system. I was running into issues because the backup I took from an older Valheim server version had a different format than what this docker image was using. So I had to reformat the ZIP archive and change the destination folderI was referencing files in
/home/valheim/
because some of the log messages referenced those locations, even though it looks like we're not directly using them..