dockerで特定のイメージのイメージIDを取得する方法のメモ。
実行環境
Windows 10 Home 21H2 Docker version 20.10.17, build 100c701
コマンド
docker images <イメージ名>:<タグ> --format "{{.ID}}"
実行例
PS C:\Users\hoge> docker images REPOSITORY TAG IMAGE ID CREATED SIZE eclipse-temurin 8-jdk-alpine fd56a750f488 45 hours ago 231MB python 3.8-slim fd882d842449 3 days ago 124MB postgres 12 8a31769da129 4 days ago 373MB amazon/aws-cli latest e33c967301f2 4 months ago 376MB ubuntu latest d2e4e1f51132 5 months ago 77.8MB centos 7 eeb6ee3f44bd 12 months ago 204MB # python:3.8-slimのイメージIDを取得 PS C:\Users\hoge> docker images python:3.8-slim --format "{{.ID}}" fd882d842449