What is the best practice for mounting an S3 container inside a docker image that will be using as a ClearML agent? I can think of 3 solutions, but have been unable to get any to work currently:
I was able to get another option entirely to work, namely, mount a drive on in WSL and then pass it to Docker. Let's get to it:
Why not host in Windows itself, why rclone in WSL?
Steps to mount the drive in ClearML in Windows:
/data/my-mount
(this needs to be in /data
- I don't know why and I can't find out with a Google search, but I found out about it here)--config
option)./data/my-mount
rather than /data/my mount
. There is a bug that I opened about this.docker run -it -v \\wsl$\Ubuntu\data:/data my-docker-image:latest ls /data/my-mount
docker: Error response from daemon: error while creating mount source path
C:\Users\Myself\clearml.conf
such that:default_docker: {
# default docker image to use when running in docker mode
image: "my-docker-image:latest"
# optional arguments to pass to docker image
arguments: ["-v","\\wsl$\Ubuntu\data:/data", ]
}
["-v","/data:/data", ]
.clearml-agent daemon --docker