Yury Bushev

Results 35 comments of Yury Bushev

I have narrowed down the issue and created a minimal Dockerfile to reproduce the problem. It appears that the anomaly occurs after installing `mono-devel`: ```Dockerfile FROM nestybox/ubuntu-noble-systemd-docker:latest AS base RUN...

Hey guys! I attempted to use `bindfs` to resolve the issue: ```bash sudo bindfs -o force-user=root,force-group=root,perms=0755 /mnt/nfs_share/docker /mnt/bindfs/docker ``` However, I encountered the following error when running Docker: ``` docker:...

BTW, Is there a way to share a directory between hosts so that it can be mapped to a Sysbox container? I've tried methods like SSHFS and others, but none...

Hey! No, unfortunately, I couldn’t get it to work with BindFS. I ran into issues with symbolic links and ACL. I haven’t revisited the problem since then.

I've also attempted to use separate NFS shares like so: > cat /etc/exports ``` /var/cs/home 10.0.105.0/24(rw,no_subtree_check,all_squash,anonuid=166537,anongid=165536) # user:root /var/cs/docker 10.0.105.0/24(rw,no_subtree_check,all_squash,anonuid=165536,anongid=165536) # root:root ``` Next, I tried to mount them separately:...

I've tried once more to make things work, but unfortunately, I haven't been successful. I realized that I had incorrectly configured NFS sharing; the idmapping for NFS wasn't functioning as...

Thanks @nhoefer2 That looks like it could really help. I’ll give it a try next week and let you know how it goes. By the way, I’m using the XFS...

Unfortunately, it does not help me. I decided to give it another shot at attaching an NFS volume to a Docker container. Below, I’ve listed all the steps I took...

Hey Cesar, thanks for looking into that! I just tried what you suggested, and strangely enough, the previous error seems to have disappeared. I can now confirm that Docker is...

Hmm, no this doesn’t work either, but the error is somehow related to a symlink as before. ``` user@8c397c02138d:~$ docker run -it --rm alpine Unable to find image 'alpine:latest' locally...