Merge pull request #457 from shamrin/patch-1

README.md: `docker port` instead of just `port`
This commit is contained in:
Guillaume J. Charmes 2013-04-22 15:40:03 -07:00
commit 90d144b612
1 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,7 @@ Running an irc bouncer
```bash
BOUNCER_ID=$(docker run -d -p 6667 -u irc shykes/znc $USER $PASSWORD)
echo "Configure your irc client to connect to port $(port $BOUNCER_ID 6667) of this machine"
echo "Configure your irc client to connect to port $(docker port $BOUNCER_ID 6667) of this machine"
```
Running Redis
@ -133,7 +133,7 @@ Running Redis
```bash
REDIS_ID=$(docker run -d -p 6379 shykes/redis redis-server)
echo "Configure your redis client to connect to port $(port $REDIS_ID 6379) of this machine"
echo "Configure your redis client to connect to port $(docker port $REDIS_ID 6379) of this machine"
```
Share your own image!