[tru@elitebook840g3 ~]$ docker images nixery.dev/shell/bash
REPOSITORY TAG IMAGE ID CREATED SIZE
nixery.dev/shell/bash latest 4edc2efa819a 292 years ago 105 MB
[tru@elitebook840g3 ~]$ docker run -ti nixery.dev/shell/bash bash
bash-5.1# ls -ld /
dr-xr-xr-x 14 0 0 15 Oct 26 22:37 /
bash-5.1#
as / is not writable by root, this is causing some issue for converting the docker image to a singularity container, but there is a workaround by using singularity build --fix-perms my.sif docker://nixery.dev/shell/bash.
There is no such thing afaik when trying to singularity run the docker image.
Would it be possible to "fix" the / permissions?
as / is not writable by root, this is causing some issue for converting the docker image to a singularity container, but there is a workaround by using
singularity build --fix-perms my.sif docker://nixery.dev/shell/bash.There is no such thing afaik when trying to
singularity runthe docker image.Would it be possible to "fix" the / permissions?