genie-server
genie-server copied to clipboard
Podman run fails with Error: statfs /genie-server: no such file or directory
I have tried to manual install genie server with podman, but the run cmd allways fails with:
:~$ podman run --name genie -p 3000:3000
-v /dev/shm:/dev/shm
-v $XDG_RUNTIME_DIR/pulse:/run/pulse
-e PULSE_SERVER=unix:/run/pulse/native
-v $XDG_CONFIG_HOME/genie-server:/var/lib/genie-server
--security-opt label=disable
docker.io/stanfordoval/almond-server
Error: statfs /genie-server: no such file or directory
Internet says, that volume over remote are not supportet with podman. But that doesnt make sense to me here. I really cant figure out whats the problem, any suggestions why this is failing?
It seems that you don't have XDG_CONFIG_HOME set correctly, ensure that XDG_CONFIG_HOME is set by running export XDG_CONFIG_HOME=${XDG_CONFIG_HOME:-"$HOME/.config"}
I have the same problem. I followed @kondor6c's advice, after retrying to launch this container I get the following error message: Error: statfs /home/pi/.config/genie-server: no such file or directory
So how can this container be launched properly?