I'm working with my team on a machine with 4 GPUs, we want to use Docker containers, is there a possibility to update a container GPUs for example:
container #1
has 2 GPUs
and container #2
has 2 GPUs
, now we want to remove 1 GPU
from container #1
and add it to container #2
as result we will have;
container #1
= 1GPU
and container #2
= 3GPUs
I have seareched about that (see here) I only find that it's possible to update CPUs, RAM but there's nothing about GPUs.
I'm looking on a way to update the container without losing its content, not necessarily a running container I can stop it and do the update, but the installed packages and all modifications inside the container should remain exist, I hope you understand what I'm saying here.