dockur / samba

Samba SMB server in a Docker container.
MIT License
169 stars 20 forks source link

umbrelOS 1.2.2 #26

Open TuffyDK opened 1 day ago

TuffyDK commented 1 day ago

Hi.

I dont think your Samba works on umbrelOS 1.2.2 - Well I cant get it to work. It does install ok, but I cant reach the share from my other pc's (2)

If I do at net view, i get this error.

C:\Users\tuffy>net view 192.168.2.100 System error 1707 has occurred.

The network address is invalid.

Maybe you should take a look at your Samba docker???

/Frank

kroese commented 1 day ago

I did not create that Umbrel app, but someone else did: https://github.com/getumbrel/umbrel-apps/pull/1161

If you read the discussion there, you will see that the port used by the app is 446 instead of 445. And that Windows tools like net view and Explorer are unable to connect to fileshares on a different port (for Linux and Mac its no problem).

The reason its not using port 445 is that there is already another app in Umbrel that also uses that port and it would be a problem to install them both at the same time. But I think that would be less of a problem than the issue you are facing now, so please report your problem at the above link.

TuffyDK commented 1 day ago

Hi Kroese,

Thanks for your input, I appreache it.

Seems u are correct - I changed the port 446 to 445 and now it works - I dont think I have anything else running on that port (for now)

ports:
  - '446:445'

to

ports:
  - '445:445'

/Frank