mirror of
https://github.com/bitnami/containers.git
synced 2026-03-05 16:17:21 +08:00
8.9.0-debian-10-r0 release
This commit is contained in:
@@ -10,14 +10,14 @@ COPY prebuildfs /
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 lsof netcat-traditional procps tar
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "java" "1.8.292-0" --checksum 700e2d8391934048faefb45b4c3a2af74bc7b85d4c4e0e9a24164d7256456ca2
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "solr" "8.8.2-0" --checksum 23adf066ea52596f8f3c268960d3b367bb0a2f3675de730e26de2b63e88eaf9a
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "solr" "8.9.0-0" --checksum cc4fd7f80cfc163fa7aecf7df384fbf6e913290ceb6a2f94ff464530b7073403
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.13.0-0" --checksum fd7257c2736164d02832dbf72e2c1ed9d875bf3e32f0988520796bc503330129
|
||||
RUN chmod g+rwX /opt/bitnami
|
||||
|
||||
COPY rootfs /
|
||||
RUN /opt/bitnami/scripts/solr/postunpack.sh
|
||||
ENV BITNAMI_APP_NAME="solr" \
|
||||
BITNAMI_IMAGE_VERSION="8.8.2-debian-10-r31" \
|
||||
BITNAMI_IMAGE_VERSION="8.9.0-debian-10-r0" \
|
||||
PATH="/opt/bitnami/java/bin:/opt/bitnami/solr/bin:/opt/bitnami/common/bin:$PATH"
|
||||
|
||||
EXPOSE 8983
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"gosu": {
|
||||
"arch": "amd64",
|
||||
"digest": "4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50",
|
||||
"digest": "fd7257c2736164d02832dbf72e2c1ed9d875bf3e32f0988520796bc503330129",
|
||||
"distro": "debian-10",
|
||||
"type": "NAMI",
|
||||
"version": "1.12.0-2"
|
||||
"version": "1.13.0-0"
|
||||
},
|
||||
"java": {
|
||||
"arch": "amd64",
|
||||
@@ -15,9 +15,9 @@
|
||||
},
|
||||
"solr": {
|
||||
"arch": "amd64",
|
||||
"digest": "23adf066ea52596f8f3c268960d3b367bb0a2f3675de730e26de2b63e88eaf9a",
|
||||
"digest": "cc4fd7f80cfc163fa7aecf7df384fbf6e913290ceb6a2f94ff464530b7073403",
|
||||
"distro": "debian-10",
|
||||
"type": "NAMI",
|
||||
"version": "8.8.2-0"
|
||||
"version": "8.9.0-0"
|
||||
}
|
||||
}
|
||||
@@ -31,7 +31,7 @@ persist_app() {
|
||||
local -r install_dir="${BITNAMI_ROOT_DIR}/${app}"
|
||||
local -r persist_dir="${BITNAMI_VOLUME_DIR}/${app}"
|
||||
# Persist the individual files
|
||||
if [[ "${#files_to_persist[@]}" -lt 0 ]]; then
|
||||
if [[ "${#files_to_persist[@]}" -le 0 ]]; then
|
||||
warn "No files are configured to be persisted"
|
||||
return
|
||||
fi
|
||||
@@ -87,7 +87,7 @@ restore_persisted_app() {
|
||||
local -r install_dir="${BITNAMI_ROOT_DIR}/${app}"
|
||||
local -r persist_dir="${BITNAMI_VOLUME_DIR}/${app}"
|
||||
# Restore the individual persisted files
|
||||
if [[ "${#files_to_restore[@]}" -lt 0 ]]; then
|
||||
if [[ "${#files_to_restore[@]}" -le 0 ]]; then
|
||||
warn "No persisted files are configured to be restored"
|
||||
return
|
||||
fi
|
||||
|
||||
@@ -177,6 +177,10 @@ web_server_reload() {
|
||||
# --apache-before-vhost-configuration - Configuration to add before the <VirtualHost> directive (no default)
|
||||
# --apache-allow-override - Whether to allow .htaccess files (only allowed when --move-htaccess is set to 'no')
|
||||
# --apache-extra-directory-configuration - Extra configuration for the document root directory
|
||||
# --apache-proxy-address - Address where to proxy requests
|
||||
# --apache-proxy-configuration - Extra configuration for the proxy
|
||||
# --apache-proxy-http-configuration - Extra configuration for the proxy HTTP vhost
|
||||
# --apache-proxy-https-configuration - Extra configuration for the proxy HTTPS vhost
|
||||
# --apache-move-htaccess - Move .htaccess files to a common place so they can be loaded during Apache startup
|
||||
# NGINX-specific flags:
|
||||
# --nginx-additional-configuration - Additional server block configuration (no default)
|
||||
@@ -214,6 +218,9 @@ ensure_web_server_app_configuration_exists() {
|
||||
| --apache-allow-override \
|
||||
| --apache-extra-directory-configuration \
|
||||
| --apache-proxy-address \
|
||||
| --apache-proxy-configuration \
|
||||
| --apache-proxy-http-configuration \
|
||||
| --apache-proxy-https-configuration \
|
||||
| --apache-move-htaccess \
|
||||
)
|
||||
apache_args+=("${1//apache-/}" "${2:?missing value}")
|
||||
|
||||
@@ -36,7 +36,7 @@ You can find the available configuration options in the [Environment Variables](
|
||||
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/).
|
||||
|
||||
|
||||
* [`8`, `8-debian-10`, `8.8.2`, `8.8.2-debian-10-r31`, `latest` (8/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-solr/blob/8.8.2-debian-10-r31/8/debian-10/Dockerfile)
|
||||
* [`8`, `8-debian-10`, `8.9.0`, `8.9.0-debian-10-r0`, `latest` (8/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-solr/blob/8.9.0-debian-10-r0/8/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/solr GitHub repo](https://github.com/bitnami/bitnami-docker-solr).
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@ services:
|
||||
volumes:
|
||||
- 'solr_data:/bitnami/solr'
|
||||
zk1:
|
||||
image: docker.io/bitnami/zookeeper:3
|
||||
image: docker.io/bitnami/zookeeper:3.7
|
||||
ports:
|
||||
- '2181'
|
||||
volumes:
|
||||
|
||||
Reference in New Issue
Block a user