BitR / empyrion-docker

Docker image for the Empyrion dedicated server using WINE

Home Page:https://hub.docker.com/r/bitr/empyrion-server

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ERROR! Failed to install app '530870' (Disk write failure)

easehack opened this issue · comments

When container is start it result this error : "ERROR! Failed to install app '530870' (Disk write failure)"
I assume it's probably the steam update. Can you help us with this ?

commented

Sounds like your permissions are wrong on your volume mounted gamedir.
You'll need to set the owner:group to 1000:1000 (usually the first user on your system).
So if you followed the README, do this: chown 1000:1000 gamedir

By default, docker will create directories owned by root:root when doing volume mounts when the directory didn't already exist.

Thank you for the quick answer. I did not see I have do change the permissions.
Looks better. Thank you for this project !

commented

Yeah, I assumed that you'd create the gamedir and that your userid would be 1000, I might update the README with that info :)

I also continually get this error and I can't figure out what permission is wrong. Am I supposed to be running the chown command outside of the entrypoint file and in my host system? (Windows using WSL)??

commented

You'll need to run chown 1000:1000 gamedir from outside the container.
I haven't tested the image on WSL though, as their actual server is written for Windows.

commented

Fixed by commit 710fa69