- プラットフォーム固有のバージョンのイメージ用のイメージマニフェストを参照する
fat manifest
を利用してmulti-architecture images
を可能にする - そのイメージのIDを生成するためにハッシュ化されたイメージ設定があるイメージモデルをサポートすることで、Docker Engine をアドレス可能なイメージに向けて移動させる
manifest list
は1つ以上のプラットフォーム用の固有のイメージの manifest を参照するfat manifest
である- クライアントはHTTPレスポンス内で返却された Content-Type に基づいてイメージマニフェストを判別する
download from here and add execute permission.
inspect
manifest-tool inspect [image]
create/push
manifest-tool --username [username] \
--password [password] \
push \
from-spec \
hello.yaml
manifest-tool --username [username] \
--password [password] \
push \
from-args \
--platforms linux/amd64 \
--template ysku/hello:latest \
--target ysku/hello:amd64