diff --git a/README.md b/README.md
index a571b4a08169b26da01a872a679c9c734f03a215..8f09d236f69b89ad310b878e6a239f1d817128c1 100644
--- a/README.md
+++ b/README.md
@@ -2,14 +2,14 @@
 Docker cheatsheet:
 ```bash
 # Run the image, get a shell
-docker run -t -i nbearson/science-stack /bin/bash
+docker run -t -i nbearson/docker-science-stack /bin/bash
 # Run the image, get a shell, and mount the current directory as /workspace
-docker run -it --rm -v "$PWD":/workspace -w /workspace nbearson/science-stack /bin/bash
+docker run -it --rm -v "$PWD":/workspace -w /workspace nbearson/docker-science-stack /bin/bash
 
 # Build the image from just the Dockerfile
-docker build -t nbearson/science-stack .
+docker build -t nbearson/docker-science-stack .
 # Push the built image to Dockerhub
-docker push nbearson/science-stack
+docker push nbearson/docker-science-stack
 ```
 
 # Why?