Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 923 Bytes

File metadata and controls

37 lines (28 loc) · 923 Bytes
title stop
description The stop command description and usage
keywords stop, SIGKILL, SIGTERM

stop

Usage:  docker stop [OPTIONS] CONTAINER [CONTAINER...]

Stop one or more running containers

Options:
      --help       Print usage
  -t, --time int   Seconds to wait for stop before killing it (default 10)

Description

The main process inside the container will receive SIGTERM, and after a grace period, SIGKILL.

Examples

$ docker stop my_container