diff --git a/README.md b/README.md
index 08cb2d4f2aa13073de94cfd38a0f603bf0275082..994b630933bbfa976965ed7809efb640e50ea923 100644
--- a/README.md
+++ b/README.md
@@ -9,19 +9,18 @@ Lightningcast Requires Python version 3.9 or 3.10 and supports level 1 files fro
 
 ## Docker
 
-Running with docker is simple and can be as easy as mounting in a directory and passing in user lightningcast parameters. Login to SSEC's docker registry with an [access token](https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html).
+Running with docker is simple and can be as easy as mounting in a directory and passing in user lightningcast parameters.
 
 ```
-docker login gitlab.ssec.wisc.edu:5555
 docker pull gitlab.ssec.wisc.edu:5555/jcintineo/lightningcast/lightningcast-c7r:v1.0.5
 ```
 
 ## Install with PIP
 
-Below is an example install using conda (native installs or different virtual environments work as well). For conda setup instructions see [here](https://conda.io/projects/conda/en/latest/user-guide/install/index.html). Login to SSEC's docker registry with an [access token](https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html). Continue by extracting the package and some sample configs from the docker container:
+Below is an example install using conda (native installs or different virtual environments work as well). For conda setup instructions see [here](https://conda.io/projects/conda/en/latest/user-guide/install/index.html). We will download the docker image and continue by extracting the package and some sample configs from that image:
 
 ```
-docker login gitlab.ssec.wisc.edu:5555
+docker pull gitlab.ssec.wisc.edu:5555/jcintineo/lightningcast/lightningcast-c7r:v1.0.5
 docker run --rm -it -v $PWD:/dock/ --entrypoint /bin/bash gitlab.ssec.wisc.edu:5555/jcintineo/lightningcast/lightningcast-c7r:v1.0.5  -c 'cp /pip-package/lightningcast/dist/*.tar.gz /dock/ && cp -r /pip-package/config/ /dock/config/'
 ```