-3

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

christo4ferris
  • 4,039
  • 1
  • 17
  • 30

2 Answers2

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

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