I started a container using the below command connecting to linux server using putty.
docker start -i <containerid>
but I am not able exit from it and get back to command line, without closing the putty.
I started a container using the below command connecting to linux server using putty.
docker start -i <containerid>
but I am not able exit from it and get back to command line, without closing the putty.
docker start <container-id>
docker exec -it -d <container-id> bash
ordocker exec -d <container-id> bash
docker exec -it <container-id> bash
exit
docker ps -a
, the container will still be running, to stop it usedocker stop <container-id>
Example to quit interactive mode and keep the container alive: