Describe the bug
Permission issue when running with the rootless docker or podman.
To reproduce
- Have rootless podman configured
- Run the following command
podman run --rm -it -v "$(pwd)":/app "orhunp/linuxwave:${TAG:-latest}"
You'll get the error
Reading 96 bytes from /dev/urandom
Saving to output.wav
Error occurred: error.AccessDenied
Expected behavior
Having output.wav in the current directory
Software information
- OS: Arch linux
- Rootless podman
Additional context
Solution
Remove those lines from the Dockerfile
chown 1000:1000 output.wav
USER 1000:1000
Note
You can remove -it option for docker or podman, it's not needed
Nice tool, GJ 💯
Describe the bug
Permission issue when running with the rootless docker or podman.
To reproduce
You'll get the error
Expected behavior
Having
output.wavin the current directorySoftware information
Additional context
Solution
Remove those lines from the Dockerfile
Note
You can remove
-itoption for docker or podman, it's not neededNice tool, GJ 💯