Closed manuquentin closed 10 years ago
Sometimes docker inspect [name] returns an error because of conflict name. If the db is a container of the gaudi/db image :
docker inspect [name]
db
gaudi/db
# docker inspect db Error: Conflict between containers and images
So the gaudi --check is not able to retrieve the db status.
gaudi --check
Gaudi should use the docker ps command to retrieve the db container id. This id can be passed to docker inspect to avoid name conflict.
docker ps
docker inspect
Sometimes
docker inspect [name]
returns an error because of conflict name. If thedb
is a container of thegaudi/db
image :So the
gaudi --check
is not able to retrieve thedb
status.Gaudi should use the
docker ps
command to retrieve thedb
container id. This id can be passed todocker inspect
to avoid name conflict.