Hey guys, I'm trying to run `docker/sdk up` but ev...
# docker
d
Hey guys, I'm trying to run
docker/sdk up
but everytime I do that I get an error saying Error response from daemon:
Ports are not available: exposing port TCP 0.0.0.0:80 -> 0.0.0.0:0: listen tcp 0.0.0.0:80: bind: An attempt was made to access a socket in a way forbidden by its access permissions
. I don't have any other services running in port 80. Also, the database container logs
[Warning] Access denied for user 'root'@'localhost' (using password: NO)
. Has anyone else had this problem?
p
How do you ensure that the port is not used by another process? 1. Check what process occupies the port:
Copy code
sudo lsof -nPi:80 | grep LISTEN
https://docs.spryker.com/docs/scos/dev/troubleshooting/troubleshooting-spryker-in-doc[…]applications-in-docker/port-is-already-occupied-on-host.html