I have Just redone the entire test setup from scratch with a new vm and it took a while downloading everything more than I remember for the other times ive tried and it seemed to be going well. I got to the last step sudo docker-compose up -d and got the same error I have been getting all along with the errors encountered bringing up the project etc. I cleared my virtualbox completely so I am unsure as to why this is happening as surely it should be a clean slate?
Please can you copy and paste command line output instead of taking screenshots, they make it harder to help you. After pasting the text, select it and press Ctrl+E so that is formatted with a monospace font, e.g.
❯ echo foobar
foobar
The error message indicates a process is already listening on port 5000, so when Docker tries to bind to the port it receives an “address already in use” error.
Please run the following commands from within the musicbrainz-docker directory and paste the output:
The output from lsof shows that you have a docker-registry binary running which is already bound to port 5000. This is the cause of the error when you run docker-compose up -d.
As @yvanzo mentioned above, you can change the port the MusicBrainz web server container listens on to get around this error, or alternatively you can stop the registry server (if you don’t need it).
I’m sorry, but we are unable help further than we already have. Consider starting from scratch following the well documented instructions which have worked for other users.