Docker Error: … is mounted on / but it is not a shared mount
codemonday
Docker Error: … is mounted on / but it is not a shared mount
move up
linefacebookx
move up
linefacebookx

Docker Error: … is mounted on / but it is not a shared mount

Jul 11, 2023
Docker

Got this error after changing machine and docker-compose up
Meaning this might be issue from different Docker version.

Trailing Slash

Found the problem is from trailing slash, so change docker-compose.yml

(-) -./sftp:/home/user-upload/
(+) -./sftp:/home/user-upload

Change from user-upload/ to user-upload make this work

Hope this help !