목차

, , , ,

Docker Manifest

multi-architecture 이미지를 하나의 이름으로 묶는 manifest list를 다루는 docker manifest 그룹.

Summary

Usage

docker manifest COMMAND

Command Groups

Examples

# 서로 다른 아키텍처 이미지를 하나의 태그로 묶기
docker manifest create registry.example.com/team/myapp:latest \
  registry.example.com/team/myapp:amd64 \
  registry.example.com/team/myapp:arm64
 
# arm64 variant annotation
docker manifest annotate registry.example.com/team/myapp:latest \
  registry.example.com/team/myapp:arm64 --arch arm64 --variant v8
 
# registry에 게시
docker manifest push --purge registry.example.com/team/myapp:latest

Troubleshooting

Compatibility

Help

+ docker manifest --help

Usage:  docker manifest COMMAND
 
The **docker manifest** command has subcommands for managing image manifests and
manifest lists. A manifest list allows you to use one name to refer to the same image
built for multiple architectures.
 
Commands:
  annotate    Add additional information to a local image manifest
  create      Create a local manifest list for annotating and pushing to a registry
  inspect     Display an image manifest, or manifest list
  push        Push a manifest list to a repository
  rm          Delete one or more manifest lists from local storage
 
Run 'docker manifest COMMAND --help' for more information on a command.

+

See Also

History