diff --git a/README.md b/README.md
index f55122cce3cca0c19e737cbdeee05d081e94d4a3..ed8fc28dae88892d6cc9fd5aec3226c51830d5db 100644
--- a/README.md
+++ b/README.md
@@ -498,6 +498,12 @@ docker build -t recolic/smbd -f /tmp/Dockerfile $(mktemp -d)
 docker run -tid --publish 445:445 --publish 137:137 --publish 138:138 --publish 139:139 --volume /mnt/fsdisk/nfs:/srv --name smbshare --restart=always recolic/smbd
 ```
 
+But SAW doesn't allow access public smb share.. use this naive solution
+
+```
+docker run -it --rm --name samba -p 445:445 -e "USER=samba" -e "PASS=secret" -v (pwd):/storage dockurr/samba
+```
+
 ## simple http server
 
 <https://github.com/TheWaWaR/simple-http-server>