fix example to improve UX for first time users

This commit is contained in:
Gregory Brzeski 2019-07-13 00:14:23 +02:00 committed by GitHub
parent a7ccd616e2
commit d8f87ce515
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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.