Skip to content
Snippets Groups Projects
Commit 32a11e23 authored by Recolic's avatar Recolic :house_with_garden:
Browse files

Update README.md

parent 1d2befc3
No related branches found
No related tags found
No related merge requests found
...@@ -498,6 +498,12 @@ docker build -t recolic/smbd -f /tmp/Dockerfile $(mktemp -d) ...@@ -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 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 ## simple http server
<https://github.com/TheWaWaR/simple-http-server> <https://github.com/TheWaWaR/simple-http-server>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment