Merge pull request #4887 from jameshfisher/nat

Add missing port NAT configuration
This commit is contained in:
Sven Dowideit 2014-03-30 10:28:59 +10:00
Родитель c705e4a80b 64dd77fa0e
Коммит eaf2dd0839
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -86,10 +86,10 @@ the local port!
.. code-block:: bash
# Regular style
MONGO_ID=$(sudo docker run -d <yourname>/mongodb)
MONGO_ID=$(sudo docker run -P -d <yourname>/mongodb)
# Lean and mean
MONGO_ID=$(sudo docker run -d <yourname>/mongodb --noprealloc --smallfiles)
MONGO_ID=$(sudo docker run -P -d <yourname>/mongodb --noprealloc --smallfiles)
# Check the logs out
sudo docker logs $MONGO_ID