[Docker] Error response from daemon: driver failed programming external connectivity on endpoint ... Bind for 0.0.0.0:8080 failed: port is already allocated.

mew·2022년 11월 25일
0

Errors

목록 보기
7/8

You need to make sure that the previous container you launched is killed, before launching a new one that uses the same port.

docker container ls
docker rm -f <container-name/container_id>
or
docker stop <container_id>

다시 docker container ls를 했을 때 해당 포트의 container가 없어야 한다

profile
안녕하세요

0개의 댓글