[Warning] Access denied for user '_5e5899d8398b5f7b'@'172.18.0.7' (using password: YES)

Did you read through these posts?

I don’t think they’ll be any useful because they also run on Linux machine.

1 Like

I Have done this multiple times but still can’t get Erp next to run as it did the first time.
I will have to dig deeper then.

To reset everything change above sequence to following.

# stop container
docker stop $(docker ps -qa)
# remove all containers
docker system prune -f
# remove all volumes
docker volume prune -f --all
# remove all images
docker image prune -f --all

Clearing the volumes and images first will only clear them for deleted containers.

1 Like