Hello all,
I'll give a quick detailed run down and post the link to the video I followed. For a little bit of extra context this method has worked for me for a while. But after having to redeploy containers after a cataclysmic failure I now have no access to my network shared folder.
So this video by Novaspirit Tech goes over setting up a network shared folder by using an LXC container with docker running inside then further setting up samba share within that docker container. The inception here is a little crazy but it was working for quite some time. Now past me was trying to help future me by copying the entire command to create the share in case something went wrong and I had to re-deploy.
Here's the command:
docker run -it --restart unless-stopped --name samba -p 139:139 -p 445:445 -p 137-138:137-138/udp -v /root/share:/share -v /mnt/media:/mnt/media -d dperson/samba -u "username;password" -s "public;/share;yes;no;yes" -s "media;/mnt/media;yes;no;yes"
After re-deploying the samba share and going to my start menu "windows 11" and typing \\IP.IP.IP.IP I'm unable to access the folder. I get this:
Windows cannot access \\IP.IP.IP.IP
Check the spelling of the name. Otherwise, there might be a problem with your network. To try to identify and resolve network problems, click Diagnose.
In past experiences the issue resides within docker/samba share. If anyone has any insight and can provide assistance I'd appreciate the help to get my shared folder working again.
I'll give a quick detailed run down and post the link to the video I followed. For a little bit of extra context this method has worked for me for a while. But after having to redeploy containers after a cataclysmic failure I now have no access to my network shared folder.
So this video by Novaspirit Tech goes over setting up a network shared folder by using an LXC container with docker running inside then further setting up samba share within that docker container. The inception here is a little crazy but it was working for quite some time. Now past me was trying to help future me by copying the entire command to create the share in case something went wrong and I had to re-deploy.
Here's the command:
docker run -it --restart unless-stopped --name samba -p 139:139 -p 445:445 -p 137-138:137-138/udp -v /root/share:/share -v /mnt/media:/mnt/media -d dperson/samba -u "username;password" -s "public;/share;yes;no;yes" -s "media;/mnt/media;yes;no;yes"
After re-deploying the samba share and going to my start menu "windows 11" and typing \\IP.IP.IP.IP I'm unable to access the folder. I get this:
Windows cannot access \\IP.IP.IP.IP
Check the spelling of the name. Otherwise, there might be a problem with your network. To try to identify and resolve network problems, click Diagnose.
In past experiences the issue resides within docker/samba share. If anyone has any insight and can provide assistance I'd appreciate the help to get my shared folder working again.