Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 5adabb3

Browse filesBrowse files
committed
Update Kibana trick to use Docker host URL
`ELASICSEARCH_URL=http://localhost:9200` is wrong since that will reference the Kibana container's own port 9200. Use the Docker host interface (normally bound to `172.17.0.1`) instead.
1 parent 02d8b12 commit 5adabb3
Copy full SHA for 5adabb3

File tree

Expand file treeCollapse file tree

1 file changed

+4
-3
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+4
-3
lines changed

‎README.md

Copy file name to clipboardExpand all lines: README.md
+4-3Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -245,10 +245,11 @@ the host user's own `local` Carton directory.)
245245

246246
By default, the `docker-compose.localapi.yml` configures the
247247
`elasticsearch` service to listen on the Docker host at
248-
http://localhost:9200; you can inspect it via simple `curl` or `wget`
249-
requests, or use a [Kibana][11] container, e.g.
248+
http://localhost:9200, and is also accessible via the Docker `default`
249+
network address of http://172.17.0.1:9200; you can inspect it via simple
250+
`curl` or `wget` requests, or use a [Kibana][11] container, e.g.
250251

251-
docker run --rm -p 5601:5601 -e ELASTICSEARCH_URL=http://localhost:9200 -it kibana:4.6
252+
docker run --rm -p 5601:5601 -e ELASTICSEARCH_URL=http://172.17.0.1:9200 -it kibana:4.6
252253

253254
Running the above will provide a Kibana container at
254255
http://localhost:5601, which you can configure to have it read the

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.