7.2.0-debian-10-r79 release
This commit is contained in:
parent
3fe161ea2d
commit
13c126cfad
|
|
@ -20,7 +20,7 @@ RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stac
|
|||
RUN mkdir /app && chmod g+rwX /app
|
||||
|
||||
ENV BITNAMI_APP_NAME="gradle" \
|
||||
BITNAMI_IMAGE_VERSION="7.2.0-debian-10-r78" \
|
||||
BITNAMI_IMAGE_VERSION="7.2.0-debian-10-r79" \
|
||||
PATH="/opt/bitnami/java/bin:/opt/bitnami/gradle/bin:$PATH"
|
||||
|
||||
WORKDIR /app
|
||||
|
|
|
|||
|
|
@ -1,23 +1,25 @@
|
|||
# What is Gradle?
|
||||
# Gradle packaged by Bitnami
|
||||
|
||||
> Gradle is a build tool with a focus on build automation and support for multi-language development.
|
||||
## What is Gradle?
|
||||
|
||||
[gradle.org](https://gradle.org/)
|
||||
> Gradle is an open source automation tool to compile, deploy, and package software for any platform. It supports multiple languages such as Java, C/C++, and JavaScript.
|
||||
|
||||
# TL;DR
|
||||
[Overview of Gradle](https://gradle.org/)
|
||||
|
||||
## TL;DR
|
||||
|
||||
```console
|
||||
$ docker run -it --name gradle bitnami/gradle
|
||||
```
|
||||
|
||||
## Docker Compose
|
||||
### Docker Compose
|
||||
|
||||
```console
|
||||
$ curl -sSL https://raw.githubusercontent.com/bitnami/bitnami-docker-gradle/master/docker-compose.yml > docker-compose.yml
|
||||
$ docker-compose up -d
|
||||
```
|
||||
|
||||
# Why use Bitnami Images?
|
||||
## Why use Bitnami Images?
|
||||
|
||||
* Bitnami closely tracks upstream source changes and promptly publishes new versions of this image using our automated systems.
|
||||
* With Bitnami images the latest bug fixes and features are available as soon as possible.
|
||||
|
|
@ -29,16 +31,16 @@ $ docker-compose up -d
|
|||
|
||||
> This [CVE scan report](https://quay.io/repository/bitnami/gradle?tab=tags) contains a security report with all open CVEs. To get the list of actionable security issues, find the "latest" tag, click the vulnerability report link under the corresponding "Security scan" field and then select the "Only show fixable" filter on the next page.
|
||||
|
||||
# Supported tags and respective `Dockerfile` links
|
||||
## Supported tags and respective `Dockerfile` links
|
||||
|
||||
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/).
|
||||
|
||||
|
||||
* [`7`, `7-debian-10`, `7.2.0`, `7.2.0-debian-10-r78`, `latest` (7/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-gradle/blob/7.2.0-debian-10-r78/7/debian-10/Dockerfile)
|
||||
* [`7`, `7-debian-10`, `7.2.0`, `7.2.0-debian-10-r79`, `latest` (7/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-gradle/blob/7.2.0-debian-10-r79/7/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/gradle GitHub repo](https://github.com/bitnami/bitnami-docker-gradle).
|
||||
|
||||
# Get this image
|
||||
## Get this image
|
||||
|
||||
The recommended way to get the Bitnami Gradle Docker Image is to pull the prebuilt image from the [Docker Hub Registry](https://hub.docker.com/r/bitnami/gradle).
|
||||
|
||||
|
|
@ -58,9 +60,9 @@ If you wish, you can also build the image yourself.
|
|||
$ docker build -t bitnami/gradle 'https://github.com/bitnami/bitnami-docker-gradle.git#master:7/debian-10'
|
||||
```
|
||||
|
||||
# Configuration
|
||||
## Configuration
|
||||
|
||||
## Running your Gradle builds
|
||||
### Running your Gradle builds
|
||||
|
||||
The default work directory for the Gradle image is `/app`. You can mount a folder from your host here that includes your Gradle build script, and run any task specifying its identifier.
|
||||
|
||||
|
|
@ -74,13 +76,13 @@ $ docker run --name gradle -v /path/to/app:/app bitnami/gradle \
|
|||
- [gradle documentation](https://docs.gradle.org/)
|
||||
- [gradle command-line interface](https://docs.gradle.org/current/userguide/command_line_interface.html)
|
||||
|
||||
# Maintenance
|
||||
## Maintenance
|
||||
|
||||
## Upgrade this image
|
||||
### Upgrade this image
|
||||
|
||||
Bitnami provides up-to-date versions of Gradle, including security patches, soon after they are made upstream. We recommend that you follow these steps to upgrade your container.
|
||||
|
||||
### Step 1: Get the updated image
|
||||
#### Step 1: Get the updated image
|
||||
|
||||
```console
|
||||
$ docker pull bitnami/gradle:latest
|
||||
|
|
@ -88,7 +90,7 @@ $ docker pull bitnami/gradle:latest
|
|||
|
||||
or if you're using Docker Compose, update the value of the image property to `bitnami/gradle:latest`.
|
||||
|
||||
### Step 2: Remove the currently running container
|
||||
#### Step 2: Remove the currently running container
|
||||
|
||||
```console
|
||||
$ docker rm -v gradle
|
||||
|
|
@ -100,7 +102,7 @@ or using Docker Compose:
|
|||
$ docker-compose rm -v gradle
|
||||
```
|
||||
|
||||
### Step 3: Run the new image
|
||||
#### Step 3: Run the new image
|
||||
|
||||
Re-create your container from the new image.
|
||||
|
||||
|
|
@ -114,11 +116,11 @@ or using Docker Compose:
|
|||
$ docker-compose up gradle
|
||||
```
|
||||
|
||||
# Contributing
|
||||
## Contributing
|
||||
|
||||
We'd love for you to contribute to this Docker image. You can request new features by creating an [issue](https://github.com/bitnami/bitnami-docker-gradle/issues), or submit a [pull request](https://github.com/bitnami/bitnami-docker-gradle/pulls) with your contribution.
|
||||
|
||||
# Issues
|
||||
## Issues
|
||||
|
||||
If you encountered a problem running this container, you can file an [issue](https://github.com/bitnami/bitnami-docker-gradle/issues/new). For us to provide better support, be sure to include the following information in your issue:
|
||||
|
||||
|
|
@ -129,7 +131,7 @@ If you encountered a problem running this container, you can file an [issue](htt
|
|||
- The command you used to run the container, and any relevant output you saw (masking any sensitive
|
||||
information)
|
||||
|
||||
# License
|
||||
## License
|
||||
|
||||
Copyright (c) 2021 Bitnami
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue