Devorein
Devorein

Reputation: 1339

Cannot remove docker application and container in docker desktop

This nodedocker docker application has been stuck on my docker desktop for a while now. I've tried deleting it numerous times to no avail. Running docker ps shows no running container. I even tried deleting the container nodedocker_database_1, but the results the same. Running docker compose down -v tears down all other containers except for this one. Any sort of lead would be helpful.

enter image description here

Upvotes: 8

Views: 8928

Answers (4)

Brian Chan
Brian Chan

Reputation: 180

If you use the Docker Desktop app GUI to remove all the individual containers, the application should also be removed.

Upvotes: 12

Ethem
Ethem

Reputation: 81

don't try to delete the container group. If you delete the containers under the group one by one, your problem will be solved. The group is already deleted automatically.

Upvotes: 1

Allisson Araujo
Allisson Araujo

Reputation: 51

You can remove with terminal using this commands:

  • To list all containers with id and other infos

    docker ps -a

to remove the container:

docker rm "idOfContainer" without ""

Upvotes: 5

user15916881
user15916881

Reputation:

Usually closing and restarting docker desktop fixes the issue.

Upvotes: 3

Related Questions