Stopping a running Container

Procedure

Enter the docker stop command with the Container ID in the command line to stop the Container. To allow graceful shutdown of processes within an Appliance Container, a timeout value of 600 seconds is recommended. This can be achieved as in the following example.
# sudo docker stop {container-id} -t 600
Note: {container-id} can be the first six characters of the Container ID.
Example: Loading Appliance Containers
This Container ID: 

c644228d71f84be86420b44ed53f9927401fcd5c638e4ce77fdd72ec28b47d43 

Can be entered in the docker stop command as: 

# sudo docker stop c64422 -t 600