Run update.sh
This commit is contained in:
parent
aaebc0d02c
commit
465d49fa88
|
|
@ -15,22 +15,32 @@ Crate allows to query and compute data with SQL in real time by providing a dist
|
|||
|
||||
[Crate](https://crate.io/)
|
||||
|
||||

|
||||

|
||||
|
||||
## Crate on Docker
|
||||
|
||||
Learn more about Crate and Docker and visit our [Docker page](https://crate.io/c/docker) at [crate.io](https://crate.io). You can also contact us on [Slack](https://crate.io/docs/support/slackin/).
|
||||
|
||||
## How to use this image
|
||||
|
||||
Simply run the latest Crate version in a Docker container with the following command. Crate ships with an [Admin UI](https://crate.io/docs/connect/admin_ui/) that provides an overview of your cluster, nodes, tables and much more. With the above command it is accessible via port `4200`.
|
||||
|
||||
```console
|
||||
$ docker run -d -p 4200:4200 -p 4300:4300 crate:latest
|
||||
```
|
||||
|
||||
### Attach persistent data directory
|
||||
|
||||
If you want to attach a persistent data directory, add the following parameter.
|
||||
|
||||
```console
|
||||
$ docker run -d -p 4200:4200 -p 4300:4300 -v <data-dir>:/data crate
|
||||
```
|
||||
|
||||
### Use custom Crate configuration
|
||||
|
||||
Use the following parameter to provide your custom [Crate configuration file](https://crate.io/docs/reference/configuration.html).
|
||||
|
||||
```console
|
||||
$ docker run -d -p 4200:4200 -p 4300:4300 crate -Des.config=/path/to/crate.yml
|
||||
```
|
||||
|
|
@ -41,8 +51,6 @@ Any configuration settings may be specified upon startup using the `-D` option p
|
|||
$ docker run -d -p 4200:4200 -p 4300:4300 crate crate -Des.cluster.name=cluster
|
||||
```
|
||||
|
||||
For further configuration options please refer to the [Configuration](https://crate.io/docs/stable/configuration.html) section of the online documentation.
|
||||
|
||||
### Environment
|
||||
|
||||
To set environment variables for Crate Data you need to use the `--env` option when starting the docker image.
|
||||
|
|
@ -110,11 +118,13 @@ Please see [the Docker installation documentation](https://docs.docker.com/insta
|
|||
|
||||
Documentation for this image is stored in the [`crate/` directory](https://github.com/docker-library/docs/tree/master/crate) of the [`docker-library/docs` GitHub repo](https://github.com/docker-library/docs). Be sure to familiarize yourself with the [repository's `REAMDE.md` file](https://github.com/docker-library/docs/blob/master/README.md) before attempting a pull request.
|
||||
|
||||
Visit [Crate on Docker](https://crate.io/docs/install/containers/docker/) and get further documentation about how to get started with Crate.
|
||||
|
||||
## Issues
|
||||
|
||||
If you have any problems with or questions about this image, please contact us through a [GitHub issue](https://github.com/crate/docker-crate/issues).
|
||||
|
||||
If you have any questions or suggestions we would be very happy to help you. So, feel free to join our public room on [HipChat](https://www.hipchat.com/g7Pc2CYwi).
|
||||
If you have any questions or suggestions we would be very happy to help you. So, feel free to join our public room on [Slack](https://crate.io/docs/support/slackin/).
|
||||
|
||||
For further information and official contact please visit [https://crate.io](https://crate.io).
|
||||
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
# Supported tags and respective `Dockerfile` links
|
||||
|
||||
- [`9.3.7`, `9.3`, `9`, `9.3.7-jre8`, `9.3-jre8`, `9-jre8`, `latest`, `jre8` (*9.3-jre8/Dockerfile*)](https://github.com/appropriate/docker-jetty/blob/696c58ef8e85ad491dd07457036f55a0eb84ed95/9.3-jre8/Dockerfile)
|
||||
- [`9.3.8`, `9.3`, `9`, `9.3.8-jre8`, `9.3-jre8`, `9-jre8`, `latest`, `jre8` (*9.3-jre8/Dockerfile*)](https://github.com/appropriate/docker-jetty/blob/5735e4acf1cf1d12e5be386195491394675f98fe/9.3-jre8/Dockerfile)
|
||||
- [`9.2.15`, `9.2`, `9.2.15-jre8`, `9.2-jre8` (*9.2-jre8/Dockerfile*)](https://github.com/appropriate/docker-jetty/blob/10f05b129dfd6caa03dc3038a19fab44fb6dcf67/9.2-jre8/Dockerfile)
|
||||
- [`9.2.15-jre7`, `9.2-jre7`, `9-jre7`, `jre7` (*9.2-jre7/Dockerfile*)](https://github.com/appropriate/docker-jetty/blob/10f05b129dfd6caa03dc3038a19fab44fb6dcf67/9.2-jre7/Dockerfile)
|
||||
|
||||
[](https://imagelayers.io/?images=jetty:9.3.7,jetty:9.2.15,jetty:9.2.15-jre7)
|
||||
[](https://imagelayers.io/?images=jetty:9.3.8,jetty:9.2.15,jetty:9.2.15-jre7)
|
||||
|
||||
For more information about this image and its history, please see [the relevant manifest file (`library/jetty`)](https://github.com/docker-library/official-images/blob/master/library/jetty). This image is updated via pull requests to [the `docker-library/official-images` GitHub repo](https://github.com/docker-library/official-images).
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue