OS: Fedora Linux 36 (KDE) x86_64
Kernel: 6.2.15-100.fc36.x86_64
Docker version: 24.0.2, build cb74dfc
Docker Compose version: v2.18.1
I’m having an issue where the bound mount on a docker container just doesn’t work. None of the files in the host show up in the container and while everyone else on the team can easily build their containers I’m the only one left hanging.
A docker inspect
shows the mount correctly:
"Mounts": [
{
"Type": "bind",
"Source": "/var/www/html/ai-solutions/auditoria",
"Destination": "/var/www/html",
"Mode": "rw",
"RW": true,
"Propagation": "rprivate"
}
],
and yet, abolsutely no files show on the container.
The docker compose up --build -d
command runs without any errors - images and volumes are created, I can access the containers shells, etc… - but still, no files in the mount and I honestly don’t know what else I can do.
Can anyone please help?
TIA,