Docker: Remove Container – Remove All Containers

To delete a particular Docker container firstly you have to find out the CONTAINER ID or NAME by listing the all Docker containers.

When the container for deletion is identified it can be removed with the docker rm command.

From the command-line it is also possible to remove stopped (unused) Docker containers only or, if it is needed, you can force removal of the all Docker containers. (more…)

Install Docker on Ubuntu-16.04

For ones, who want to build and run Docker containers on Ubuntu-16.04 – first of all it is required to install Docker itself.

To install the latest version of Docker and to be able to upgrade it easily in future – it is recommended to install Docker from the official repository.

In this guide i will show how to install free Docker CE (Community Edition) on Ubuntu-16.04 from the stable official repository, how to verify that it is installed correctly and will show the common post-installation steps to perform. (more…)