- Hands-On Kubernetes on Windows
- Piotr Tylenda
- 147字
- 2021-06-24 16:54:06
Image tagging and versioning
Docker images use tags in order to provide different versions of the same image in the repository – each image tag corresponds to a given Docker image ID. Specifying tags for Docker images is often performed during an image build, but you can also add tags explicitly using the docker tag command:
docker pull mcr.microsoft.com/dotnet/core/sdk
docker tag mcr.microsoft.com/dotnet/core/sdk:latest mydotnetsdk:v1
docker tag mcr.microsoft.com/dotnet/core/sdk:latest mydotnetsdk:v2
In this example, we pulled the latest image tag (as it was not specified explicitly) of the .NET Core SDK and then tagged the image with the mydotnetsdk:v1 and mydotnetsdk:v2 tags in the local image cache. Now, it is possible to use these tags while performing operations on your local machine, like so:
docker run -it --rm mydotnetsdk:v1
Let's take a look at the latest tag, which is often used when working with Docker.
推薦閱讀
- C++面向對象程序設計(第三版)
- C語言程序設計實踐教程(第2版)
- Learning Cython Programming(Second Edition)
- Learn Type:Driven Development
- 自己動手實現Lua:虛擬機、編譯器和標準庫
- 無代碼編程:用云表搭建企業數字化管理平臺
- Responsive Web Design by Example
- 表哥的Access入門:以Excel視角快速學習數據庫開發(第2版)
- Jenkins Continuous Integration Cookbook(Second Edition)
- C語言程序設計
- Python項目實戰從入門到精通
- Swift語言實戰晉級
- Python編程基礎教程
- Python物理建模初學者指南(第2版)
- Blender 3D Cookbook