Question - SQL problem - table exist

Hi, I get this error on ermaba container. I tried to drop database make again. Recreating all containers delete images and create again. I am also delete all volumes ale recreating all containers nothing happen. Nothing works can you help me?

Hello,

Try to clean your whole docker engine and start again:

docker kill $(docker ps -q)

docker rm $(docker ps -a -q)

docker rmi $(docker images -q)

docker system prune -a -f --volumes

works thanks

1 Like