Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Commit

Permalink
Made example run command and single line including the commands to st…
Browse files Browse the repository at this point in the history
…op and remove any existing container of the same name.
  • Loading branch information
jdeathe committed Oct 22, 2014
1 parent ccce239 commit 7c55701
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ $ docker run \
To run the a docker container from this image you can use the included run.sh and run.conf scripts. The helper script will stop any running container of the same name, remove it and run a new daemonised container on an unspecified host port. Alternatively you can use the following.

```
$ docker stop ssh.pool-1.1.1
$ docker rm ssh.pool-1.1.1
$ docker run -d \
$ docker stop ssh.pool-1.1.1 \
&& docker rm ssh.pool-1.1.1 \
; docker run -d \
--name ssh.pool-1.1.1 \
-p :22 \
--volumes-from volume-config.ssh.pool-1.1.1 \
Expand Down

0 comments on commit 7c55701

Please sign in to comment.