From d60ddd34380739b208160a2e22892cfb20889f67 Mon Sep 17 00:00:00 2001 From: Animesh Kumar Date: Sat, 11 Jul 2020 08:10:40 +0530 Subject: [PATCH] test: Update samba docker image Integration test now uses servercontainers/samba docker image. Signed-off-by: Animesh Kumar --- test/integration/run-test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/run-test.sh b/test/integration/run-test.sh index 57596eeb8..14e531855 100755 --- a/test/integration/run-test.sh +++ b/test/integration/run-test.sh @@ -24,7 +24,7 @@ readonly dirname="/tmp/$(date +%s)" mkdir "$dirname" export PERMISSIONS=0777 -docker run -it --name samba -p 445:445 -v "$dirname":/mount -d dperson/samba -u "username;test" -s "share;/mount/;yes;no;yes;all;none" -p +docker run -it --name samba -p 445:445 -v "$dirname":/mount -e ACCOUNT_USERNAME='test' -e SAMBA_VOLUME_CONFIG_username='[share]; path=/mount/; guest ok = yes; read only = no; browseable = yes' -d servercontainers/samba function cleanup { echo 'stop and delete samba container' docker stop samba