I went through all the internet resources and all AI/GPT help
Tried all most all methods to mount the shared sftp path to my docker container.
docker run --network host -v //dmns.domain-eg .com/shared:/app -it ubuntu bash
not able to see any files or folders inside /app
I also tried by using volumes
docker volume create ^
–driver local ^
–opt type=cifs ^
–opt device=//dmns.domain-eg.com/shared ^
–opt o=addr=dmns.domain-eg.com,username=ganesh,password=pass,file_mode=0777,dir_mode=0777 ^
sftpMunt
docker run --network host -it --mount type=volume,source=sftpMunt,target=/mnt ubuntu bash
still not able to mount!!!
@Docker please help to solve the issue.