Home > Article > Operation and Maintenance > What should I do if the docker container cannot be stopped?
The solution is as follows:
1. Forcefully delete the container
docker rm -f jenkins
2. Clean up the network usage of this container
docker network disconnect --force bridge jenkins
Recommended Tutorial: docker tutorial
The above is the detailed content of What should I do if the docker container cannot be stopped?. For more information, please follow other related articles on the PHP Chinese website!