Skip to content

Instantly share code, notes, and snippets.

@akkonrad
Forked from jclosure/docker_reverting
Created January 17, 2018 17:06
Show Gist options
  • Save akkonrad/c98a2c9d0fa14e8c5df5f9d8c0aefc31 to your computer and use it in GitHub Desktop.
Save akkonrad/c98a2c9d0fa14e8c5df5f9d8c0aefc31 to your computer and use it in GitHub Desktop.
How to revert a docker container to a previous commit
$ docker history imagename
IMAGE CREATED CREATED BY SIZE
f770fc671f11 12 seconds ago apt-get install -y curl 21.3 MB
28445c70c2b3 39 seconds ago apt-get install ping 11.57 MB
8dbd9e392a96 7 months ago 131.5 MB
$ docker tag 2844 imagename # <-- that's the secret right there
$ docker history imagename
IMAGE CREATED CREATED BY SIZE
28445c70c2b3 56 seconds ago apt-get install ping 11.57 MB
8dbd9e392a96 7 months ago 131.5 MB
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment