summaryrefslogtreecommitdiff
path: root/docs/sources/examples/running_ssh_service.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/sources/examples/running_ssh_service.rst')
-rw-r--r--docs/sources/examples/running_ssh_service.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/sources/examples/running_ssh_service.rst b/docs/sources/examples/running_ssh_service.rst
index d27799bee7..4161275019 100644
--- a/docs/sources/examples/running_ssh_service.rst
+++ b/docs/sources/examples/running_ssh_service.rst
@@ -19,14 +19,14 @@ Build the image using:
.. code-block:: bash
- $ sudo docker build -rm -t eg_sshd .
+ $ sudo docker build -t eg_sshd .
Then run it. You can then use ``docker port`` to find out what host port the container's
port 22 is mapped to:
.. code-block:: bash
- $ sudo docker run -d -P -name test_sshd eg_sshd
+ $ sudo docker run -d -P --name test_sshd eg_sshd
$ sudo docker port test_sshd 22
0.0.0.0:49154