From d27dea8e5b0f7cbf2c6d11ffe6008ad6b532c40b Mon Sep 17 00:00:00 2001 From: David Witherspoon Date: Fri, 8 Apr 2016 15:48:46 -0700 Subject: [PATCH] Fixed references in absolute path vs relative path in kaazing-gateway content.md --- kaazing-gateway/content.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kaazing-gateway/content.md b/kaazing-gateway/content.md index 28b3c0c3a..dbf9655ca 100644 --- a/kaazing-gateway/content.md +++ b/kaazing-gateway/content.md @@ -31,14 +31,14 @@ For information on the syntax of the Kaazing Gateway configuration files, see [t If you wish to adapt the default Gateway configuration file, you can use a command such as the following to copy the file from a running Kaazing Gateway container: ```console -$ docker cp some-kaazing:/conf/gateway-config-minimal.xml /some/gateway-config.xml +$ docker cp some-kaazing:/kaazing-gateway/conf/gateway-config-minimal.xml /some/gateway-config.xml ``` As above, this can also be accomplished more cleanly using a simple `Dockerfile`: ```dockerfile FROM kaazing-gateway -COPY gateway-config.xml /conf/gateway-config.xml +COPY gateway-config.xml conf/gateway-config.xml ``` Then, build with `docker build -t some-custom-kaazing-gateway .` and run: