From b60ad02add17e26ea7768df98a8881508fe8a979 Mon Sep 17 00:00:00 2001 From: David Scott Date: Tue, 29 Aug 2017 13:26:34 +0100 Subject: [PATCH] docker-for-mac: AF_VSOCK port in README should be 948 (was 947) Before: docker-for-mac djs$ docker -H unix://docker-for-mac-state/guest.00000947 ps Cannot connect to the Docker daemon at unix://docker-for-mac-state/guest.00000947. Is the docker daemon running? After: docker-for-mac djs$ docker -H unix://docker-for-mac-state/guest.00000948 ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES Signed-off-by: David Scott --- blueprints/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blueprints/README.md b/blueprints/README.md index 3847d5edf..87a6d642d 100644 --- a/blueprints/README.md +++ b/blueprints/README.md @@ -39,7 +39,7 @@ linuxkit run hyperkit -networking=vpnkit -vsock-ports=2376 -disk size=500M -data In another terminal you should now be able to access docker via the socket `guest.00000947` in the state directory (`docker-for-mac-state/` by default): ``` -$ docker -H unix://docker-for-mac-state/guest.00000947 ps +$ docker -H unix://docker-for-mac-state/guest.00000948 ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES ```