I'm newbie for docker. I want to shared files with zalenium but how can I pass accessModes:ReadWriteMany?
My test case needs to file upload.
I run zalenium like below
docker run --rm -ti -d --name zalenium -p 4444:4444 -v /var/run/docker.sock:/var/run/docker.sock -v /d/Zalanium/:/home/seluser/videos -v /d/shared_folder:/data --privileged dosel/zalenium start --videoRecordingEnabled false
I have a file to share with zalenium contaniers.
My shared folders : -v /d/shared_folder:/data
When I looked at zalenium website, They mentioned about shared folders
Like the Docker version of Zalenium, the Kubernetes version can automatically mount shared folders, the only catch is that when you are using persistent volumes you need to make sure that the Access Mode is set to ReadWriteMany, otherwise the selenium nodes will not be able to mount it.
I have not found any example.
Thank you for in advanced.