Difference between revisions of "Docker-compose down"

From wikieduonline
Jump to navigation Jump to search
 
(3 intermediate revisions by 3 users not shown)
Line 44: Line 44:
 
   
 
   
 
         Supported filenames: [[docker-compose.yml]], docker-compose.yaml
 
         Supported filenames: [[docker-compose.yml]], docker-compose.yaml
 +
 +
== Activities ==
 +
* Take down a service: [[docker compose up]] service -d
  
 
== Related commands ==
 
== Related commands ==
 
* {{docker-compose operations}}
 
* {{docker-compose operations}}
* [[docker-compose up]] SERVICE
+
* <code>[[docker-compose up]] SERVICE</code>
 +
* <code>[[docker-compose rm]]</code>
  
 
== See also ==
 
== See also ==

Latest revision as of 12:51, 12 April 2023

docker-compose down stops and removes containers, networks by default, using --volumes you can also delete volumes, and using --rmi you can delete images created by docker-compose up

By default, the only things removed are:

  • Containers for services defined in the Compose file
  • Networks defined in the networks section of the Compose file
  • The default network, if one is used
  • Networks and volumes defined as external are never removed.


Examples[edit]

docker-compose down
(no output)
-v, --volumes remove named volumes declared in the `volumes` section of the Compose file and anonymous volumes attached to containers.

Examples[edit]

  • docker-compose -volumes down SERVICE_NAME
  • docker-compose version 1.23.2, build 1110ad01
docker-compose down
Stopping service1   ... done
Stopping service2 ... done
Removing service1   ... done
Removing service2 ... done
Removing network your_network


docker-compose down
ERROR:
       Can't find a suitable configuration file in this directory or any
       parent. Are you in the right directory?

       Supported filenames: docker-compose.yml, docker-compose.yaml

Activities[edit]

Related commands[edit]

See also[edit]

Advertising: