Reputation: 1339
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.
Upvotes: 8
Views: 8928
Reputation: 180
If you use the Docker Desktop app GUI to remove all the individual containers, the application should also be removed.
Upvotes: 12
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
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