For the complete documentation index, see llms.txt. This page is also available as Markdown.

Remove Container When It Exists

By default, Docker doesn't remove containers when they exit, this can lead storage getting full. To remove a container as soon as it exits, we can pass --rm argument in docker run command.

Usage

docker run --rm ubuntu echo "Hello Docker"

Source: Docker Docs

Last updated