some few clarifications, the size of the docker image is that large because it is reserved space for your installed docker containers. See it as a VM image that you have set to a certain size as well, the space is reserved for that purpose.

The reason why you have problems with your docker is because your mover is trying or is actually moving something in relation to your docker (probably the image) to your array.

So, the natural misconfiguration is that your shares are trying to move something to your secondary storage that shouldn't be moved there in the first place.

My general rule of thumb is this:

So, for example, Video files are usually read more often so they should be written on the cache temporarily but then stored long-term on the array. Files like the docker AppData or the Docker image or virtual machine images should not be put on the array because they have frequent writes that would always force your array to update the parity and keep the drives running and the writes and reads happen randomly because of the many applications inside of the docker containers so you would hinder yourself in terms of usability speed when they are running on much slower HDDs.

But that doesn't mean you shouldn't include the array as a secondary storage location, instead, you should configure your share with the mover action cache <- array. This means that even when, for some reason, files are being written to the array that are in a share that should be on the cache, the mover would move them to the cache.

So if I understand you correctly then my problem is indeed because the mover is moving things around it shouldn't, I'm guessing mostly the content of /appdata/docker/ because otherwise it shouldn't stop containers which were shut down while the mover was working from being started back up again.

So the solution is to keep /appdata/ on the SSD pool while using the array as fallback storage in case writing to the pool temporarily isn't possible for some reason?

Also, should I set docker back to using an image file instead of a folder and maybe move it to its own dedicated share, possibly with a SSD for itself alone?