From 7e101aa8f4cd76c8b9bbc3aa2ad6db51aa182f76 Mon Sep 17 00:00:00 2001
From: Jeremy Fee <jmfee@usgs.gov>
Date: Fri, 13 Mar 2020 12:06:00 -0600
Subject: [PATCH] Update docker argument to be --rm

---
 docs/install_docker.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/install_docker.md b/docs/install_docker.md
index ffe0b5312..02beede91 100644
--- a/docs/install_docker.md
+++ b/docs/install_docker.md
@@ -11,9 +11,9 @@ The container includes a Jupyter Notebook server for interactive development.
 
 The following command creates and starts a container in the background.
 
-    docker run -rm -it --name geomagio -p 8000:8000 -v $(pwd)/data:/data usgs/geomag-algorithms
+    docker run --rm -it --name geomagio -p 8000:8000 -v $(pwd)/data:/data usgs/geomag-algorithms
 
-- `-rm` runs a temporary container
+- `--rm` runs a temporary container
 - `-it` makes the container interactive (so you can stop it with `ctrl+c`)
 - `-name geomagio` assigns the name `geomagio`
 - `-p 8000:8000` forwards system port `8000` to container port `8000`
-- 
GitLab