I have a very simple dockerfile
FROM makuk66/docker-solr
MAINTAINER test
Which I then build using
docker build -t myimage/test .
From what I know about Docker when I type docker images
it should only show myimage/test
under REPOSITORY
; however this is not what happens. Instead, I see:
REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE
myimage/test latest 566ef17fc0bc 15 hours ago 1.034 GB
makuk66/docker-solr latest bdd8b134dd2d 6 days ago 1.034 GB
Why is the base image appearing? The repository that I am pulling from for example has
FROM java:8
But this doesn't appear. So in this case why is the base image there?