Skip to content

Instantly share code, notes, and snippets.

@hakaneroztekin
Last active June 12, 2022 11:33
Show Gist options
  • Save hakaneroztekin/6038631d11cf69f4f63942ca2bd8b349 to your computer and use it in GitHub Desktop.
Save hakaneroztekin/6038631d11cf69f4f63942ca2bd8b349 to your computer and use it in GitHub Desktop.
docker-custom-image-inspect [docker in a nutshell]
$ docker image inspect my-awesome-app
[
{
"Config": {
"Env": [
"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
"PUBLISHING_AT=medium"
],
"Cmd": [
"ls",
"-l"
],
"WorkingDir": "/my-app",
"Labels": {
"ARTICLE_NAME": "docker in a nutshell"
}
},
"RootFS": {
"Type": "layers",
"Layers": [
"sha256:a790f937a6aea26",
"sha256:6718bf0aa086fa7",
"sha256:5f70bf18a086007"
]
},
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment