I have created a server using plumber
How do I stop the server?
"my approach -: once i get to know that , i will put a command , if we press a key then it will stop"
thanks in advance
there is no way to stop this server , after you create it ,
once you created press esc
to stop , there is no method like close
or stop
To stop the plumber server:
list all docker running with docker ps
sudo docker ps
get the {ID} of the process you want to stop and run the command
sudo docker kill {ID}