[bitnami/geode] Release 1.15.0-debian-11-r11 (#1115)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
parent
b7b6147d64
commit
5b3f4b786f
|
|
@ -11,7 +11,7 @@ Trademarks: This software listing is packaged by Bitnami. The respective tradema
|
|||
## TL;DR
|
||||
|
||||
```console
|
||||
$ curl -sSL https://raw.githubusercontent.com/bitnami/bitnami-docker-geode/master/docker-compose.yml > docker-compose.yml
|
||||
$ curl -sSL https://raw.githubusercontent.com/bitnami/containers/main/bitnami/geode/docker-compose.yml > docker-compose.yml
|
||||
$ docker-compose up -d
|
||||
```
|
||||
|
||||
|
|
@ -41,9 +41,9 @@ Non-root container images add an extra layer of security and are generally recom
|
|||
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
|
||||
|
||||
|
||||
* [`1`, `1-debian-11`, `1.15.0`, `1.15.0-debian-11-r10`, `latest` (1/debian-11/Dockerfile)](https://github.com/bitnami/bitnami-docker-geode/blob/1.15.0-debian-11-r10/1/debian-11/Dockerfile)
|
||||
* [`1`, `1-debian-11`, `1.15.0`, `1.15.0-debian-11-r11`, `latest` (1/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/geode/1/debian-11/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/geode GitHub repo](https://github.com/bitnami/bitnami-docker-geode).
|
||||
Subscribe to project updates by watching the [bitnami/containers GitHub repo](https://github.com/bitnami/containers).
|
||||
|
||||
## Get this image
|
||||
|
||||
|
|
@ -59,20 +59,22 @@ To use a specific version, you can pull a versioned tag. You can view the [list
|
|||
$ docker pull bitnami/geode:[TAG]
|
||||
```
|
||||
|
||||
If you wish, you can also build the image yourself.
|
||||
If you wish, you can also build the image yourself by cloning the repository, changing to the directory containing the Dockerfile and executing the `docker build` command. Remember to replace the `APP`, `VERSION` and `OPERATING-SYSTEM` path placeholders in the example command below with the correct values.
|
||||
|
||||
```console
|
||||
$ docker build -t bitnami/geode:latest 'https://github.com/bitnami/bitnami-docker-geode.git#master:1/debian-11'
|
||||
$ git clone https://github.com/bitnami/containers.git
|
||||
$ cd bitnami/APP/VERSION/OPERATING-SYSTEM
|
||||
$ docker build -t bitnami/APP:latest .
|
||||
```
|
||||
|
||||
## How to use this image
|
||||
|
||||
### Run the application using Docker Compose
|
||||
|
||||
The main folder of this repository contains a functional [`docker-compose.yml`](https://github.com/bitnami/bitnami-docker-geode/blob/master/docker-compose.yml) file. Run the application using it as shown below:
|
||||
The main folder of this repository contains a functional [`docker-compose.yml`](https://github.com/bitnami/containers/blob/main/bitnami/geode/docker-compose.yml) file. Run the application using it as shown below:
|
||||
|
||||
```console
|
||||
$ curl -sSL https://raw.githubusercontent.com/bitnami/bitnami-docker-geode/master/docker-compose.yml > docker-compose.yml
|
||||
$ curl -sSL https://raw.githubusercontent.com/bitnami/containers/main/bitnami/geode/docker-compose.yml > docker-compose.yml
|
||||
$ docker-compose up -d
|
||||
```
|
||||
|
||||
|
|
@ -109,7 +111,7 @@ To avoid inadvertent removal of volumes, you can [mount host directories as data
|
|||
|
||||
### Mount host directories as data volumes with Docker Compose
|
||||
|
||||
This requires a minor change to the [`docker-compose.yml`](https://github.com/bitnami/bitnami-docker-geode/blob/master/docker-compose.yml) file present in this repository:
|
||||
This requires a minor change to the [`docker-compose.yml`](https://github.com/bitnami/containers/blob/main/bitnami/geode/docker-compose.yml) file present in this repository:
|
||||
|
||||
```diff
|
||||
geode:
|
||||
|
|
@ -149,7 +151,7 @@ $ docker run -d --name geode -p 7070:7070 \
|
|||
|
||||
When you start the Apache Geode image, you can adjust the configuration of the instance by passing one or more environment variables either on the docker-compose file or on the `docker run` command line. If you want to add a new environment variable:
|
||||
|
||||
* For docker-compose add the variable name and value under the application section in the [`docker-compose.yml`](https://github.com/bitnami/bitnami-docker-geode/blob/master/docker-compose.yml) file present in this repository:
|
||||
* For docker-compose add the variable name and value under the application section in the [`docker-compose.yml`](https://github.com/bitnami/containers/blob/main/bitnami/geode/docker-compose.yml) file present in this repository:
|
||||
|
||||
```yaml
|
||||
geode:
|
||||
|
|
@ -342,10 +344,10 @@ You now have a Apache Geode cluster up and running. You can scale the cluster by
|
|||
|
||||
#### Using Docker Compose
|
||||
|
||||
The main folder of this repository contains a functional [`docker-compose-cluster.yml`](https://github.com/bitnami/bitnami-docker-geode/blob/master/docker-compose-cluster.yml) file. Run an Apache Geode cluster using it as shown below:
|
||||
The main folder of this repository contains a functional [`docker-compose-cluster.yml`](https://github.com/bitnami/containers/blob/main/bitnami/geode/blob/master/docker-compose-cluster.yml) file. Run an Apache Geode cluster using it as shown below:
|
||||
|
||||
```console
|
||||
$ curl -sSL https://raw.githubusercontent.com/bitnami/bitnami-docker-geode/master/docker-compose-cluster.yml > docker-compose.yml
|
||||
$ curl -sSL https://raw.githubusercontent.com/bitnami/containers/main/bitnami/geode/master/docker-compose-cluster.yml > docker-compose.yml
|
||||
$ docker-compose up -d
|
||||
```
|
||||
|
||||
|
|
@ -366,7 +368,7 @@ After that, your custom configuration will be taken into account to start the Ap
|
|||
|
||||
#### Using Docker Compose
|
||||
|
||||
Modify the [`docker-compose.yml`](https://github.com/bitnami/bitnami-docker-geode/blob/master/docker-compose.yml) file present in this repository as follows:
|
||||
Modify the [`docker-compose.yml`](https://github.com/bitnami/containers/blob/main/bitnami/geode/docker-compose.yml) file present in this repository as follows:
|
||||
|
||||
```diff
|
||||
...
|
||||
|
|
@ -463,7 +465,7 @@ Restoring a backup is as simple as mounting the backup as volumes in the contain
|
|||
$ docker run -v /path/to/geode-backups/latest:/bitnami/geode bitnami/geode:latest
|
||||
```
|
||||
|
||||
You can also modify the [`docker-compose.yml`](https://github.com/bitnami/bitnami-docker-geode/blob/master/docker-compose.yml) file present in this repository:
|
||||
You can also modify the [`docker-compose.yml`](https://github.com/bitnami/containers/blob/main/bitnami/geode/docker-compose.yml) file present in this repository:
|
||||
|
||||
```yaml
|
||||
geode:
|
||||
|
|
@ -519,17 +521,11 @@ $ docker-compose up geode
|
|||
|
||||
## Contributing
|
||||
|
||||
We'd love for you to contribute to this container. You can request new features by creating an [issue](https://github.com/bitnami/bitnami-docker-geode/issues), or submit a [pull request](https://github.com/bitnami/bitnami-docker-geode/pulls) with your contribution.
|
||||
We'd love for you to contribute to this Docker image. You can request new features by creating an [issue](https://github.com/bitnami/containers/issues), or submit a [pull request](https://github.com/bitnami/containers/pulls) with your contribution.
|
||||
|
||||
## Issues
|
||||
|
||||
If you encountered a problem running this container, you can file an [issue](https://github.com/bitnami/bitnami-docker-geode/issues/new). For us to provide better support, be sure to include the following information in your issue:
|
||||
|
||||
* Host OS and version
|
||||
* Docker version (`docker version`)
|
||||
* Output of `docker info`
|
||||
* Version of this container
|
||||
* The command you used to run the container, and any relevant output you saw (masking any sensitive information)
|
||||
If you encountered a problem running this container, you can file an [issue](https://github.com/bitnami/containers/issues/new/choose). For us to provide better support, be sure to fill the issue template.
|
||||
|
||||
## License
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue