From d8f87ce5156f362111f825a121c274a5ab7cccce Mon Sep 17 00:00:00 2001 From: Gregory Brzeski Date: Sat, 13 Jul 2019 00:14:23 +0200 Subject: [PATCH] fix example to improve UX for first time users --- ghost/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/content.md b/ghost/content.md index 599165a7a..e59cf6344 100644 --- a/ghost/content.md +++ b/ghost/content.md @@ -19,7 +19,7 @@ $ docker run -d --name some-ghost %%IMAGE%% If you'd like to be able to access the instance from the host without the container's IP, standard port mappings can be used: ```console -$ docker run -d --name some-ghost -p 3001:2368 %%IMAGE%% +$ docker run -d --name some-ghost -e url=http://localhost:3001 -p 3001:2368 %%IMAGE%% ``` Then, access it via `http://localhost:3001` or `http://host-ip:3001` in a browser.