Run update.sh

This commit is contained in:
Docker Library Bot 2017-02-06 13:32:44 -08:00
parent 72d011a948
commit 0932b11350
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# Supported tags and respective `Dockerfile` links
- [`latest`, `0.7.3` (*0.X/Dockerfile*)](https://github.com/hashicorp/docker-consul/blob/c267a8ce53fc5df512ab3bc132967806bde67e16/0.X/Dockerfile)
- [`latest`, `0.7.4` (*0.X/Dockerfile*)](https://github.com/hashicorp/docker-consul/blob/47e4cde898e8c51ff62c83cb4c779f2b42841868/0.X/Dockerfile)
For more information about this image and its history, please see [the relevant manifest file (`library/consul`)](https://github.com/docker-library/official-images/blob/master/library/consul). This image is updated via [pull requests to the `docker-library/official-images` GitHub repo](https://github.com/docker-library/official-images/pulls?q=label%3Alibrary%2Fconsul).

View File

@ -32,7 +32,7 @@ You can also pass in additional flags to `kibana`:
$ docker run --link some-elasticsearch:elasticsearch -d kibana --plugins /somewhere/else
```
This image includes `EXPOSE 5601` ([default `port`](https://www.elastic.co/guide/en/kibana/current/_setting_kibana_server_properties.html)). 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:
This image includes `EXPOSE 5601` ([default `port`](https://www.elastic.co/guide/en/kibana/5.2/settings.html)). 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 --name some-kibana --link some-elasticsearch:elasticsearch -p 5601:5601 -d kibana