From 78fe117076289695ab03c90d266c47438ab8db7a Mon Sep 17 00:00:00 2001 From: David Gebler Date: Fri, 12 Sep 2014 11:04:40 +0100 Subject: [PATCH] Signed-off-by: David Gebler modified: userguide/dockerlinks.md fixes incorrect environment variable labeling in container linking guide --- docs/sources/userguide/dockerlinks.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/sources/userguide/dockerlinks.md b/docs/sources/userguide/dockerlinks.md index da2f05de99..6d9c0f9596 100644 --- a/docs/sources/userguide/dockerlinks.md +++ b/docs/sources/userguide/dockerlinks.md @@ -186,10 +186,10 @@ command to list the specified container's environment variables. . . . DB_NAME=/web2/db DB_PORT=tcp://172.17.0.5:5432 - DB_PORT_5000_TCP=tcp://172.17.0.5:5432 - DB_PORT_5000_TCP_PROTO=tcp - DB_PORT_5000_TCP_PORT=5432 - DB_PORT_5000_TCP_ADDR=172.17.0.5 + DB_PORT_5432_TCP=tcp://172.17.0.5:5432 + DB_PORT_5432_TCP_PROTO=tcp + DB_PORT_5432_TCP_PORT=5432 + DB_PORT_5432_TCP_ADDR=172.17.0.5 . . . ```