jellyfin / jellyfin-webos

WebOS Client for Jellyfin
https://jellyfin.org
Mozilla Public License 2.0
638 stars 65 forks source link

dev.sh does not work with selinux + documentation mistake #57

Closed oddstr13 closed 2 years ago

oddstr13 commented 3 years ago

Tried to run docker builder, but it fail with following error:

docker: Error response from daemon: failed to create shim: OCI runtime create failed: container_linux.go:380: starting container process caused: exec: "ares-build": executable file not found in $PATH: unknown.

after checking location of ares cli location, there is no ares-build executable

but it work fine with ares-package, so should it be used instead of ares-build?

running dev.sh without any argument to list commands fail with error on system with selinux, it will prevent building after switching to ares-package. To fix it z/Z switch for docker volume mount should be used

  docker container run -it --rm --user=$UID --network=host -v "${MY}":/home/developer:Z $CONTAINER_IMAGE "$@"

Originally posted by @Tokariew in https://github.com/jellyfin/jellyfin-webos/issues/32#issuecomment-899031203