mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
README.md: docker port
instead of just port
This commit is contained in:
parent
acb546cd1b
commit
038e1d174b
1 changed files with 2 additions and 2 deletions
|
@ -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!
|
||||
|
|
Loading…
Reference in a new issue