728x90
반응형
docker proxy
- docker.service에 프록시 설정해줘야함
# docker.service 경로 확인할 수 있음
$ sysmtemctl status docker
$ vi /usr/lib/systemd/system/docker.service
[Service]
httpProxy: "http://192.168.1.12:3128,
httpsProxy: "http://192.168.1.12:3128",
noProxy: *.test.example.com,.example2.com,127.0.0.0/8
$ systemctl daemon-reload
$ service docker restart
docker insecure registries
- 내부망 또는 테스트 환경에서 보안 설정을 모두 해제할 때 사용 ex)harbor
- This procedure configures Docker to entirely disregard security for your registry.
$ vi /etc/docker/daemon.json
{ "insecure-registries" :
["myregistrydomain.com:5000"]
}
728x90
반응형
'기타 > Docker' 카테고리의 다른 글
Docker) run할 때 git pull하기 (0) | 2021.11.12 |
---|---|
Docker) docker-compose 설치 (0) | 2021.10.06 |
Harbor) 인증서 설정하기_docker,linux (0) | 2021.09.10 |
Harbor) minio 연결하기 실수 (0) | 2021.09.09 |
Docker) [해결] dial tcp: lookup docker on *.*.*.*:53: no such host_gitlab-runner (0) | 2021.09.08 |