Currently, the following docker command is used: ``` docker ps ``` This will exclude terminated containers. However, terminated containers will still block execution of new container with the same name. Therefore use the following command instead: ``` docker ps --all ```