Can anyone please help me to get out of this error?? i am stuck there and cannot find a solution to it enter image description here
Asked
Active
Viewed 110 times
2 Answers
3
Your port 8080 is in use. Either kill it or change the port while running up docker.
command to Kill a process on port 8080 in ubuntu
sudo kill sudo lsof -t -i:8080

Rohit Raghuvanshi
- 59
- 4
0
To find processes, type sudo lsof -t -i:8080
Kill them.
If the error occurs again, check if something is restarting these processes.
Perhaps they are in Docker containers and have been restarted or recreated.

Dan Anderson
- 2,265
- 1
- 9
- 20