ACR이란?
- Azure Container Registry로 컨테이너 이미지를 프라이빗하게 저장 가능
ACR 이름이 중복되지 않는지 확인하는 명령어
➜ ~ az acr check-name -n tpcableacr
{
"message": null,
"nameAvailable": true,
"reason": null
}
Azure CLI로 ACR 생성하기
1. 리소스그룹 생성
➜ ~ az group create -g tpcablerg -l koreacentral
[결과확인]
➜ ~ az group list --output table
2. ACR 생성
➜ ~ az acr create -g tpcablerg -l koreacentral -n tpcableacr --sku basic
[결과확인]
➜ ~ az acr list --output table
3. ACR build
Dockerfile이 있는 경로에서 아래와 같은 명령어를 입력하면 업로드 및 이미지 빌드 작업 수행
이미 이미지가 있다면, docker push ACR주소/Image:Tag 수행
➜ az acr build . --registry tpcableacr --image tmp:v1
결과 확인
'Kubernetes' 카테고리의 다른 글
[K8S] 쿠버네티스 정리 (0) | 2022.10.17 |
---|---|
Kubernetes 정리 (0) | 2022.06.16 |
[Kubernetes] Service 개체 (0) | 2021.07.04 |
[kubernetes] 쿠버네티스 아키텍쳐 (0) | 2021.07.04 |
docker 명령어 (0) | 2021.01.17 |