-
System InformationOperating System: Ubuntu 24.04.2 LTS Issue DescriptionRunning into permission issues starting image for the first time. It's trying to create /home/steam, gets permission denied, then exits out. docker-compose.yaml Directories exist and have these owners and permissions Steam is in the docker group Using latest Also triedAlso tried running this as a different "valheim" user (in the docker and steam groups) with both steam and valheim PUID/GUIDs. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
PUID is a deprecated option, please try with the following user flag services:
valheim:
image: mbround18/valheim:latest
user: "1000:1000"
On your host chown -R 1000:1000 ./valheim |
Beta Was this translation helpful? Give feedback.
PUID is a deprecated option, please try with the following user flag
On your host chown -R 1000:1000 ./valheim