-
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
'개발 일기' 카테고리의 다른 글
Windows 포트 잠김 해결법 (0) 2021.08.02 Django FileField upload_to Custom 야매 적용기 (0) 2021.07.12 selenium Tips (0) 2021.07.08 Django restframework ModelViewSet Delete, Update (0) 2021.06.07 알고리즘 풀다가 어이없던 일 (0) 2021.05.31