Docker 에서 localhost 접속

Younghwan Cha·2023년 1월 19일
0

Docker

목록 보기
8/18
post-thumbnail

Docker 내부에서 localhost 에 접속하려면 어떻게 하면 될까?
예를 들어서 Docker 에서 localhost 의 DB 를 사용하고 싶다면?

host.docker.internal 을 사용하면 된다.

# docker-compose.ymal

services:
	ubuntu:
    	image: ubuntu
        extra_hosts:
            - "host.docker.internal: host-gateway"

이후에 컨테이너 내부에서 다음과 같은 요청을 보내면 정상적으로 응답이 온다

# Docker 내부

curl host.docker.internal

https://shanepark.tistory.com/209

profile
개발 기록

0개의 댓글