docker-compose rm

rm

1
2
3
4
5
6
7
Usage: rm [options] [SERVICE...]
 
Options:
    -f, --force   Don't ask to confirm removal
    -v            Remove any anonymous volumes attached to containers
    -a, --all     Also remove one-off containers created by
                  docker-compose run

Removes stopped service containers.

By default, anonymous volumes attached to containers will not be removed. You can override this with -v. To list all volumes, use docker volume ls.

Any data which is not in a volume will be lost.

doc_docker
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.