LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

docker-image-tag

Tag Docker images with repository and version identifiers

TLDR

Tag a local image with a name and version
$ docker image tag [source_image]:[tag] [target_image]:[version]
copy
Tag an image for a private registry
$ docker image tag [image]:[tag] [registry.example.com:5000/image]:[tag]
copy
Tag an image by its ID
$ docker image tag [image_id] [repository]:[tag]
copy
Create a latest tag from a versioned image
$ docker image tag [image]:[version] [image]:latest
copy

SYNOPSIS

docker image tag SOURCEIMAGE[:TAG] TARGETIMAGE[:TAG]

DESCRIPTION

docker image tag creates a tag that refers to an existing image. Tags are aliases for image IDs and are used to version images and push them to registries. Multiple tags can point to the same image, allowing different versioning schemes or registry locations without duplicating the image data.A tag name must be valid ASCII and may contain lowercase and uppercase letters, digits, underscores, periods, and hyphens. It may not start with a period or hyphen and is limited to 128 characters.If no tag is specified, latest is used by default for both the source and target.

INSTALL

sudo apt install docker-cli
copy
sudo dnf install docker-cli
copy
sudo pacman -S docker
copy
sudo apk add docker-cli
copy
sudo zypper install docker
copy
brew install docker
copy
nix profile install nixpkgs#docker
copy

SEE ALSO

Braincup
Open source brain training for math, memory and focus
Braincup mini-games
41 mini-games · Apache-2.0
No ads · No tracking
Play in browser
Download Braincup on the App StoreGet Braincup on Google PlayGet Braincup on F-Droid
276 stars
From the maker of Linux Command Library
Copied to clipboard
Braincup
Open source brain training for math, memory and focus. 41 mini-games, from mental arithmetic to Sudoku, N-Back and Solo Chess.
Apache-2.0 licensed · No ads · No tracking · No account
From the maker of Linux Command Library
Download Braincup on the App StoreGet Braincup on Google PlayGet Braincup on F-Droid