Skip to content

docker samba server + client running in a loop in order to reproduce bug

Notifications You must be signed in to change notification settings

piec/docker-samba-loop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

Build client image:

docker build -t client-smb:1 .

Run server:

docker run -it --rm --name samba -p 139:139 -p 445:445 -v $PWD/exports:/share dperson/samba -s "public;/share"

Run client in a loop:

while true; do
    date
    docker run -it --rm --name client-smb --cap-add=SYS_ADMIN --cap-add DAC_READ_SEARCH --security-opt apparmor:unconfined --link samba:samba client-smb:1
    date
    sleep 1
done

About

docker samba server + client running in a loop in order to reproduce bug

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published