1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Fixed a couple of minor syntax errors.

This commit is contained in:
dsissitka 2013-07-30 01:39:29 -04:00
parent 7d68afb2d2
commit 9ba998312d

View file

@ -39,7 +39,7 @@ This time, we're requesting shared access to $COUCH1's volumes.
.. code-block:: bash .. code-block:: bash
COUCH2=$(docker run -d -volumes-from $COUCH1) shykes/couchdb:2013-05-03) COUCH2=$(docker run -d -volumes-from $COUCH1 shykes/couchdb:2013-05-03)
Browse data on the second database Browse data on the second database
---------------------------------- ----------------------------------
@ -48,6 +48,6 @@ Browse data on the second database
HOST=localhost HOST=localhost
URL="http://$HOST:$(docker port $COUCH2 5984)/_utils/" URL="http://$HOST:$(docker port $COUCH2 5984)/_utils/"
echo "Navigate to $URL in your browser. You should see the same data as in the first database!" echo "Navigate to $URL in your browser. You should see the same data as in the first database"'!'
Congratulations, you are running 2 Couchdb containers, completely isolated from each other *except* for their data. Congratulations, you are running 2 Couchdb containers, completely isolated from each other *except* for their data.