Replies: 1 comment
-
Your Docker will also remove labels if you pull/build an image that is an update of an existing image by the same name. It will remove the label from existing and apply to the new image, but docker doesn't delete images by default. That's what |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am confused about differences which happen when I build a local Dockerfile and when I do
docker run <...>
Specifically:
docker run -it inikolaev/alpine-scheme
results in what looks like one image being downloaded and a container being run.
but, if I then download the Dockerfile from inikolaev's github repo and build it with
docker build -t hjw-scheme .
docker image ls -a
results in:Why/ what's going on here?
Beta Was this translation helpful? Give feedback.
All reactions