tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Container Management > Docker > How to stop a running Container

How to stop a running Container

Author: Venkata Sudhakar

Docker is an open platform to develop, ship, and run containerized applications. It separates infra from application to ease application development and support anywhere development strategy. The below example shows how to stop a running Container by using container name or container id.

01C:\>docker stop --help
02 
03Usage:  docker stop [OPTIONS] CONTAINER [CONTAINER...]
04 
05Stop one or more running containers
06 
07Options:
08  -t, --time int   Seconds to wait for stop before killing it (default 10)
09   
10C:\>docker stop 8734e9e8b551
118734e9e8b551
12 
13C:\>docker stop happy_kalam
14happy_kalam

 
  


  
bl  br