I have a container started as the following:
docker run --interactive --tty --gpus all --name my_container
--workdir "/home/ubuntu" --user ubuntu
--volume /hdd/all_cv/paiv/metis:/home/ubuntu/my --publish 8888:8888 my
how do I run interactively with my_container once I reboot my machine?
docker runa new container in parallel to the existing one, ordocker execa debugging shell, are the usual approaches; have you tried either of these?docker run, it won't allow me to start a new container with the same name, so what I need to do is actually to use the existing one (and I hope to use it interactively). So the question is how to achieve that with existing docker?