250x250
반응형
Notice
Recent Posts
Recent Comments
전산쟁이의 기억노트
podman기반의 컨테이너 정보 설정 본문
728x90
반응형
SMALL
insecure registry 설정
podman기반에서 insecure registry 설정방법
$> vi /etc/containers/registries.conf
...
unqualified-search-registries = ["registry.fedoraproject.org", "registry.access.redhat.com", "registry.centos.org", "docker.io", "20.20.20.20", "10.10.10.10"]
...
[[registry]]
location = "10.10.10.10:80"
insecure = true
[[registry]]
location = "20.20.20.20:80"
insecure = true
daemonless이기 때문에 바로 적용
$> podman login 10.10.10.10:80
Username:
Password:
Login Successed
- 기존 Docker에서 컨테이너 내려받을때는 포트정보가 없어도 되었지만, podman에서 내려받을때는 :80을 꼭 명시해야 함(default가 443이기 때문에 포트정보가 없는 경우 443으로 내려받으려고 시도함
컨테이너 저장경로 변경
podman 기반에서 컨테이너 스토리지 경로 변경
$> vi /etc/containers/storage.conf
...
runroot = "/service/containers/storage"
graphroot = "/service/containers/storage"
...
출처 - http://igoni.kr/books/linux/page/podman
728x90
반응형
LIST
'컨테이너&가상화' 카테고리의 다른 글
docker 와 cri-o 비교 (0) | 2022.07.24 |
---|---|
podman사용하기 (0) | 2022.07.24 |
Podman기반의 DNS연동 (0) | 2022.07.22 |
CRI-O기반의 k8s설치 (0) | 2022.07.22 |
container에서 the input device is not a TTY 로그 출력시 조치 (0) | 2022.07.22 |
Comments