This docker compose down
command stops containers and removes containers, networks, volumes, and images created by up
.
By default, the only things removed are:
networks
section of the Compose fileNetworks and volumes defined as external
are never removed.
$ docker compose down [OPTIONS]
Here,
OPTIONS:
—rmi
$type → Remove images and if:
—volumes
or -v
→ Remove named volumes declared in the volumes section.—remove-orphans
→ Remove containers for services not defined in the Compose file.—timeout
or -t
→ Specify a shutdown timeout in seconds(default is 10 seconds)