Created
May 15, 2015 17:11
-
-
Save vbatts/aa78344aca712aa50138 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vbatts@valse ~ (master *) $ docker pull --all-tags=true fedora | |
Pulling repository fedora | |
717a8c89fa48: Download complete | |
93be8052dfb8: Download complete | |
d7f0e75cf11f: Download complete | |
48ecf305d2cf: Download complete | |
eb8e83ebb17d: Download complete | |
Status: Image is up to date for fedora | |
vbatts@valse ~ (master *) $ for i in $(docker images -q fedora | sort -u ); do echo $i; docker run -it $i grep ^root /etc/shadow ; echo ; done | |
717a8c89fa48 | |
root:locked:16339:0:99999:7::: | |
93be8052dfb8 | |
root:$6$DoHwMNPipK/gAVGn$qseLnsvYNGkBBQQDoKfuYWdHR/b6jLMjDwbT32ad97.EvspmbtfqhyQezyYFrqN0Bk/iNTey1upR5i816bGMR1::0:99999:7::: | |
d7f0e75cf11f | |
root:locked:16339:0:99999:7::: | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment