9951 explained code solutions for 126 technologies


dockerHow to find docker container id by name


docker container inspect test | grep Idctrl + c
container inspect

return detailed data about specified container

test

name of the container to find ID of

grep Id

filter out only ID of the container