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

8f7669d · Dec 8, 2017

History

4 Commits
Jul 26, 2017
Jul 28, 2017
Dec 6, 2017

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