Docker 이미지를 버전화하는 방법은 무엇입니까?
If we use git for version management of our code base, similarly we can use Docker as our version management tool for applications.
"Icecream"이라는 애플리케이션이 있다고 상상해 봅시다.
"Icecream"애플리케이션을 "Fridge"라는 리포지토리에 저장할 것이므로 명령을 실행하여 루트 액세스 권한을 얻습니다.
sudo -i
docker login Fridge
docker pull Fridge/Icecream:plain
// syntax: docker pull repo_name/Image_name:version_tag
docker build -t Icecream:plain
// this command is executed from the working directory where our docker file is placed
docker run -it Icecream:plain bash
docker ps
docker commit <container_id> Icecream:vanilla
docker run -it Icecream:plain bash
docker ps
docker commit <container_id> Icecream:chocolate
docker push Icecream:vanilla
docker push Icecream:chocolate
더 알아보기: Doge Algo 🐶
지원하기Buy Me a Coffee
Reference
이 문제에 관하여(Docker 이미지를 버전화하는 방법은 무엇입니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/danyson/how-to-version-docker-images-cl0텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)