Confirmed that error not present in previous versions.
Culprit
When you run the command, the docker container spawns and then closes because of the early failure. To discover the permissions issues, run the docker run command and afterwards have another window that runs export ID=$(sudo docker ps --no-trunc | awk 'NR==2 {print $1}') && sudo docker exec -it $ID ls -lrt /. Did this with OS 1.5.0, 1.8.0, and 1.9.0 Docker Images and the culprit seems to be related to ownership.
Describe the bug
When users attempt to mount a file to OSB 1.9.0 Docker Image, it fails with a permissions error
Confirmed that error not present in previous versions.
Culprit
When you run the command, the docker container spawns and then closes because of the early failure. To discover the permissions issues, run the docker run command and afterwards have another window that runs
export ID=$(sudo docker ps --no-trunc | awk 'NR==2 {print $1}') && sudo docker exec -it $ID ls -lrt /
. Did this with OS 1.5.0, 1.8.0, and 1.9.0 Docker Images and the culprit seems to be related to ownership.To reproduce
chmod -R 777
.Expected behavior
When users run the same command but for OSB 1.5.0 and 1.8.0 Docker Images, it works.
Screenshots
No response
Host / Environment
Additional context
No response
Relevant log output
No response