docker-compose localhost
-
Docker-compose에서 localhost 사용하기개발 일기 2021. 8. 2. 14:50
서론 개인 프로젝트 간 애로사항 및 해결 내용을 정리한 페이지입니다. 본론 Docker를 사용하여 서비스를 연결할 때 localhost를 사용하지 못하는 상황이 벌어진다. 필자는 꽤나 여기저기 찾았으나 결론은 매우 간단했다. 각 서비스 부분에 extra_hosts를 넣으면 된다. memcached: image: memcached ports: - "11211:11211" extra_hosts: - host.docker.internal:host-gateway 이렇게 extra_hosts에 host.docker.internal:host-gateway를 넣고 localhost 사용할 부분에 host.docker.internal을 넣으면 된다. Reference https://stackoverflow.com/qu..