사설 ip 대역에서 docker repository를 이용해야 하는 경우가 있다.
 
현재 docker repositry의 경우 ssl 과 도메인 사용을 강제하고 있어서 사설 ip 대역에서 사용하기 힘들다.
 
이 경우에는 아래 명령어를 통해 무시하는 사이트를 등록하고 우회해야 한다.
 
echo -e '{\n\t"insecure-registries": ["{repository_host}:{repository_port}"] \n}' | sudo tee /etc/docker/daemon.json
>> /etc/docker/daemon.json 파일에 insecure-registries 옵션으로 특정 사이트를 등록하는 명령어
 
이 명령어를 실행 후 docker 서비스를 재시작하면 된다.
 
 
 

+ Recent posts