From 51ccd08b07605a1d39d618d810b83c14cb5226b5 Mon Sep 17 00:00:00 2001 From: Marcos Bjoerkelund Date: Thu, 19 Sep 2019 16:01:33 +0200 Subject: [PATCH 001/950] Initial commit --- bitnami/kong/.github/ISSUE_TEMPLATE.md | 60 +++++++++++++++++++ bitnami/kong/.github/PULL_REQUEST_TEMPLATE.md | 32 ++++++++++ bitnami/kong/.github/stale.yml | 36 +++++++++++ bitnami/kong/LICENSE | 13 ++++ 4 files changed, 141 insertions(+) create mode 100644 bitnami/kong/.github/ISSUE_TEMPLATE.md create mode 100644 bitnami/kong/.github/PULL_REQUEST_TEMPLATE.md create mode 100644 bitnami/kong/.github/stale.yml create mode 100644 bitnami/kong/LICENSE diff --git a/bitnami/kong/.github/ISSUE_TEMPLATE.md b/bitnami/kong/.github/ISSUE_TEMPLATE.md new file mode 100644 index 000000000000..da2b4da33fde --- /dev/null +++ b/bitnami/kong/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,60 @@ + + +**Description** + + + +**Steps to reproduce the issue:** + +1. [First Step] +2. [Second Step] +3. [and so on...] + +**Describe the results you received:** + + + +**Describe the results you expected:** + + + +**Additional information you deem important (e.g. issue happens only occasionally):** + + + +**Version** + +- Output of `docker version`: + +``` +(paste your output here) +``` + +- Output of `docker info`: + +``` +(paste your output here) +``` + +- Output of `docker-compose version` (if applicable): + +``` +(paste your output here) +``` + +**Additional environment details (AWS, VirtualBox, Docker for MAC, physical, etc.):** diff --git a/bitnami/kong/.github/PULL_REQUEST_TEMPLATE.md b/bitnami/kong/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 000000000000..c2acbe6e0d70 --- /dev/null +++ b/bitnami/kong/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,32 @@ + + +**Description of the change** + + + +**Benefits** + + + +**Possible drawbacks** + + + +**Applicable issues** + + + +**Additional information** + + diff --git a/bitnami/kong/.github/stale.yml b/bitnami/kong/.github/stale.yml new file mode 100644 index 000000000000..ea65d3277a62 --- /dev/null +++ b/bitnami/kong/.github/stale.yml @@ -0,0 +1,36 @@ +# Configuration for probot-stale - https://github.com/probot/stale + +# Number of days of inactivity before an Issue or Pull Request becomes stale +daysUntilStale: 15 + +# Number of days of inactivity before a stale Issue or Pull Request is closed. +daysUntilClose: 5 + +# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable +exemptLabels: + - on-hold + +# Label to use when marking as stale +staleLabel: stale + +issues: + # Comment to post when marking as stale. Set to `false` to disable + markComment: > + This Issue has been automatically marked as "stale" because it has not had recent activity (for 15 days). It will be closed if no further activity occurs. Thanks for the feedback. + + # Comment to post when closing a stale Issue or Pull Request. + closeComment: > + Due to the lack of activity in the last 5 days since it was marked as "stale", we proceed to close this Issue. Do not hesitate to reopen it later if necessary. + +pulls: + # Comment to post when marking as stale. Set to `false` to disable + markComment: > + This Pull Request has been automatically marked as "stale" because it has not had recent activity (for 15 days). It will be closed if no further activity occurs. Thank you for your contribution. + + # Comment to post when closing a stale Issue or Pull Request. + closeComment: > + Due to the lack of activity in the last 5 days since it was marked as "stale", we proceed to close this Pull Request. Do not hesitate to reopen it later if necessary. + +# Limit the number of actions per hour, from 1-30. Default is 30 +limitPerRun: 30 + diff --git a/bitnami/kong/LICENSE b/bitnami/kong/LICENSE new file mode 100644 index 000000000000..5cca1c384fc2 --- /dev/null +++ b/bitnami/kong/LICENSE @@ -0,0 +1,13 @@ +Copyright (c) 2015-2019 Bitnami + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. From 22930449c717f7b709f449cc4f48a272a9e85098 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 20 Sep 2019 09:44:31 +0000 Subject: [PATCH 002/950] 1.3.0-debian-9-r4 release --- bitnami/kong/1/debian-9/Dockerfile | 23 ++ bitnami/kong/1/debian-9/docker-compose.yml | 22 ++ bitnami/kong/1/debian-9/rootfs/entrypoint.sh | 26 ++ bitnami/kong/1/debian-9/rootfs/libkong.sh | 251 ++++++++++++++ bitnami/kong/1/debian-9/rootfs/postunpack.sh | 70 ++++ bitnami/kong/1/debian-9/rootfs/run.sh | 20 ++ bitnami/kong/1/debian-9/rootfs/setup.sh | 22 ++ bitnami/kong/README.md | 333 +++++++++++++++++++ bitnami/kong/docker-compose-cassandra.yml | 25 ++ bitnami/kong/docker-compose-cluster.yml | 53 +++ bitnami/kong/docker-compose.yml | 22 ++ bitnami/kong/test.yaml | 109 ++++++ 12 files changed, 976 insertions(+) create mode 100644 bitnami/kong/1/debian-9/Dockerfile create mode 100644 bitnami/kong/1/debian-9/docker-compose.yml create mode 100755 bitnami/kong/1/debian-9/rootfs/entrypoint.sh create mode 100644 bitnami/kong/1/debian-9/rootfs/libkong.sh create mode 100755 bitnami/kong/1/debian-9/rootfs/postunpack.sh create mode 100755 bitnami/kong/1/debian-9/rootfs/run.sh create mode 100755 bitnami/kong/1/debian-9/rootfs/setup.sh create mode 100644 bitnami/kong/README.md create mode 100644 bitnami/kong/docker-compose-cassandra.yml create mode 100644 bitnami/kong/docker-compose-cluster.yml create mode 100644 bitnami/kong/docker-compose.yml create mode 100644 bitnami/kong/test.yaml diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile new file mode 100644 index 000000000000..296fbc021eb3 --- /dev/null +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -0,0 +1,23 @@ +FROM bitnami/minideb-extras-base:stretch-r366 +LABEL maintainer "Bitnami " + +ENV HOME="/" \ + OS_ARCH="amd64" \ + OS_FLAVOUR="debian-9" \ + OS_NAME="linux" + +# Install required system packages and dependencies +RUN install_packages libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl zlib1g +RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-2" --checksum 36bf379be759af4145c940081f6e0405c43817e9d74775f7204d2604d12bc31a + +COPY rootfs / +RUN /postunpack.sh +ENV BITNAMI_APP_NAME="kong" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r4" \ + PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" + +EXPOSE 8000 8001 8443 8444 + +USER 1001 +ENTRYPOINT [ "/entrypoint.sh" ] +CMD [ "/run.sh" ] diff --git a/bitnami/kong/1/debian-9/docker-compose.yml b/bitnami/kong/1/debian-9/docker-compose.yml new file mode 100644 index 000000000000..acc2801ac7c0 --- /dev/null +++ b/bitnami/kong/1/debian-9/docker-compose.yml @@ -0,0 +1,22 @@ +version: '2' +services: + postgresql: + image: bitnami/postgresql:11 + volumes: + - postgresql_data:/bitnami/postgresql + environment: + - POSTGRESQL_USERNAME=kong + - POSTGRESQL_PASSWORD=bitnami + - POSTGRESQL_DATABASE=kong + kong: + image: bitnami/kong:1 + ports: + - 8000:8000 + - 8443:8443 + environment: + - KONG_MIGRATE=yes + - KONG_PG_HOST=postgresql + - KONG_PG_PASSWORD=bitnami +volumes: + postgresql_data: + driver: local diff --git a/bitnami/kong/1/debian-9/rootfs/entrypoint.sh b/bitnami/kong/1/debian-9/rootfs/entrypoint.sh new file mode 100755 index 000000000000..a6f9da9603c8 --- /dev/null +++ b/bitnami/kong/1/debian-9/rootfs/entrypoint.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +# shellcheck disable=SC1091 + +set -o errexit +set -o nounset +set -o pipefail +#set -o xtrace # Uncomment this line for debugging purpose + +# Load libraries +. /libbitnami.sh +. /liblog.sh +. /libkong.sh + +eval "$(kong_env)" + +print_welcome_page + +if [[ "$*" = *"/run.sh"* ]]; then + info "** Starting Kong setup **" + /setup.sh + info "** Kong setup finished! **" +fi + +echo "" +exec "$@" diff --git a/bitnami/kong/1/debian-9/rootfs/libkong.sh b/bitnami/kong/1/debian-9/rootfs/libkong.sh new file mode 100644 index 000000000000..e93fad1818ba --- /dev/null +++ b/bitnami/kong/1/debian-9/rootfs/libkong.sh @@ -0,0 +1,251 @@ +#!/bin/bash +# +# Bitnami Kong library + +# shellcheck disable=SC1090 +# shellcheck disable=SC1091 + +# Load generic libraries +. /libfs.sh +. /liblog.sh +. /libnet.sh +. /libos.sh +. /libservice.sh +. /libvalidations.sh + +######################## +# Load global variables used for Kong configuration. +# Globals: +# KONG_* +# Arguments: +# None +# Returns: +# Series of exports to be used as 'eval' arguments +######################### +kong_env() { + # Avoid environment settings getting overridden twice + if [[ -n "${MODULE:-}" ]]; then + return + fi + + cat <<"EOF" +# Bitnami debug +export MODULE=kong +export BITNAMI_DEBUG="${BITNAMI_DEBUG:-false}" + +# Paths +export KONG_BASE_DIR="/opt/bitnami/kong" +export KONG_CONF_DIR="${KONG_BASE_DIR}/conf" +export KONG_SERVER_DIR="${KONG_BASE_DIR}/server" + +export KONG_CONF_FILE="${KONG_CONF_DIR}/kong.conf" +export KONG_DEFAULT_CONF_FILE="${KONG_CONF_DIR}/kong.conf.default" + +# Users +export KONG_DAEMON_USER="${KONG_DAEMON_USER:-kong}" +export KONG_DAEMON_GROUP="${KONG_DAEMON_GROUP:-kong}" + +# Cluster settings +export KONG_MIGRATE="${KONG_MIGRATE:-no}" + +# Port and service bind configurations for KONG_PROXY_LISTEN and KONG_ADMIN_LISTEN +# By setting these separately, we are consistent with other Bitnami solutions +# However it is still possible to directly set KONG_PROXY_LISTEN and KONG_ADMIN_LISTEN +export KONG_PROXY_LISTEN_ADDRESS="${KONG_PROXY_LISTEN_ADDRESS:-0.0.0.0}" +export KONG_PROXY_HTTP_PORT_NUMBER="${KONG_PROXY_HTTP_PORT_NUMBER:-8000}" +export KONG_PROXY_HTTPS_PORT_NUMBER="${KONG_PROXY_HTTPS_PORT_NUMBER:-8443}" +export KONG_ADMIN_LISTEN_ADDRESS="${KONG_ADMIN_LISTEN_ADDRESS:-127.0.0.1}" +export KONG_ADMIN_HTTP_PORT_NUMBER="${KONG_ADMIN_HTTP_PORT_NUMBER:-8001}" +export KONG_ADMIN_HTTPS_PORT_NUMBER="${KONG_ADMIN_HTTPS_PORT_NUMBER:-8444}" + +# Kong configuration +# These environment variables are used by Kong and allow overriding values in its configuration file +export KONG_NGINX_DAEMON="off" +EOF + + if am_i_root; then + cat <<"EOF" +export KONG_NGINX_USER="${KONG_DAEMON_USER} ${KONG_DAEMON_GROUP}" +EOF + fi + + if [[ -f "${KONG_CASSANDRA_PASSWORD_FILE:-}" ]]; then + cat <<"EOF" +export KONG_CASSANDRA_PASSWORD="$(< "${KONG_CASSANDRA_PASSWORD_FILE}")" +EOF + fi + + if [[ -f "${KONG_POSTGRESQL_PASSWORD_FILE:-}" ]]; then + cat <<"EOF" +export KONG_PG_PASSWORD="$(< "${KONG_POSTGRESQL_PASSWORD_FILE}")" +EOF + fi + + # Compound environment variables that form a single Kong configuration entry + if [[ -n "${KONG_PROXY_LISTEN:-}" ]]; then + cat <<"EOF" +export KONG_PROXY_LISTEN_OVERRIDE="yes" +EOF + else + cat <<"EOF" +export KONG_PROXY_LISTEN="${KONG_PROXY_LISTEN_ADDRESS}:${KONG_PROXY_HTTP_PORT_NUMBER}, ${KONG_PROXY_LISTEN_ADDRESS}:${KONG_PROXY_HTTPS_PORT_NUMBER} ssl" +export KONG_PROXY_LISTEN_OVERRIDE="no" +EOF + fi + if [[ -n "${KONG_ADMIN_LISTEN:-}" ]]; then + cat <<"EOF" +export KONG_ADMIN_LISTEN_OVERRIDE="yes" +EOF + else + cat <<"EOF" +export KONG_ADMIN_LISTEN="${KONG_ADMIN_LISTEN_ADDRESS}:${KONG_ADMIN_HTTP_PORT_NUMBER}, ${KONG_ADMIN_LISTEN_ADDRESS}:${KONG_ADMIN_HTTPS_PORT_NUMBER} ssl" +export KONG_ADMIN_LISTEN_OVERRIDE="no" +EOF + fi +} + +######################## +# Validate settings in KONG_* environment variables +# Globals: +# KONG_* +# Arguments: +# None +# Returns: +# None +######################### +kong_validate() { + info "Validating settings in KONG_* env vars" + local error_code=0 + + # Auxiliary functions + + print_validation_error() { + error "$1" + error_code="1" + } + + check_yes_no_value() { + if ! is_yes_no_value "${!1}"; then + print_validation_error "The allowed values for ${1} are [yes, no]" + fi + } + + check_password_file() { + if [[ -n "${!1:-}" ]] && ! [[ -f "${!1:-}" ]]; then + print_validation_error "The variable ${1} is defined but the file ${!1} is not accessible or does not exist" + fi + } + + check_resolved_hostname() { + if ! is_hostname_resolved "$1"; then + warn "Hostname ${1} could not be resolved, this could lead to connection issues" + fi + } + + check_allowed_port() { + local validate_port_args=() + ! am_i_root && validate_port_args+=("-unprivileged") + if ! err="$(validate_port "${validate_port_args[@]}" "${!1}")"; then + print_validation_error "An invalid port was specified in the environment variable ${1}: ${err}" + fi + } + + check_conflicting_ports() { + local -r total="$#" + for i in $(seq 1 "$((total - 1))"); do + for j in $(seq "$((i + 1))" "$total"); do + if (( "${!i}" == "${!j}" )); then + print_validation_error "${!i} and ${!j} are bound to the same port" + fi + done + done + } + + check_yes_no_value KONG_MIGRATE + + # Validate some of the supported environment variables used by Kong + + # Database setting validations + if [[ "${KONG_DATABASE:-postgres}" = "postgres" ]]; then + # PostgreSQL is the default database type + check_password_file KONG_POSTGRESQL_PASSWORD_FILE + [[ -n "${KONG_PG_HOST:-}" ]] && check_resolved_hostname "${KONG_PG_HOST:-}" + if [[ -n "${!KONG_CASSANDRA_@}" ]]; then + warn "KONG_DATABASE is empty or set to 'postgres', so the following environment variables will be ignored: ${!KONG_CASSANDRA_@}" + fi + elif [[ "${KONG_DATABASE:-}" = "cassandra" ]]; then + check_password_file KONG_CASSANDRA_PASSWORD_FILE + for cassandra_contact_point in $(echo "${CASSANDRA_CONTACT_POINTS:-}" | sed -r 's/[, ]+/\n/'); do + check_resolved_hostname "${cassandra_contact_point}" + done + if [[ -n "${!KONG_PG_@}" ]]; then + warn "KONG_DATABASE is set to 'cassandra', so the following environment variables will be ignored: ${!KONG_PG_@}" + fi + elif [[ "${KONG_DATABASE:-}" = "off" ]]; then + warn "KONG_DATABASE is set to 'off', Kong will run but data will not be persisted" + else + print_validation_error "Wrong value '${KONG_DATABASE}' passed to KONG_DATABASE. Valid values: 'off', 'cassandra', 'postgres'" + fi + + # Listen addresses and port validations + used_ports=() + if is_boolean_yes "$KONG_PROXY_LISTEN_OVERRIDE"; then + warn "KONG_PROXY_LISTEN was set, it will not be validated and the environment variables KONG_PROXY_LISTEN_ADDRESS, KONG_PROXY_HTTP_PORT_NUMBER and KONG_PROXY_HTTPS_PORT_NUMBER will be ignored" + else + used_ports+=(KONG_PROXY_HTTP_PORT_NUMBER KONG_PROXY_HTTPS_PORT_NUMBER) + if [[ "$KONG_PROXY_LISTEN_ADDRESS" != "0.0.0.0" && "$KONG_PROXY_LISTEN_ADDRESS" != "127.0.0.1" ]]; then + warn "Kong Proxy is set to listen at ${KONG_PROXY_LISTEN_ADDRESS} instead of 0.0.0.0 or 127.0.0.1, this could make Kong inaccessible" + fi + fi + if is_boolean_yes "$KONG_ADMIN_LISTEN_OVERRIDE"; then + warn "KONG_ADMIN_LISTEN was set, it will not be validated and the environment variables KONG_ADMIN_LISTEN_ADDRESS, KONG_ADMIN_HTTP_PORT_NUMBER and KONG_ADMIN_HTTPS_PORT_NUMBER will be ignored" + else + used_ports+=(KONG_ADMIN_HTTP_PORT_NUMBER KONG_ADMIN_HTTPS_PORT_NUMBER) + if [[ "$KONG_ADMIN_LISTEN_ADDRESS" != "127.0.0.1" ]]; then + warn "Kong Admin is set to listen at ${KONG_ADMIN_LISTEN_ADDRESS} instead of 127.0.0.1, opening it to the outside could make it insecure" + fi + fi + for port in "${used_ports[@]}"; do + check_allowed_port "${port}" + done + if [[ "${#used_ports[@]}" -ne 0 ]]; then + check_conflicting_ports "${used_ports[@]}" + fi + + # Quit if any failures occurred + [[ "$error_code" -eq 0 ]] || exit "$error_code" +} + +######################## +# Ensure Kong is initialized +# Globals: +# KONG_* +# Arguments: +# None +# Returns: +# None +######################### +kong_initialize() { + info "Initializing Kong" + + info "Waiting for database connection to succeed" + + while ! kong_migrations_list_output="$(kong migrations list 2>&1)"; do + if is_boolean_yes "$KONG_MIGRATE" && [[ "$kong_migrations_list_output" =~ "Database needs bootstrapping"* ]]; then + break + fi + debug "$kong_migrations_list_output" + debug "Database is still not ready, will retry" + sleep 1 + done + + if is_boolean_yes "$KONG_MIGRATE"; then + info "Migrating database" + kong migrations bootstrap + while ! kong migrations list; do + debug "Error during the initial bootstrap for the database, will retry" + kong migrations up + kong migrations finish + done + fi +} diff --git a/bitnami/kong/1/debian-9/rootfs/postunpack.sh b/bitnami/kong/1/debian-9/rootfs/postunpack.sh new file mode 100755 index 000000000000..f19e435173e2 --- /dev/null +++ b/bitnami/kong/1/debian-9/rootfs/postunpack.sh @@ -0,0 +1,70 @@ +#!/bin/bash + +# shellcheck disable=SC1091 + +set -o errexit +set -o nounset +set -o pipefail +# set -o xtrace # Uncomment this line for debugging purpose + +. /libfs.sh +. /libos.sh +. /libkong.sh + +# Auxiliar functions + +######################## +# Set a configuration to Kong's configuration file +# Globals: +# KONG_CONF_FILE +# Arguments: +# $1 - key +# $2 - value +# Returns: +# None +######################### +kong_conf_set() { + local -r key="${1:?missing key}" + local -r value="${2:-}" + + # Check if the value was commented or set before + if grep -q "^#*${key}\s*=[^#]*" "$KONG_CONF_FILE"; then + debug "Updating entry for property '${key}' in configuration file" + # Update the existing key (leave trailing space for comments) + sed -ri "s|^(#*${key}\s*=)[^#]*|\1 ${value} |" "$KONG_CONF_FILE" + else + debug "Adding new entry for property '${key}' in configuration file" + # Add a new key + printf '%s = %s\n' "$key" "$value" >>"$KONG_CONF_FILE" + fi +} + +######################## +# Uncomment non-empty entries in Kong configuration +# Globals: +# KONG_CONF_FILE +# Arguments: +# None +# Returns: +# None +######################### +kong_configure_non_empty_values() { + # Uncomment all non-empty keys in the main Kong configuration file + sed -ri 's/^#+([a-z_ ]+)=(\s*[^# ]+)/\1=\2 /' "$KONG_CONF_FILE" +} + +# Load Kong environment variables +eval "$(kong_env)" + +# Ensure users and groups used by Kong exist +ensure_user_exists "$KONG_DAEMON_USER" "$KONG_DAEMON_GROUP" +# Ensure directories used by Kong exist and have proper permissions +ensure_dir_exists "$KONG_SERVER_DIR" +chmod -R g+rwX "$KONG_SERVER_DIR" "$KONG_CONF_DIR" +# Copy configuration file and set default values +cp "$KONG_DEFAULT_CONF_FILE" "$KONG_CONF_FILE" +kong_conf_set prefix "$KONG_SERVER_DIR" +kong_conf_set nginx_daemon off +kong_conf_set lua_package_path +kong_conf_set nginx_user +kong_configure_non_empty_values diff --git a/bitnami/kong/1/debian-9/rootfs/run.sh b/bitnami/kong/1/debian-9/rootfs/run.sh new file mode 100755 index 000000000000..e1a409e62410 --- /dev/null +++ b/bitnami/kong/1/debian-9/rootfs/run.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +# shellcheck disable=SC1091 + +set -o errexit +set -o nounset +set -o pipefail +# set -o xtrace # Uncomment this line for debugging purpose + +# Load libraries +. /liblog.sh +. /libos.sh +. /libkong.sh + +# Load Kong environment variables +eval "$(kong_env)" + +info "** Starting Kong **" + +exec kong start diff --git a/bitnami/kong/1/debian-9/rootfs/setup.sh b/bitnami/kong/1/debian-9/rootfs/setup.sh new file mode 100755 index 000000000000..97a3f821c294 --- /dev/null +++ b/bitnami/kong/1/debian-9/rootfs/setup.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +# shellcheck disable=SC1091 + +set -o errexit +set -o nounset +set -o pipefail +# set -o xtrace # Uncomment this line for debugging purpose + +# Load libraries +. /libos.sh +. /libkong.sh + +# Load Kong environment variables +eval "$(kong_env)" + +# Ensure Kong environment variables are valid +kong_validate +# Ensure file ownership is correct +am_i_root && chown -R "$KONG_DAEMON_USER":"$KONG_DAEMON_GROUP" "$KONG_SERVER_DIR" "$KONG_CONF_DIR" +# Ensure Kong is initialized +kong_initialize diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md new file mode 100644 index 000000000000..99d4764577e7 --- /dev/null +++ b/bitnami/kong/README.md @@ -0,0 +1,333 @@ +# What is Kong? + +> Kong is a scalable, open source API layer (aka API gateway or API middleware) that runs in front of any RESTful API. Extra functionalities beyond the core platform are extended through plugins. Kong is built on top of reliable technologies like NGINX and provides an easy-to-use RESTful API to operate and configure the system. + +[https://github.com/kong/kong](https://github.com/kong/kong) + +# TL;DR; + +``` +$ docker run --name kong bitnami/kong:latest +``` + +## Docker Compose + +```bash +$ curl -sSL https://raw.githubusercontent.com/bitnami/bitnami-docker-kong/master/docker-compose.yml > docker-compose.yml +$ docker-compose up -d +``` + +# 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. +* Bitnami containers, virtual machines and cloud images use the same components and configuration approach - making it easy to switch between formats based on your project needs. +* All our images are based on [minideb](https://github.com/bitnami/minideb) a minimalist Debian based container image which gives you a small base container image and the familiarity of a leading linux distribution. +* All Bitnami images available in Docker Hub are signed with [Docker Content Trust (DTC)](https://docs.docker.com/engine/security/trust/content_trust/). You can use `DOCKER_CONTENT_TRUST=1` to verify the integrity of the images. +* Bitnami container images are released daily with the latest distribution packages available. + +> This [CVE scan report](https://quay.io/repository/bitnami/kong?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. + +# How to deploy Kong in Kubernetes? + +You can find an example for testing Kong in Kubernetes with the `test.yaml` file. To launch it, run the command: + +```bash +$ kubectl apply -f test.yaml +``` + +> NOTE: If you are pulling from a private container registry, replace the image name with the full URL to the docker image, e.g.: +> +> - image: 'your-registry/image-name:your-version' + +# Why use a non-root container? + +Non-root container images add an extra layer of security and are generally recommended for production environments. However, because they run as a non-root user, privileged tasks are typically off-limits. Learn more about non-root containers [in our docs](https://docs.bitnami.com/containers/how-to/work-with-non-root-containers/). + +# Supported tags and respective `Dockerfile` links + +> NOTE: Debian 8 images have been deprecated in favor of Debian 9 images. Bitnami will not longer publish new Docker images based on Debian 8. + +Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/containers/how-to/understand-rolling-tags-containers/). + + +* [`1-ol-7`, `1.3.0-ol-7-r1` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r1/1/ol-7/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r4`, `1`, `1.3.0`, `1.3.0-r4`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r4/1/debian-9/Dockerfile) + +Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). + +# Get this image + +The recommended way to get the Bitnami Kong Docker Image is to pull the prebuilt image from the [Docker Hub Registry](https://hub.docker.com/r/bitnami/kong). + +```bash +$ docker pull bitnami/kong:latest +``` + +To use a specific version, you can pull a versioned tag. You can view the [list of available versions](https://hub.docker.com/r/bitnami/kong/tags/) in the Docker Hub Registry. + +```bash +$ docker pull bitnami/kong:[TAG] +``` + +If you wish, you can also build the image yourself. + +```bash +$ docker build -t bitnami/kong:latest 'https://github.com/bitnami/bitnami-docker-kong.git#master:1/debian-9' +``` + +# Connecting to other containers + +Using [Docker container networking](https://docs.docker.com/engine/userguide/networking/), a different server running inside a container can easily be accessed by your application containers and vice-versa. + +Containers attached to the same network can communicate with each other using the container name as the hostname. + +## Using the Command Line + +### Step 1: Create a network + +```bash +$ docker network create kong-network --driver bridge +``` + +### Step 2: Launch the Kong container within your network + +Use the `--network ` argument to the `docker run` command to attach the container to the `kong-network` network. + +```bash +$ docker run --name kong-node1 --network kong-network bitnami/kong:latest +``` + +### Step 3: Run another containers + +We can launch another containers using the same flag (`--network NETWORK`) in the `docker run` command. If you also set a name to your container, you will be able to use it as hostname in your network. + +# Configuration + +The Bitnami Docker Kong can be easily setup with the following environment variables: + +- `KONG_PROXY_LISTEN_ADDRESS`: Address to which Kong Proxy service is bound to. Default: **0.0.0.0** +- `KONG_PROXY_HTTP_PORT_NUMBER`: The port Kong Proxy is listening for HTTP requests. Default: **8000** +- `KONG_PROXY_HTTPS_PORT_NUMBER`: The port Kong Proxy is listening for HTTPS requests. Default: **8443** +- `KONG_ADMIN_LISTEN_ADDRESS`: Address to which Kong Admin service is bound to. Default: **127.0.0.1** +- `KONG_ADMIN_HTTP_PORT_NUMBER`: The port Kong Admin is listening for HTTP requests. Default: **8001** +- `KONG_ADMIN_HTTPS_PORT_NUMBER`: The port Kong Admin is listening for HTTPS requests. Default: **8444** +- `KONG_MIGRATE`: Whether to automatically run Kong migration scripts on this node. In a cluster, only one node should have this flag enabled. Default: **no** + +This container also supports configuring Kong via environment values starting with `KONG_`. For instance, by setting the `KONG_LOG_LEVEL` environment variable, Kong will take into account this value rather than the property set in `kong.conf`. It is recommended to set the following environment variables: + +- `KONG_DATABASE`: Database type used. Valid values: **postgres**, **cassandra** or **off**. Default: **postgres** +- For PostgreSQL database: `KONG_PG_HOST`, `KONG_PG_PORT`, `KONG_PG_TIMEOUT`, `KONG_PG_USER`, `KONG_PG_PASSWORD`. +- For Cassandra database: `KONG_CASSANDRA_CONTACT_POINTS`, `KONG_CASSANDRA_PORT`, `KONG_CASSANDRA_KEYSPACE`, `KONG_CASSANDRA_CONSISTENCY`, `KONG_CASSANDRA_USERNAME`, `KONG_CASSANDRA_PASSWORD`, `KONG_CASSANDRA_LB_POLICY`, `KONG_CASSANDRA_REPL_STRATEGY`, `KONG_CASSANDRA_REPL_FACTOR`, `KONG_CASSANDRA_DATA_CENTERS`. + +Check the official [Kong Configuration Reference](https://docs.konghq.com/latest/configuration/#environment-variables) for the full list of configurable properties. + +## Full configuration + +The image looks for Kong the configuration file in `/opt/bitnami/kong/conf/kong.conf`, which you can overwrite using your own custom configuration file. + +```bash +$ docker run --name kong \ + -e KONG_DATABASE=off \ + -v /path/to/kong.conf:/opt/bitnami/kong/conf/kong.conf \ + bitnami/kong:latest +``` + +or using Docker Compose: + +```yaml +version: '2' + +services: + kong: + image: 'bitnami/kong:latest' + ports: + - '8000:8000' + - '8443:8443' + environment: + # Assume we don't want data persistence for simplicity purposes + - KONG_DATABASE=off + volumes: + - /path/to/kong.conf:/opt/bitnami/kong/conf/kong.conf +``` + +# Logging + +The Bitnami Kong Docker image sends the container logs to `stdout`. To view the logs: + +```bash +$ docker logs kong +``` + +You can configure the containers [logging driver](https://docs.docker.com/engine/admin/logging/overview/) using the `--log-driver` option if you wish to consume the container logs differently. In the default configuration docker uses the `json-file` driver. + +# Understand the structure of this image + +The Bitnami Kong Docker image is built using a Dockerfile with the structure below: + +```Dockerfile +FROM bitnami/minideb-extras-base + +ENV ... + +# Install required system packages and dependencies +RUN install_packages xxx yyy zzz +RUN . ./libcomponent.sh && component_unpack && component_unpack "kong" "aa.bb.cc-dd" + +COPY rootfs / +ENV ... + +EXPOSE 8080 8443 +ENTRYPOINT [ "/entrypoint.sh" ] +CMD [ "/run.sh" ] +``` + +The Dockerfile has several sections related to: + +- Components installation +- Components static configuration +- Environment variables +- Volumes +- Ports to be exposed +- Working directory and user + - Note that once the user is set to 1001, unprivileged commands cannot be executed any longer. +- Entrypoint and command + - Take into account that these actions are not executed until the container is started. + +# Customize this image + +The Bitnami Kong Docker image is designed to be extended so it can be used as the base image for your custom API service. + +> Note: Read the [previous section](#understand-the-structure-of-this-image) to understand the Dockerfile structure before extending this image. + +## Extend this image + +Before extending this image, please note it is possible there are certain ways you can configure Kong using the original: + +- [Configuring Kong via environment variables](#configuration). +- [Changing the 'kong.conf' file](#full-configuration). + +If your desired customizations cannot be covered using the methods mentioned above, extend the image. To do so, create your own image using a Dockerfile with the format below: + +```Dockerfile +FROM bitnami/kong +## Put your customizations below +... +``` + +Here is an example of extending the image with the following modifications: + +- Install the `vim` editor +- Modify the Kong configuration file +- Modify the ports used by Kong +- Change the user that runs the container + +```Dockerfile +FROM bitnami/kong +LABEL maintainer "Bitnami " + +## Install 'vim' +USER 0 # Required to perform privileged actions +RUN install_packages vim +USER 1001 # Revert to the original non-root user + +## Disable anonymous reports +# Keep in mind it is possible to do this by setting the KONG_ANONYMOUS_REPORTS=off environment variable +RUN sed -i -r 's/#anonymous_reports = on/anonymous_reports = off/' /opt/bitnami/kong/conf/kong.conf + +## Modify the ports used by Kong by default +# It is also possible to change these environment variables at runtime +ENV KONG_PROXY_HTTP_PORT_NUMBER=8080 +ENV KONG_ADMIN_HTTP_PORT_NUMBER=8081 +EXPOSE 8080 8081 8443 8444 + +## Modify the default container user +USER 1002 +``` + +Based on the extended image, you can use a Docker Compose file like the one below to add other features: + +- Configure Kong via environment variables +- Override the entire `kong.conf` configuration file + +```yaml +version: '2' +services: + kong: + build: . + ports: + - '80:8080' + - '443:8443' + volumes: + - ./config/kong.conf:/opt/bitnami/kong/conf/kong.conf + environment: + # Assume we don't want data persistence for simplicity purposes + - KONG_DATABASE=off +volumes: + data: + driver: local +``` + +# Maintenance + +## Upgrade this image + +Bitnami provides up-to-date versions of Kong, 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 + +```bash +$ docker pull bitnami/kong:latest +``` + +### Step 2: Stop the running container + +Stop the currently running container using the command + +```bash +$ docker stop kong +``` + +### Step 3: Remove the currently running container + +```bash +$ docker rm -v kong +``` + +### Step 4: Run the new image + +Re-create your container from the new image. + +```bash +$ docker run --name kong bitnami/kong:latest +``` + +# 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-kong/issues), or submit a [pull request](https://github.com/bitnami/bitnami-docker-kong/pulls) with your contribution. + +# Issues + +If you encountered a problem running this container, you can file an [issue](https://github.com/bitnami/bitnami-docker-kong/issues). 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) + +# License + +Copyright (c) 2019 Bitnami + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/bitnami/kong/docker-compose-cassandra.yml b/bitnami/kong/docker-compose-cassandra.yml new file mode 100644 index 000000000000..2aefd1ea4f3f --- /dev/null +++ b/bitnami/kong/docker-compose-cassandra.yml @@ -0,0 +1,25 @@ +version: '2' +services: + cassandra: + image: bitnami/cassandra:3 + volumes: + - cassandra_data:/bitnami + environment: + - CASSANDRA_CLUSTER_NAME=cassandra-cluster + - CASSANDRA_SEEDS=cassandra + - CASSANDRA_USER=kong + - CASSANDRA_PASSWORD=kong + - CASSANDRA_PASSWORD_SEEDER=yes + kong: + image: bitnami/kong:1 + ports: + - 8000:8000 + - 8443:8443 + environment: + - KONG_MIGRATE=yes + - KONG_DATABASE=cassandra + - KONG_CASSANDRA_CONTACT_POINTS=cassandra + - KONG_CASSANDRA_PASSWORD=kong +volumes: + cassandra_data: + driver: local diff --git a/bitnami/kong/docker-compose-cluster.yml b/bitnami/kong/docker-compose-cluster.yml new file mode 100644 index 000000000000..ba447f248c2c --- /dev/null +++ b/bitnami/kong/docker-compose-cluster.yml @@ -0,0 +1,53 @@ +version: '2' +services: + cassandra: + image: bitnami/cassandra:3 + volumes: + - cassandra_data:/bitnami + environment: + - CASSANDRA_SEEDS=cassandra,cassandra2 + - CASSANDRA_CLUSTER_NAME=cassandra-cluster + - CASSANDRA_PASSWORD_SEEDER=yes + - CASSANDRA_USER=kong + - CASSANDRA_PASSWORD=kong + # By default, Cassandra autodetects the available host memory and takes as much as it can. + # Therefore, memory options are mandatory if multiple Cassandras are launched in the same node. + - MAX_HEAP_SIZE=2G + - HEAP_NEWSIZE=200M + cassandra2: + image: bitnami/cassandra:3 + volumes: + - cassandra2_data:/bitnami + environment: + - CASSANDRA_SEEDS=cassandra,cassandra2 + - CASSANDRA_CLUSTER_NAME=cassandra-cluster + - CASSANDRA_USER=kong + - CASSANDRA_PASSWORD=kong + # By default, Cassandra autodetects the available host memory and takes as much as it can. + # Therefore, memory options are mandatory if multiple Cassandras are launched in the same node. + - MAX_HEAP_SIZE=2G + - HEAP_NEWSIZE=200M + kong: + image: bitnami/kong:1 + ports: + - 18000:8000 + - 18443:8443 + environment: + - KONG_MIGRATE=yes + - KONG_DATABASE=cassandra + - KONG_CASSANDRA_CONTACT_POINTS=cassandra,cassandra2 + - KONG_CASSANDRA_PASSWORD=kong + kong2: + image: bitnami/kong:1 + ports: + - 28000:8000 + - 28443:8443 + environment: + - KONG_DATABASE=cassandra + - KONG_CASSANDRA_CONTACT_POINTS=cassandra,cassandra2 + - KONG_CASSANDRA_PASSWORD=kong +volumes: + cassandra_data: + driver: local + cassandra2_data: + driver: local diff --git a/bitnami/kong/docker-compose.yml b/bitnami/kong/docker-compose.yml new file mode 100644 index 000000000000..acc2801ac7c0 --- /dev/null +++ b/bitnami/kong/docker-compose.yml @@ -0,0 +1,22 @@ +version: '2' +services: + postgresql: + image: bitnami/postgresql:11 + volumes: + - postgresql_data:/bitnami/postgresql + environment: + - POSTGRESQL_USERNAME=kong + - POSTGRESQL_PASSWORD=bitnami + - POSTGRESQL_DATABASE=kong + kong: + image: bitnami/kong:1 + ports: + - 8000:8000 + - 8443:8443 + environment: + - KONG_MIGRATE=yes + - KONG_PG_HOST=postgresql + - KONG_PG_PASSWORD=bitnami +volumes: + postgresql_data: + driver: local diff --git a/bitnami/kong/test.yaml b/bitnami/kong/test.yaml new file mode 100644 index 000000000000..1ff8f8e99c0f --- /dev/null +++ b/bitnami/kong/test.yaml @@ -0,0 +1,109 @@ +## This is test deployment for Kubernetes platforms. +## This is _not_ intended to be used in production. +## +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + app.kubernetes.io/name: test-postgresql + app.kubernetes.io/component: test-postgresql +spec: + replicas: 1 + selector: + matchLabels: + app.kubernetes.io/name: test-postgresql + app.kubernetes.io/component: postgresql + template: + metadata: + labels: + app.kubernetes.io/name: test-postgresql + app.kubernetes.io/component: postgresql + spec: + containers: + - image: bitnami/postgresql + name: test-postgresql + env: + - name: POSTGRESQL_USERNAME + value: kong + - name: POSTGRESQL_PASSWORD + value: bitnami + - name: POSTGRESQL_DATABASE + value: kong + posts: + - name: postgresql + containerPort: 5432 + protocol: TCP +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + app.kubernetes.io/name: test-kong + app.kubernetes.io/component: kong +spec: + replicas: 1 + selector: + matchLabels: + app.kubernetes.io/name: test-kong + app.kubernetes.io/component: kong + template: + metadata: + labels: + app.kubernetes.io/name: test-kong + app.kubernetes.io/component: kong + spec: + containers: + - image: bitnami/kong + name: kong + env: + - name: KONG_MIGRATE + value: yes + - name: KONG_PG_HOST + value: postgresql + - name: KONG_PG_PASSWORD + value: bitnami + ports: + - name: kong-proxy + containerPort: 8000 + protocol: TCP + - name: kong-proxy-ssl + containerPort: 8000 + protocol: TCP +--- +apiVersion: v1 +kind: Service +metadata: + name: test-postgresql + labels: + app.kubernetes.io/name: test-postgresql + app.kubernetes.io/component: postgresql +spec: + type: ClusterIP + ports: + - port: 5432 + protocol: TCP + targetPort: postgresql + selector: + app.kubernetes.io/name: test-postgresql + app.kubernetes.io/component: postgresql + +--- +apiVersion: v1 +kind: Service +metadata: + name: test-kong + labels: + app.kubernetes.io/name: test-kong + app.kubernetes.io/component: kong +spec: + type: ClusterIP + ports: + - port: 8000 + protocol: TCP + targetPort: kong-proxy + - port: 8443 + protocol: TCP + targetPort: kong-proxy-ssl + selector: + app.kubernetes.io/name: test-kong + app.kubernetes.io/component: kong From 9d8d65f882cc3c3528125103fbd7ca8ddf56193b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 20 Sep 2019 09:49:38 +0000 Subject: [PATCH 003/950] 1.3.0-ol-7-r2 release --- bitnami/kong/1/ol-7/Dockerfile | 23 +++ bitnami/kong/1/ol-7/docker-compose.yml | 22 ++ bitnami/kong/1/ol-7/rootfs/entrypoint.sh | 26 +++ bitnami/kong/1/ol-7/rootfs/libkong.sh | 251 +++++++++++++++++++++++ bitnami/kong/1/ol-7/rootfs/postunpack.sh | 70 +++++++ bitnami/kong/1/ol-7/rootfs/run.sh | 20 ++ bitnami/kong/1/ol-7/rootfs/setup.sh | 22 ++ bitnami/kong/README.md | 2 +- 8 files changed, 435 insertions(+), 1 deletion(-) create mode 100644 bitnami/kong/1/ol-7/Dockerfile create mode 100644 bitnami/kong/1/ol-7/docker-compose.yml create mode 100755 bitnami/kong/1/ol-7/rootfs/entrypoint.sh create mode 100644 bitnami/kong/1/ol-7/rootfs/libkong.sh create mode 100755 bitnami/kong/1/ol-7/rootfs/postunpack.sh create mode 100755 bitnami/kong/1/ol-7/rootfs/run.sh create mode 100755 bitnami/kong/1/ol-7/rootfs/setup.sh diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile new file mode 100644 index 000000000000..f6a6188d66c7 --- /dev/null +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -0,0 +1,23 @@ +FROM bitnami/oraclelinux-extras-base:7-r423 +LABEL maintainer "Bitnami " + +ENV HOME="/" \ + OS_ARCH="x86_64" \ + OS_FLAVOUR="ol-7" \ + OS_NAME="linux" + +# Install required system packages and dependencies +RUN install_packages glibc keyutils-libs krb5-libs libcom_err libgcc libselinux libyaml nss-softokn-freebl openssl-libs pcre perl zlib +RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-0" --checksum c9b96a0183434ab30324827c4bff216d1044832301c950f1e229c8468ed4a405 + +COPY rootfs / +RUN /postunpack.sh +ENV BITNAMI_APP_NAME="kong" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r2" \ + PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" + +EXPOSE 8000 8001 8443 8444 + +USER 1001 +ENTRYPOINT [ "/entrypoint.sh" ] +CMD [ "/run.sh" ] diff --git a/bitnami/kong/1/ol-7/docker-compose.yml b/bitnami/kong/1/ol-7/docker-compose.yml new file mode 100644 index 000000000000..726eef225e60 --- /dev/null +++ b/bitnami/kong/1/ol-7/docker-compose.yml @@ -0,0 +1,22 @@ +version: '2' +services: + postgresql: + image: bitnami/postgresql:11-ol-7 + volumes: + - postgresql_data:/bitnami/postgresql + environment: + - POSTGRESQL_USERNAME=kong + - POSTGRESQL_PASSWORD=bitnami + - POSTGRESQL_DATABASE=kong + kong: + image: bitnami/kong:1-ol-7 + ports: + - 8000:8000 + - 8443:8443 + environment: + - KONG_MIGRATE=yes + - KONG_PG_HOST=postgresql + - KONG_PG_PASSWORD=bitnami +volumes: + postgresql_data: + driver: local diff --git a/bitnami/kong/1/ol-7/rootfs/entrypoint.sh b/bitnami/kong/1/ol-7/rootfs/entrypoint.sh new file mode 100755 index 000000000000..a6f9da9603c8 --- /dev/null +++ b/bitnami/kong/1/ol-7/rootfs/entrypoint.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +# shellcheck disable=SC1091 + +set -o errexit +set -o nounset +set -o pipefail +#set -o xtrace # Uncomment this line for debugging purpose + +# Load libraries +. /libbitnami.sh +. /liblog.sh +. /libkong.sh + +eval "$(kong_env)" + +print_welcome_page + +if [[ "$*" = *"/run.sh"* ]]; then + info "** Starting Kong setup **" + /setup.sh + info "** Kong setup finished! **" +fi + +echo "" +exec "$@" diff --git a/bitnami/kong/1/ol-7/rootfs/libkong.sh b/bitnami/kong/1/ol-7/rootfs/libkong.sh new file mode 100644 index 000000000000..e93fad1818ba --- /dev/null +++ b/bitnami/kong/1/ol-7/rootfs/libkong.sh @@ -0,0 +1,251 @@ +#!/bin/bash +# +# Bitnami Kong library + +# shellcheck disable=SC1090 +# shellcheck disable=SC1091 + +# Load generic libraries +. /libfs.sh +. /liblog.sh +. /libnet.sh +. /libos.sh +. /libservice.sh +. /libvalidations.sh + +######################## +# Load global variables used for Kong configuration. +# Globals: +# KONG_* +# Arguments: +# None +# Returns: +# Series of exports to be used as 'eval' arguments +######################### +kong_env() { + # Avoid environment settings getting overridden twice + if [[ -n "${MODULE:-}" ]]; then + return + fi + + cat <<"EOF" +# Bitnami debug +export MODULE=kong +export BITNAMI_DEBUG="${BITNAMI_DEBUG:-false}" + +# Paths +export KONG_BASE_DIR="/opt/bitnami/kong" +export KONG_CONF_DIR="${KONG_BASE_DIR}/conf" +export KONG_SERVER_DIR="${KONG_BASE_DIR}/server" + +export KONG_CONF_FILE="${KONG_CONF_DIR}/kong.conf" +export KONG_DEFAULT_CONF_FILE="${KONG_CONF_DIR}/kong.conf.default" + +# Users +export KONG_DAEMON_USER="${KONG_DAEMON_USER:-kong}" +export KONG_DAEMON_GROUP="${KONG_DAEMON_GROUP:-kong}" + +# Cluster settings +export KONG_MIGRATE="${KONG_MIGRATE:-no}" + +# Port and service bind configurations for KONG_PROXY_LISTEN and KONG_ADMIN_LISTEN +# By setting these separately, we are consistent with other Bitnami solutions +# However it is still possible to directly set KONG_PROXY_LISTEN and KONG_ADMIN_LISTEN +export KONG_PROXY_LISTEN_ADDRESS="${KONG_PROXY_LISTEN_ADDRESS:-0.0.0.0}" +export KONG_PROXY_HTTP_PORT_NUMBER="${KONG_PROXY_HTTP_PORT_NUMBER:-8000}" +export KONG_PROXY_HTTPS_PORT_NUMBER="${KONG_PROXY_HTTPS_PORT_NUMBER:-8443}" +export KONG_ADMIN_LISTEN_ADDRESS="${KONG_ADMIN_LISTEN_ADDRESS:-127.0.0.1}" +export KONG_ADMIN_HTTP_PORT_NUMBER="${KONG_ADMIN_HTTP_PORT_NUMBER:-8001}" +export KONG_ADMIN_HTTPS_PORT_NUMBER="${KONG_ADMIN_HTTPS_PORT_NUMBER:-8444}" + +# Kong configuration +# These environment variables are used by Kong and allow overriding values in its configuration file +export KONG_NGINX_DAEMON="off" +EOF + + if am_i_root; then + cat <<"EOF" +export KONG_NGINX_USER="${KONG_DAEMON_USER} ${KONG_DAEMON_GROUP}" +EOF + fi + + if [[ -f "${KONG_CASSANDRA_PASSWORD_FILE:-}" ]]; then + cat <<"EOF" +export KONG_CASSANDRA_PASSWORD="$(< "${KONG_CASSANDRA_PASSWORD_FILE}")" +EOF + fi + + if [[ -f "${KONG_POSTGRESQL_PASSWORD_FILE:-}" ]]; then + cat <<"EOF" +export KONG_PG_PASSWORD="$(< "${KONG_POSTGRESQL_PASSWORD_FILE}")" +EOF + fi + + # Compound environment variables that form a single Kong configuration entry + if [[ -n "${KONG_PROXY_LISTEN:-}" ]]; then + cat <<"EOF" +export KONG_PROXY_LISTEN_OVERRIDE="yes" +EOF + else + cat <<"EOF" +export KONG_PROXY_LISTEN="${KONG_PROXY_LISTEN_ADDRESS}:${KONG_PROXY_HTTP_PORT_NUMBER}, ${KONG_PROXY_LISTEN_ADDRESS}:${KONG_PROXY_HTTPS_PORT_NUMBER} ssl" +export KONG_PROXY_LISTEN_OVERRIDE="no" +EOF + fi + if [[ -n "${KONG_ADMIN_LISTEN:-}" ]]; then + cat <<"EOF" +export KONG_ADMIN_LISTEN_OVERRIDE="yes" +EOF + else + cat <<"EOF" +export KONG_ADMIN_LISTEN="${KONG_ADMIN_LISTEN_ADDRESS}:${KONG_ADMIN_HTTP_PORT_NUMBER}, ${KONG_ADMIN_LISTEN_ADDRESS}:${KONG_ADMIN_HTTPS_PORT_NUMBER} ssl" +export KONG_ADMIN_LISTEN_OVERRIDE="no" +EOF + fi +} + +######################## +# Validate settings in KONG_* environment variables +# Globals: +# KONG_* +# Arguments: +# None +# Returns: +# None +######################### +kong_validate() { + info "Validating settings in KONG_* env vars" + local error_code=0 + + # Auxiliary functions + + print_validation_error() { + error "$1" + error_code="1" + } + + check_yes_no_value() { + if ! is_yes_no_value "${!1}"; then + print_validation_error "The allowed values for ${1} are [yes, no]" + fi + } + + check_password_file() { + if [[ -n "${!1:-}" ]] && ! [[ -f "${!1:-}" ]]; then + print_validation_error "The variable ${1} is defined but the file ${!1} is not accessible or does not exist" + fi + } + + check_resolved_hostname() { + if ! is_hostname_resolved "$1"; then + warn "Hostname ${1} could not be resolved, this could lead to connection issues" + fi + } + + check_allowed_port() { + local validate_port_args=() + ! am_i_root && validate_port_args+=("-unprivileged") + if ! err="$(validate_port "${validate_port_args[@]}" "${!1}")"; then + print_validation_error "An invalid port was specified in the environment variable ${1}: ${err}" + fi + } + + check_conflicting_ports() { + local -r total="$#" + for i in $(seq 1 "$((total - 1))"); do + for j in $(seq "$((i + 1))" "$total"); do + if (( "${!i}" == "${!j}" )); then + print_validation_error "${!i} and ${!j} are bound to the same port" + fi + done + done + } + + check_yes_no_value KONG_MIGRATE + + # Validate some of the supported environment variables used by Kong + + # Database setting validations + if [[ "${KONG_DATABASE:-postgres}" = "postgres" ]]; then + # PostgreSQL is the default database type + check_password_file KONG_POSTGRESQL_PASSWORD_FILE + [[ -n "${KONG_PG_HOST:-}" ]] && check_resolved_hostname "${KONG_PG_HOST:-}" + if [[ -n "${!KONG_CASSANDRA_@}" ]]; then + warn "KONG_DATABASE is empty or set to 'postgres', so the following environment variables will be ignored: ${!KONG_CASSANDRA_@}" + fi + elif [[ "${KONG_DATABASE:-}" = "cassandra" ]]; then + check_password_file KONG_CASSANDRA_PASSWORD_FILE + for cassandra_contact_point in $(echo "${CASSANDRA_CONTACT_POINTS:-}" | sed -r 's/[, ]+/\n/'); do + check_resolved_hostname "${cassandra_contact_point}" + done + if [[ -n "${!KONG_PG_@}" ]]; then + warn "KONG_DATABASE is set to 'cassandra', so the following environment variables will be ignored: ${!KONG_PG_@}" + fi + elif [[ "${KONG_DATABASE:-}" = "off" ]]; then + warn "KONG_DATABASE is set to 'off', Kong will run but data will not be persisted" + else + print_validation_error "Wrong value '${KONG_DATABASE}' passed to KONG_DATABASE. Valid values: 'off', 'cassandra', 'postgres'" + fi + + # Listen addresses and port validations + used_ports=() + if is_boolean_yes "$KONG_PROXY_LISTEN_OVERRIDE"; then + warn "KONG_PROXY_LISTEN was set, it will not be validated and the environment variables KONG_PROXY_LISTEN_ADDRESS, KONG_PROXY_HTTP_PORT_NUMBER and KONG_PROXY_HTTPS_PORT_NUMBER will be ignored" + else + used_ports+=(KONG_PROXY_HTTP_PORT_NUMBER KONG_PROXY_HTTPS_PORT_NUMBER) + if [[ "$KONG_PROXY_LISTEN_ADDRESS" != "0.0.0.0" && "$KONG_PROXY_LISTEN_ADDRESS" != "127.0.0.1" ]]; then + warn "Kong Proxy is set to listen at ${KONG_PROXY_LISTEN_ADDRESS} instead of 0.0.0.0 or 127.0.0.1, this could make Kong inaccessible" + fi + fi + if is_boolean_yes "$KONG_ADMIN_LISTEN_OVERRIDE"; then + warn "KONG_ADMIN_LISTEN was set, it will not be validated and the environment variables KONG_ADMIN_LISTEN_ADDRESS, KONG_ADMIN_HTTP_PORT_NUMBER and KONG_ADMIN_HTTPS_PORT_NUMBER will be ignored" + else + used_ports+=(KONG_ADMIN_HTTP_PORT_NUMBER KONG_ADMIN_HTTPS_PORT_NUMBER) + if [[ "$KONG_ADMIN_LISTEN_ADDRESS" != "127.0.0.1" ]]; then + warn "Kong Admin is set to listen at ${KONG_ADMIN_LISTEN_ADDRESS} instead of 127.0.0.1, opening it to the outside could make it insecure" + fi + fi + for port in "${used_ports[@]}"; do + check_allowed_port "${port}" + done + if [[ "${#used_ports[@]}" -ne 0 ]]; then + check_conflicting_ports "${used_ports[@]}" + fi + + # Quit if any failures occurred + [[ "$error_code" -eq 0 ]] || exit "$error_code" +} + +######################## +# Ensure Kong is initialized +# Globals: +# KONG_* +# Arguments: +# None +# Returns: +# None +######################### +kong_initialize() { + info "Initializing Kong" + + info "Waiting for database connection to succeed" + + while ! kong_migrations_list_output="$(kong migrations list 2>&1)"; do + if is_boolean_yes "$KONG_MIGRATE" && [[ "$kong_migrations_list_output" =~ "Database needs bootstrapping"* ]]; then + break + fi + debug "$kong_migrations_list_output" + debug "Database is still not ready, will retry" + sleep 1 + done + + if is_boolean_yes "$KONG_MIGRATE"; then + info "Migrating database" + kong migrations bootstrap + while ! kong migrations list; do + debug "Error during the initial bootstrap for the database, will retry" + kong migrations up + kong migrations finish + done + fi +} diff --git a/bitnami/kong/1/ol-7/rootfs/postunpack.sh b/bitnami/kong/1/ol-7/rootfs/postunpack.sh new file mode 100755 index 000000000000..f19e435173e2 --- /dev/null +++ b/bitnami/kong/1/ol-7/rootfs/postunpack.sh @@ -0,0 +1,70 @@ +#!/bin/bash + +# shellcheck disable=SC1091 + +set -o errexit +set -o nounset +set -o pipefail +# set -o xtrace # Uncomment this line for debugging purpose + +. /libfs.sh +. /libos.sh +. /libkong.sh + +# Auxiliar functions + +######################## +# Set a configuration to Kong's configuration file +# Globals: +# KONG_CONF_FILE +# Arguments: +# $1 - key +# $2 - value +# Returns: +# None +######################### +kong_conf_set() { + local -r key="${1:?missing key}" + local -r value="${2:-}" + + # Check if the value was commented or set before + if grep -q "^#*${key}\s*=[^#]*" "$KONG_CONF_FILE"; then + debug "Updating entry for property '${key}' in configuration file" + # Update the existing key (leave trailing space for comments) + sed -ri "s|^(#*${key}\s*=)[^#]*|\1 ${value} |" "$KONG_CONF_FILE" + else + debug "Adding new entry for property '${key}' in configuration file" + # Add a new key + printf '%s = %s\n' "$key" "$value" >>"$KONG_CONF_FILE" + fi +} + +######################## +# Uncomment non-empty entries in Kong configuration +# Globals: +# KONG_CONF_FILE +# Arguments: +# None +# Returns: +# None +######################### +kong_configure_non_empty_values() { + # Uncomment all non-empty keys in the main Kong configuration file + sed -ri 's/^#+([a-z_ ]+)=(\s*[^# ]+)/\1=\2 /' "$KONG_CONF_FILE" +} + +# Load Kong environment variables +eval "$(kong_env)" + +# Ensure users and groups used by Kong exist +ensure_user_exists "$KONG_DAEMON_USER" "$KONG_DAEMON_GROUP" +# Ensure directories used by Kong exist and have proper permissions +ensure_dir_exists "$KONG_SERVER_DIR" +chmod -R g+rwX "$KONG_SERVER_DIR" "$KONG_CONF_DIR" +# Copy configuration file and set default values +cp "$KONG_DEFAULT_CONF_FILE" "$KONG_CONF_FILE" +kong_conf_set prefix "$KONG_SERVER_DIR" +kong_conf_set nginx_daemon off +kong_conf_set lua_package_path +kong_conf_set nginx_user +kong_configure_non_empty_values diff --git a/bitnami/kong/1/ol-7/rootfs/run.sh b/bitnami/kong/1/ol-7/rootfs/run.sh new file mode 100755 index 000000000000..e1a409e62410 --- /dev/null +++ b/bitnami/kong/1/ol-7/rootfs/run.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +# shellcheck disable=SC1091 + +set -o errexit +set -o nounset +set -o pipefail +# set -o xtrace # Uncomment this line for debugging purpose + +# Load libraries +. /liblog.sh +. /libos.sh +. /libkong.sh + +# Load Kong environment variables +eval "$(kong_env)" + +info "** Starting Kong **" + +exec kong start diff --git a/bitnami/kong/1/ol-7/rootfs/setup.sh b/bitnami/kong/1/ol-7/rootfs/setup.sh new file mode 100755 index 000000000000..97a3f821c294 --- /dev/null +++ b/bitnami/kong/1/ol-7/rootfs/setup.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +# shellcheck disable=SC1091 + +set -o errexit +set -o nounset +set -o pipefail +# set -o xtrace # Uncomment this line for debugging purpose + +# Load libraries +. /libos.sh +. /libkong.sh + +# Load Kong environment variables +eval "$(kong_env)" + +# Ensure Kong environment variables are valid +kong_validate +# Ensure file ownership is correct +am_i_root && chown -R "$KONG_DAEMON_USER":"$KONG_DAEMON_GROUP" "$KONG_SERVER_DIR" "$KONG_CONF_DIR" +# Ensure Kong is initialized +kong_initialize diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 99d4764577e7..d9cbe7a43a79 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r1` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r1/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r2` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r2/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r4`, `1`, `1.3.0`, `1.3.0-r4`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r4/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9e3b7358e1e6e2c5d705ec1e9e0c36bd0a6c16c7 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 20 Sep 2019 19:14:56 +0000 Subject: [PATCH 004/950] 1.3.0-ol-7-r3 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index f6a6188d66c7..aa1921a0fe65 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -8,12 +8,12 @@ ENV HOME="/" \ # Install required system packages and dependencies RUN install_packages glibc keyutils-libs krb5-libs libcom_err libgcc libselinux libyaml nss-softokn-freebl openssl-libs pcre perl zlib -RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-0" --checksum c9b96a0183434ab30324827c4bff216d1044832301c950f1e229c8468ed4a405 +RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bcd149f1f265910a05f23f95e6033c7a21c0f0d5137bd82fff28d0f335 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r2" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d9cbe7a43a79..c5321f92daa7 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r2` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r2/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r3` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r3/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r4`, `1`, `1.3.0`, `1.3.0-r4`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r4/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 49fbe3b2ea0e5380b806838f7714fa700c282c87 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 20 Sep 2019 19:19:33 +0000 Subject: [PATCH 005/950] 1.3.0-debian-9-r5 release --- bitnami/kong/1/debian-9/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 296fbc021eb3..ca70e0590058 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -8,12 +8,12 @@ ENV HOME="/" \ # Install required system packages and dependencies RUN install_packages libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl zlib1g -RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-2" --checksum 36bf379be759af4145c940081f6e0405c43817e9d74775f7204d2604d12bc31a +RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f2180696c95e475cdf5667f7bbe945db5972e6800e8a2c0c293997fe0bd COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r4" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c5321f92daa7..d9be8414beaf 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r3` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r3/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r4`, `1`, `1.3.0`, `1.3.0-r4`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r4/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r5`, `1`, `1.3.0`, `1.3.0-r5`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r5/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 119af1cc9804d24cf78392e9472603f0db4693d7 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 21 Sep 2019 05:22:49 +0000 Subject: [PATCH 006/950] 1.3.0-debian-9-r6 release --- bitnami/kong/1/debian-9/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index ca70e0590058..963ea3f0ff1d 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/minideb-extras-base:stretch-r366 +FROM bitnami/minideb-extras-base:stretch-r367 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r5" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d9be8414beaf..b83e02d3488f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r3` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r3/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r5`, `1`, `1.3.0`, `1.3.0-r5`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r5/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r6`, `1`, `1.3.0`, `1.3.0-r6`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r6/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9f85902e46cd4614d08d9ee8c02f331b2da8666e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 21 Sep 2019 06:42:30 +0000 Subject: [PATCH 007/950] 1.3.0-ol-7-r4 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index aa1921a0fe65..91868afb1255 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r423 +FROM bitnami/oraclelinux-extras-base:7-r424 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r3" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b83e02d3488f..aac90bd142ed 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r3` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r3/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r4` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r4/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r6`, `1`, `1.3.0`, `1.3.0-r6`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r6/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From a29aabae976cc1b66c75fd22cdb25cbea94af10f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 22 Sep 2019 04:04:57 +0000 Subject: [PATCH 008/950] 1.3.0-ol-7-r5 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 91868afb1255..46db56e0888c 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r424 +FROM bitnami/oraclelinux-extras-base:7-r425 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r4" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index aac90bd142ed..65140d17ac6d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r4` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r4/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r5` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r5/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r6`, `1`, `1.3.0`, `1.3.0-r6`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r6/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 94903662dda4c2302f4722f9e528c12570e534e1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 22 Sep 2019 12:01:19 +0000 Subject: [PATCH 009/950] 1.3.0-debian-9-r7 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 963ea3f0ff1d..a642d6d0d44f 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r6" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 65140d17ac6d..94696152ddb1 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r5` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r5/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r6`, `1`, `1.3.0`, `1.3.0-r6`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r6/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r7`, `1`, `1.3.0`, `1.3.0-r7`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r7/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 6eae022ce0c91c0d957cbe925b492ee54fab157d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 23 Sep 2019 03:46:41 +0000 Subject: [PATCH 010/950] 1.3.0-ol-7-r6 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 46db56e0888c..0461ca55738c 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r425 +FROM bitnami/oraclelinux-extras-base:7-r426 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r5" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 94696152ddb1..d8fdb373abca 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r5` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r5/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r6` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r6/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r7`, `1`, `1.3.0`, `1.3.0-r7`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r7/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5e0b939b5b8ea07ddfed9ef36e0442fb2571d3f9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 23 Sep 2019 18:08:47 +0000 Subject: [PATCH 011/950] 1.3.0-debian-9-r8 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index a642d6d0d44f..6515119fb91f 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r7" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d8fdb373abca..9c1649d19658 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r6` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r6/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r7`, `1`, `1.3.0`, `1.3.0-r7`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r7/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r8`, `1`, `1.3.0`, `1.3.0-r8`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r8/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5e4aea71a9a69fe39d7857b8ce4ed3f44cb11c50 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 24 Sep 2019 03:44:27 +0000 Subject: [PATCH 012/950] 1.3.0-ol-7-r7 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 0461ca55738c..1f5b700cfaf1 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r426 +FROM bitnami/oraclelinux-extras-base:7-r427 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r6" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9c1649d19658..9925a2d866c0 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r6` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r6/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r7` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r7/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r8`, `1`, `1.3.0`, `1.3.0-r8`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r8/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From faaa24d971a1bbf24d7b3365c3ec88ff13efd363 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 24 Sep 2019 15:41:23 +0000 Subject: [PATCH 013/950] 1.3.0-debian-9-r9 release --- bitnami/kong/1/debian-9/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 6515119fb91f..9d53c48e79ff 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/minideb-extras-base:stretch-r367 +FROM bitnami/minideb-extras-base:stretch-r368 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r8" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9925a2d866c0..32b941eb24ae 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r7` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r7/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r8`, `1`, `1.3.0`, `1.3.0-r8`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r8/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r9`, `1`, `1.3.0`, `1.3.0-r9`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r9/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From a04989c45c2fe3b873f86581b97eeccc3a2357e0 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 25 Sep 2019 03:39:53 +0000 Subject: [PATCH 014/950] 1.3.0-ol-7-r8 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 1f5b700cfaf1..0042bc81372d 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r427 +FROM bitnami/oraclelinux-extras-base:7-r428 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r7" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 32b941eb24ae..d0ffe93e4517 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r7` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r7/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r8` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r8/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r9`, `1`, `1.3.0`, `1.3.0-r9`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r9/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 17e7d240a5fac18bd73d4e6cd7570c5d8d333a18 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 25 Sep 2019 21:48:04 +0000 Subject: [PATCH 015/950] 1.3.0-debian-9-r10 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 9d53c48e79ff..c4848e22cd19 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r9" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r10" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d0ffe93e4517..4c9b246a6e9d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r8` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r8/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r9`, `1`, `1.3.0`, `1.3.0-r9`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r9/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r10`, `1`, `1.3.0`, `1.3.0-r10`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r10/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9bf8d9b049b0db9ed196ad1522d76bc8916f5dde Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 26 Sep 2019 03:29:44 +0000 Subject: [PATCH 016/950] 1.3.0-ol-7-r9 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 0042bc81372d..76864727fbc0 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r428 +FROM bitnami/oraclelinux-extras-base:7-r429 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r8" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4c9b246a6e9d..9745a7dca405 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r8` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r8/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r9` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r9/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r10`, `1`, `1.3.0`, `1.3.0-r10`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r10/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 3a6b7631aed0076f48f756fc747e676f3447acb3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 26 Sep 2019 05:58:07 +0000 Subject: [PATCH 017/950] 1.3.0-debian-9-r11 release --- bitnami/kong/1/debian-9/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index c4848e22cd19..70b52b8fc987 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/minideb-extras-base:stretch-r368 +FROM bitnami/minideb-extras-base:stretch-r369 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r10" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r11" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9745a7dca405..869e395b7288 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r9` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r9/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r10`, `1`, `1.3.0`, `1.3.0-r10`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r10/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r11`, `1`, `1.3.0`, `1.3.0-r11`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r11/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b6c836c48edabcbbda4dd346235d16ba7991bbfb Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 27 Sep 2019 03:15:00 +0000 Subject: [PATCH 018/950] 1.3.0-ol-7-r10 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 76864727fbc0..41ffea8c8f3e 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r429 +FROM bitnami/oraclelinux-extras-base:7-r430 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r9" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r10" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 869e395b7288..208d9e1784e0 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r9` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r9/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r10` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r10/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r11`, `1`, `1.3.0`, `1.3.0-r11`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r11/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c6daaa2f92075b44ba8c35d9061a898d2596175e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 27 Sep 2019 05:25:28 +0000 Subject: [PATCH 019/950] 1.3.0-debian-9-r12 release --- bitnami/kong/1/debian-9/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 70b52b8fc987..b67872b7966f 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/minideb-extras-base:stretch-r369 +FROM bitnami/minideb-extras-base:stretch-r370 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r11" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r12" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 208d9e1784e0..e1d72cd6a401 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r10` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r10/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r11`, `1`, `1.3.0`, `1.3.0-r11`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r11/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r12`, `1`, `1.3.0`, `1.3.0-r12`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r12/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d43355f2766fc7229a170ed68aa3ad7a2c1979aa Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 28 Sep 2019 03:16:29 +0000 Subject: [PATCH 020/950] 1.3.0-ol-7-r11 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 41ffea8c8f3e..7dda6a550a20 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r430 +FROM bitnami/oraclelinux-extras-base:7-r431 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r10" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r11" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e1d72cd6a401..dabb53a7b441 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r10` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r10/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r11` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r11/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r12`, `1`, `1.3.0`, `1.3.0-r12`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r12/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From a564c54178651d08b58a10fa66a7171e6ef38c7c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 28 Sep 2019 04:59:26 +0000 Subject: [PATCH 021/950] 1.3.0-debian-9-r13 release --- bitnami/kong/1/debian-9/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index b67872b7966f..b34c4d2d833d 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/minideb-extras-base:stretch-r370 +FROM bitnami/minideb-extras-base:stretch-r372 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r12" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r13" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index dabb53a7b441..5eaac289473d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r11` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r11/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r12`, `1`, `1.3.0`, `1.3.0-r12`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r12/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r13`, `1`, `1.3.0`, `1.3.0-r13`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r13/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 01d81c8f058fb53423ba08bbdb2b5699100dcad2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 29 Sep 2019 02:54:08 +0000 Subject: [PATCH 022/950] 1.3.0-ol-7-r12 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 7dda6a550a20..63727fa07f57 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r431 +FROM bitnami/oraclelinux-extras-base:7-r432 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r11" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r12" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 5eaac289473d..2b54d94f4478 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r11` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r11/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r12` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r12/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r13`, `1`, `1.3.0`, `1.3.0-r13`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r13/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d6a47025fd18a274badd48151563c68429ee03f8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 29 Sep 2019 11:07:15 +0000 Subject: [PATCH 023/950] 1.3.0-debian-9-r14 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index b34c4d2d833d..fecc653611a2 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r13" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r14" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2b54d94f4478..4fc6e3a0c552 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r12` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r12/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r13`, `1`, `1.3.0`, `1.3.0-r13`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r13/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r14`, `1`, `1.3.0`, `1.3.0-r14`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r14/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 00abfe5501877a61b216fd8b6680fbb274af38a9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 30 Sep 2019 02:56:55 +0000 Subject: [PATCH 024/950] 1.3.0-ol-7-r13 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 63727fa07f57..fbc5dbf71c50 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r432 +FROM bitnami/oraclelinux-extras-base:7-r433 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r12" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r13" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4fc6e3a0c552..9041e6768c95 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r12` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r12/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r13` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r13/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r14`, `1`, `1.3.0`, `1.3.0-r14`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r14/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8ac15019c63bf7f3154738b989c84868dcb63d3e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 30 Sep 2019 17:12:20 +0000 Subject: [PATCH 025/950] 1.3.0-debian-9-r15 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index fecc653611a2..f89e4659d680 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r14" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r15" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9041e6768c95..d88e5067e81c 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r13` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r13/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r14`, `1`, `1.3.0`, `1.3.0-r14`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r14/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r15`, `1`, `1.3.0`, `1.3.0-r15`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r15/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 345998fde4c2bab6f8953cedda4f128edbf0d517 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 1 Oct 2019 02:52:39 +0000 Subject: [PATCH 026/950] 1.3.0-ol-7-r14 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index fbc5dbf71c50..b3d87a046404 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r433 +FROM bitnami/oraclelinux-extras-base:7-r434 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r13" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r14" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d88e5067e81c..bd748592c6c5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r13` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r13/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r14` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r14/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r15`, `1`, `1.3.0`, `1.3.0-r15`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r15/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5db791765a63ba6994f4447d70f53e64c79cb9e3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 1 Oct 2019 07:47:49 +0000 Subject: [PATCH 027/950] 1.3.0-debian-9-r16 release --- bitnami/kong/1/debian-9/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index f89e4659d680..d7176dc80a82 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/minideb-extras-base:stretch-r372 +FROM bitnami/minideb-extras-base:stretch-r374 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r15" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r16" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index bd748592c6c5..aa3dc696e95a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r14` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r14/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r15`, `1`, `1.3.0`, `1.3.0-r15`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r15/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r16`, `1`, `1.3.0`, `1.3.0-r16`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r16/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8e182f6f46158281548ac4a7c4d8b5f65dd1013f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 2 Oct 2019 02:57:20 +0000 Subject: [PATCH 028/950] 1.3.0-ol-7-r15 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index b3d87a046404..242182dfdda9 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r434 +FROM bitnami/oraclelinux-extras-base:7-r435 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r14" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r15" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index aa3dc696e95a..b6c6e467f907 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r14` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r14/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r15` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r15/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r16`, `1`, `1.3.0`, `1.3.0-r16`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r16/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 63b0c6fe65f481ed138a17bd6b0bb25181b375cf Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 2 Oct 2019 05:28:30 +0000 Subject: [PATCH 029/950] 1.3.0-debian-9-r17 release --- bitnami/kong/1/debian-9/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index d7176dc80a82..eb71ff20569f 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/minideb-extras-base:stretch-r374 +FROM bitnami/minideb-extras-base:stretch-r375 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r16" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r17" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b6c6e467f907..fb7487c40e60 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r15` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r15/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r16`, `1`, `1.3.0`, `1.3.0-r16`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r16/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r17`, `1`, `1.3.0`, `1.3.0-r17`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r17/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 6b2a7b7bff38fdc7589c7bf67b1b9b5f2280b52d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 3 Oct 2019 02:55:50 +0000 Subject: [PATCH 030/950] 1.3.0-ol-7-r16 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 242182dfdda9..4dd719867bca 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r435 +FROM bitnami/oraclelinux-extras-base:7-r436 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r15" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r16" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index fb7487c40e60..f69453269fb9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r15` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r15/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r16` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r16/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r17`, `1`, `1.3.0`, `1.3.0-r17`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r17/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 6a6f880d5a299a95419d8ffd5e8f6b67e3217c11 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 3 Oct 2019 11:37:58 +0000 Subject: [PATCH 031/950] 1.3.0-debian-9-r18 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index eb71ff20569f..862d280349f9 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r17" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r18" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f69453269fb9..d6e2c862a968 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r16` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r16/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r17`, `1`, `1.3.0`, `1.3.0-r17`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r17/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r18`, `1`, `1.3.0`, `1.3.0-r18`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r18/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e587c4a75cfc9dd91c906ec36880aea728399bcd Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 4 Oct 2019 09:04:03 +0000 Subject: [PATCH 032/950] 1.3.0-ol-7-r17 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 4dd719867bca..5bb20d0593df 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r436 +FROM bitnami/oraclelinux-extras-base:7-r437 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r16" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r17" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d6e2c862a968..694e14f10824 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r16` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r16/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r17` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r17/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r18`, `1`, `1.3.0`, `1.3.0-r18`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r18/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From cb938390fc2c1ec5a3fb1bc5a10fb9984f36c66e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 4 Oct 2019 12:40:10 +0000 Subject: [PATCH 033/950] 1.3.0-ol-7-r18 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 5bb20d0593df..ffcebaff2740 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r17" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r18" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 694e14f10824..a5da7d3056e0 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r17` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r17/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r18` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r18/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r18`, `1`, `1.3.0`, `1.3.0-r18`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r18/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f7cc92463ac16a55a4a6ec7b8362be361f6c0385 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 4 Oct 2019 17:45:14 +0000 Subject: [PATCH 034/950] 1.3.0-debian-9-r19 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 862d280349f9..e59f9e5eebcd 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r18" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r19" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a5da7d3056e0..8ff90c2cd3df 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r18` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r18/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r18`, `1`, `1.3.0`, `1.3.0-r18`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r18/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r19`, `1`, `1.3.0`, `1.3.0-r19`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r19/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From a7dd88979a9344b6e2783f7e85758a1cd0c6cebd Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 5 Oct 2019 04:06:40 +0000 Subject: [PATCH 035/950] 1.3.0-ol-7-r19 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index ffcebaff2740..ccdd5d198e8a 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r437 +FROM bitnami/oraclelinux-extras-base:7-r438 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r18" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r19" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 8ff90c2cd3df..3d5e6b6ec792 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r18` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r18/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r19` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r19/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r19`, `1`, `1.3.0`, `1.3.0-r19`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r19/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 6bff0aaa55b33c998937e850b5204541e0957d5a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 5 Oct 2019 05:32:43 +0000 Subject: [PATCH 036/950] 1.3.0-debian-9-r20 release --- bitnami/kong/1/debian-9/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index e59f9e5eebcd..3f8cc4d67a11 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/minideb-extras-base:stretch-r375 +FROM bitnami/minideb-extras-base:stretch-r376 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r19" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r20" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 3d5e6b6ec792..943b70808101 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r19` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r19/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r19`, `1`, `1.3.0`, `1.3.0-r19`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r19/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r20`, `1`, `1.3.0`, `1.3.0-r20`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r20/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 811262404036451c8ab79cae63eca42c6278db2e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 6 Oct 2019 03:41:07 +0000 Subject: [PATCH 037/950] 1.3.0-ol-7-r20 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index ccdd5d198e8a..a80a177aed8c 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r438 +FROM bitnami/oraclelinux-extras-base:7-r439 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r19" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r20" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 943b70808101..2b08ab193d28 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r19` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r19/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r20` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r20/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r20`, `1`, `1.3.0`, `1.3.0-r20`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r20/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 82fbda3f7a9543ecb44611044b4fee64ada9f742 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 6 Oct 2019 11:50:58 +0000 Subject: [PATCH 038/950] 1.3.0-debian-9-r21 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 3f8cc4d67a11..80e7b20dc469 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r20" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r21" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2b08ab193d28..ff6b3d9511e4 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r20` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r20/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r20`, `1`, `1.3.0`, `1.3.0-r20`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r20/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r21`, `1`, `1.3.0`, `1.3.0-r21`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r21/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d22e6d23137b04d516ee31baf9cbfc521e785c33 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 7 Oct 2019 03:33:02 +0000 Subject: [PATCH 039/950] 1.3.0-ol-7-r21 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index a80a177aed8c..0bc9bf9f26c0 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r439 +FROM bitnami/oraclelinux-extras-base:7-r440 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r20" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r21" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index ff6b3d9511e4..b5c21122519e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r20` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r20/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r21` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r21/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r21`, `1`, `1.3.0`, `1.3.0-r21`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r21/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ac1abe9b2e23c46f26841d60c25823c340be65a6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 7 Oct 2019 17:57:48 +0000 Subject: [PATCH 040/950] 1.3.0-debian-9-r22 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 80e7b20dc469..80e04af30ff1 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r21" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r22" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b5c21122519e..0231b74dd728 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r21` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r21/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r21`, `1`, `1.3.0`, `1.3.0-r21`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r21/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r22`, `1`, `1.3.0`, `1.3.0-r22`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r22/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e5b00a27e0c3406d84681b53b531f7f4b687e671 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 8 Oct 2019 04:20:40 +0000 Subject: [PATCH 041/950] 1.3.0-ol-7-r22 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 0bc9bf9f26c0..1482f0da35b1 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r440 +FROM bitnami/oraclelinux-extras-base:7-r441 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r21" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r22" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0231b74dd728..49518e5f7c67 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r21` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r21/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r22` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r22/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r22`, `1`, `1.3.0`, `1.3.0-r22`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r22/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5a7d12c72e77d66168c70fac6a4d0e7fac83e3a2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 9 Oct 2019 00:04:53 +0000 Subject: [PATCH 042/950] 1.3.0-debian-9-r23 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 80e04af30ff1..8b4b84a7ca0c 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r22" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r23" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 49518e5f7c67..9ab59f939739 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r22` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r22/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r22`, `1`, `1.3.0`, `1.3.0-r22`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r22/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r23`, `1`, `1.3.0`, `1.3.0-r23`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r23/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 60337a7cbbab46150d3028ce0b2659be993717f1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 9 Oct 2019 04:01:48 +0000 Subject: [PATCH 043/950] 1.3.0-ol-7-r23 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 1482f0da35b1..d376647d4485 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r441 +FROM bitnami/oraclelinux-extras-base:7-r442 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r22" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r23" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9ab59f939739..a1fdcc1f7a54 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r22` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r22/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r23` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r23/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r23`, `1`, `1.3.0`, `1.3.0-r23`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r23/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 1d2b0945624a7bae14b750d2ce605d4c90798a5b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 10 Oct 2019 03:42:31 +0000 Subject: [PATCH 044/950] 1.3.0-ol-7-r24 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index d376647d4485..42171d901f66 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r442 +FROM bitnami/oraclelinux-extras-base:7-r443 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r23" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r24" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a1fdcc1f7a54..2ec1129dae22 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r23` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r23/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r24` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r24/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r23`, `1`, `1.3.0`, `1.3.0-r23`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r23/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5a3a7c0f05d91ebebf68fde75881f9fcb3ca1cec Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 10 Oct 2019 06:11:21 +0000 Subject: [PATCH 045/950] 1.3.0-debian-9-r24 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 8b4b84a7ca0c..cd2cb845c3d1 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r23" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r24" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2ec1129dae22..ae73730c89c3 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r24` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r24/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r23`, `1`, `1.3.0`, `1.3.0-r23`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r23/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r24`, `1`, `1.3.0`, `1.3.0-r24`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r24/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 2d4395a8e7a6063185f14a79d4203190dac4842c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 11 Oct 2019 03:52:40 +0000 Subject: [PATCH 046/950] 1.3.0-ol-7-r25 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 42171d901f66..2a8b554e0c08 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r443 +FROM bitnami/oraclelinux-extras-base:7-r444 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r24" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r25" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index ae73730c89c3..4a888bd16b6e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r24` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r24/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r25` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r25/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r24`, `1`, `1.3.0`, `1.3.0-r24`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r24/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e9936e1cb37b90aff043b25431b100e81da0665c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 11 Oct 2019 12:50:31 +0000 Subject: [PATCH 047/950] 1.3.0-debian-9-r25 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index cd2cb845c3d1..b12cff5158c0 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r24" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r25" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4a888bd16b6e..e53e18749aaa 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r25` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r25/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r24`, `1`, `1.3.0`, `1.3.0-r24`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r24/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r25`, `1`, `1.3.0`, `1.3.0-r25`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r25/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ac00e96f3edd1e7ef1fa31bb40d80bc717de6df4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 12 Oct 2019 03:24:27 +0000 Subject: [PATCH 048/950] 1.3.0-ol-7-r26 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 2a8b554e0c08..e020cb895937 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r444 +FROM bitnami/oraclelinux-extras-base:7-r445 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r25" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r26" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e53e18749aaa..903a8b2f68cd 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r25` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r25/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r26` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r26/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r25`, `1`, `1.3.0`, `1.3.0-r25`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r25/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 20f6bd9b4d2a598c004edcc4458870a3213d274c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 12 Oct 2019 18:56:39 +0000 Subject: [PATCH 049/950] 1.3.0-debian-9-r26 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index b12cff5158c0..537d94164c84 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r25" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r26" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 903a8b2f68cd..56d51300f045 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r26` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r26/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r25`, `1`, `1.3.0`, `1.3.0-r25`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r25/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r26`, `1`, `1.3.0`, `1.3.0-r26`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r26/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From aca17a95c1f72d4b7dd3046ef53644c753ea4e21 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 13 Oct 2019 03:19:21 +0000 Subject: [PATCH 050/950] 1.3.0-ol-7-r27 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index e020cb895937..e964162d7f14 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r445 +FROM bitnami/oraclelinux-extras-base:7-r446 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r26" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r27" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 56d51300f045..1a772f2d8269 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r26` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r26/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r27` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r27/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r26`, `1`, `1.3.0`, `1.3.0-r26`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r26/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From dde81a11cfe3078baa03c5ecf4b691f37cfadfb9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 14 Oct 2019 01:05:24 +0000 Subject: [PATCH 051/950] 1.3.0-debian-9-r27 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 537d94164c84..5852e659ed3d 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r26" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r27" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1a772f2d8269..88fab0a97aa7 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r27` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r27/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r26`, `1`, `1.3.0`, `1.3.0-r26`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r26/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r27`, `1`, `1.3.0`, `1.3.0-r27`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r27/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0be9c8216e7497a12eb6611ff12555faf1b3012d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 14 Oct 2019 03:27:25 +0000 Subject: [PATCH 052/950] 1.3.0-ol-7-r28 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index e964162d7f14..94fd32af9f9e 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r446 +FROM bitnami/oraclelinux-extras-base:7-r447 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r27" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r28" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 88fab0a97aa7..aff1ac4c97f5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r27` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r27/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r28` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r28/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r27`, `1`, `1.3.0`, `1.3.0-r27`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r27/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b37d87ec3e405942ccff3717b2082437c4015fe1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 15 Oct 2019 03:18:26 +0000 Subject: [PATCH 053/950] 1.3.0-ol-7-r29 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 94fd32af9f9e..1ff652d31eee 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r447 +FROM bitnami/oraclelinux-extras-base:7-r448 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r28" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r29" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index aff1ac4c97f5..18e09147b1cd 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r28` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r28/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r29` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r29/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r27`, `1`, `1.3.0`, `1.3.0-r27`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r27/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 048eea00c34a3223a504f73a52762993c4820bed Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 15 Oct 2019 07:14:10 +0000 Subject: [PATCH 054/950] 1.3.0-debian-9-r28 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 5852e659ed3d..300e5a97b4c8 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r27" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r28" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 18e09147b1cd..08258300c698 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r29` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r29/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r27`, `1`, `1.3.0`, `1.3.0-r27`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r27/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r28`, `1`, `1.3.0`, `1.3.0-r28`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r28/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 527b9c56a314464924f6e2448354493e2af1417c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 16 Oct 2019 02:52:35 +0000 Subject: [PATCH 055/950] 1.3.0-ol-7-r30 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 1ff652d31eee..8948c12c5bdc 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r448 +FROM bitnami/oraclelinux-extras-base:7-r449 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r29" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r30" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 08258300c698..b878cf675943 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r29` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r29/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r30` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r30/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r28`, `1`, `1.3.0`, `1.3.0-r28`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r28/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5be297a53db8ba9a252476eb0d17f4dcdb8a18d5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 16 Oct 2019 13:20:51 +0000 Subject: [PATCH 056/950] 1.3.0-debian-9-r29 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 300e5a97b4c8..7f807d49088f 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r28" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r29" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b878cf675943..cd082c44e64b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r30` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r30/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r28`, `1`, `1.3.0`, `1.3.0-r28`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r28/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r29`, `1`, `1.3.0`, `1.3.0-r29`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r29/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c687a7090edfb7548adadbfc106056d8380bad87 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 17 Oct 2019 04:41:05 +0000 Subject: [PATCH 057/950] 1.3.0-ol-7-r31 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 8948c12c5bdc..a0fda6895ae0 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r449 +FROM bitnami/oraclelinux-extras-base:7-r450 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r30" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r31" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index cd082c44e64b..a6b47d691b21 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r30` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r30/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r31` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r31/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r29`, `1`, `1.3.0`, `1.3.0-r29`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r29/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 3a03e10b233e957ef20abfc3c2d280fda897c47b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 17 Oct 2019 19:27:36 +0000 Subject: [PATCH 058/950] 1.3.0-debian-9-r30 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 7f807d49088f..a45e7e985a51 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r29" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r30" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a6b47d691b21..c273ecf5740d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r31` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r31/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r29`, `1`, `1.3.0`, `1.3.0-r29`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r29/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r30`, `1`, `1.3.0`, `1.3.0-r30`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r30/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f9a533ac6ebe291351842d9818eeeb343fced70e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 18 Oct 2019 05:02:41 +0000 Subject: [PATCH 059/950] 1.3.0-ol-7-r32 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index a0fda6895ae0..64cf1b96e7e0 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r450 +FROM bitnami/oraclelinux-extras-base:7-r451 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r31" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r32" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c273ecf5740d..76389a023326 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r31` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r31/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r32` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r32/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r30`, `1`, `1.3.0`, `1.3.0-r30`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r30/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b7702909ca4c26370dc29415457e6f72940fc41f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 19 Oct 2019 01:34:49 +0000 Subject: [PATCH 060/950] 1.3.0-debian-9-r31 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index a45e7e985a51..8570c1ee6368 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r30" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r31" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 76389a023326..910e61d4ca24 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r32` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r32/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r30`, `1`, `1.3.0`, `1.3.0-r30`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r30/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r31`, `1`, `1.3.0`, `1.3.0-r31`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r31/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e83f8c6920b11c286d2008db666afcf5eb5825c8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 19 Oct 2019 04:28:41 +0000 Subject: [PATCH 061/950] 1.3.0-ol-7-r33 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 64cf1b96e7e0..9cd4ab5e86ec 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r451 +FROM bitnami/oraclelinux-extras-base:7-r452 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r32" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r33" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 910e61d4ca24..1573bb790c12 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r32` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r32/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r33` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r33/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r31`, `1`, `1.3.0`, `1.3.0-r31`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r31/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 31dfdc5f51e63652376ba148cbf70a454796a574 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 20 Oct 2019 04:06:33 +0000 Subject: [PATCH 062/950] 1.3.0-ol-7-r34 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 9cd4ab5e86ec..c2df7c3faa04 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r452 +FROM bitnami/oraclelinux-extras-base:7-r453 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r33" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r34" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1573bb790c12..779b359172e2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r33` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r33/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r34` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r34/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r31`, `1`, `1.3.0`, `1.3.0-r31`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r31/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f413ae9e2013e38e0542f27ea785f40c1dd38323 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 20 Oct 2019 07:40:31 +0000 Subject: [PATCH 063/950] 1.3.0-debian-9-r32 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 8570c1ee6368..8edc8794030b 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r31" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r32" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 779b359172e2..c7c72888a4f9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r34` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r34/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r31`, `1`, `1.3.0`, `1.3.0-r31`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r31/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r32`, `1`, `1.3.0`, `1.3.0-r32`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r32/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b50b1a5c15a66bdfcc32f2f783a18b99258a456f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 21 Oct 2019 03:47:34 +0000 Subject: [PATCH 064/950] 1.3.0-ol-7-r35 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index c2df7c3faa04..4bcade1fc58b 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r453 +FROM bitnami/oraclelinux-extras-base:7-r454 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r34" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r35" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c7c72888a4f9..caf94e7ab6d4 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r34` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r34/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r35` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r35/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r32`, `1`, `1.3.0`, `1.3.0-r32`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r32/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From bc36ada6607336550ed160a353d5541526dd98d1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 21 Oct 2019 11:51:15 +0000 Subject: [PATCH 065/950] 1.3.0-debian-9-r33 release --- bitnami/kong/1/debian-9/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 8edc8794030b..8a3300db8eaa 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/minideb-extras-base:stretch-r376 +FROM bitnami/minideb-extras-base:stretch-r377 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r32" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r33" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index caf94e7ab6d4..b1b0b50e441f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r35` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r35/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r32`, `1`, `1.3.0`, `1.3.0-r32`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r32/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r33`, `1`, `1.3.0`, `1.3.0-r33`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r33/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 4730ad5739d5f723cb1c11c63e8cc0a8f0afb4a6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 22 Oct 2019 04:08:00 +0000 Subject: [PATCH 066/950] 1.3.0-ol-7-r36 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 4bcade1fc58b..a5ab69a0c71f 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r454 +FROM bitnami/oraclelinux-extras-base:7-r455 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r35" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r36" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b1b0b50e441f..9f1b86b54352 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r35` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r35/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r36` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r36/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r33`, `1`, `1.3.0`, `1.3.0-r33`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r33/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5799a144e9fefdfbe803368b2fac68b51476d336 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 22 Oct 2019 13:29:40 +0000 Subject: [PATCH 067/950] 1.3.0-ol-7-r37 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index a5ab69a0c71f..28142d904390 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r455 +FROM bitnami/oraclelinux-extras-base:7-r456 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r36" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r37" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9f1b86b54352..ccd2ff8c9f15 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r36` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r36/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r37` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r37/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r33`, `1`, `1.3.0`, `1.3.0-r33`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r33/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 2934a93d6eff6a36125481d0c925a6ed0e66b221 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 22 Oct 2019 18:03:33 +0000 Subject: [PATCH 068/950] 1.3.0-debian-9-r34 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 8a3300db8eaa..92912595d64c 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f21 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r33" \ + BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r34" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index ccd2ff8c9f15..4b74e3a3cb3e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.3.0-ol-7-r37` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r37/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r33`, `1`, `1.3.0`, `1.3.0-r33`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r33/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.3.0-debian-9-r34`, `1`, `1.3.0`, `1.3.0-r34`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r34/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9a29506d4363cd7803ce6b045e54a1aa42b48e78 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 23 Oct 2019 03:17:17 +0000 Subject: [PATCH 069/950] 1.3.0-ol-7-r38 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 28142d904390..356e52c8605e 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r456 +FROM bitnami/oraclelinux-extras-base:7-r457 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bc COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r37" \ + BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r38" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4b74e3a3cb3e..c8c9ce44e545 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.3.0-ol-7-r37` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r37/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.3.0-ol-7-r38` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r38/1/ol-7/Dockerfile) * [`1-debian-9`, `1.3.0-debian-9-r34`, `1`, `1.3.0`, `1.3.0-r34`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r34/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b7158bc2a42944d3e2c9591d050c5674bf31b5bb Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 23 Oct 2019 04:20:02 +0000 Subject: [PATCH 070/950] 1.4.0-debian-9-r0 release --- bitnami/kong/1/debian-9/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 92912595d64c..c30f6ed5a9bc 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -8,12 +8,12 @@ ENV HOME="/" \ # Install required system packages and dependencies RUN install_packages libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl zlib1g -RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-3" --checksum 7f8c9f2180696c95e475cdf5667f7bbe945db5972e6800e8a2c0c293997fe0bd +RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 51463b1e46c74b195cee4474801afa93aef5f116b5b9229240f1580bc1bbbb0e COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-debian-9-r34" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c8c9ce44e545..6d2e5ec9f736 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,8 +51,8 @@ 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/containers/how-to/understand-rolling-tags-containers/). +* [`1-debian-9`, `1.4.0-debian-9-r0`, `1`, `1.4.0`, `1.4.0-r0`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r0/1/debian-9/Dockerfile) * [`1-ol-7`, `1.3.0-ol-7-r38` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r38/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.3.0-debian-9-r34`, `1`, `1.3.0`, `1.3.0-r34`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-debian-9-r34/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f36ff4003b0f33b15cabc439e6a2cc81da286867 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 23 Oct 2019 05:03:36 +0000 Subject: [PATCH 071/950] 1.4.0-ol-7-r0 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 356e52c8605e..bf925e3d715b 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -8,12 +8,12 @@ ENV HOME="/" \ # Install required system packages and dependencies RUN install_packages glibc keyutils-libs krb5-libs libcom_err libgcc libselinux libyaml nss-softokn-freebl openssl-libs pcre perl zlib -RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bcd149f1f265910a05f23f95e6033c7a21c0f0d5137bd82fff28d0f335 +RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221a952a394e401a116d33e3877110d332a329c48039bef56630800106c COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r38" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 6d2e5ec9f736..49bcd4180d68 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,8 +51,8 @@ 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/containers/how-to/understand-rolling-tags-containers/). +* [`1-ol-7`, `1.4.0-ol-7-r0` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r0/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r0`, `1`, `1.4.0`, `1.4.0-r0`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r0/1/debian-9/Dockerfile) -* [`1-ol-7`, `1.3.0-ol-7-r38` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.3.0-ol-7-r38/1/ol-7/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8097925ed02433047df859b68304d95d9bb70957 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 24 Oct 2019 03:46:38 +0000 Subject: [PATCH 072/950] 1.4.0-ol-7-r1 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index bf925e3d715b..7e81ee985de7 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r457 +FROM bitnami/oraclelinux-extras-base:7-r458 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r0" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 49bcd4180d68..c5653c38b78f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r0` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r0/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r1` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r1/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r0`, `1`, `1.4.0`, `1.4.0-r0`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r0/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 444dfc95337ca3920519e65ea4280e05395a5bfc Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 24 Oct 2019 10:26:20 +0000 Subject: [PATCH 073/950] 1.4.0-debian-9-r1 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index c30f6ed5a9bc..288e668afc51 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 51463b1e COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r0" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c5653c38b78f..11ab70573bd5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r1` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r1/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r0`, `1`, `1.4.0`, `1.4.0-r0`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r0/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r1`, `1`, `1.4.0`, `1.4.0-r1`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r1/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8e66aa20654f32a5d764acc8d4c11ecfb52ea643 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 25 Oct 2019 03:25:07 +0000 Subject: [PATCH 074/950] 1.4.0-ol-7-r2 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 7e81ee985de7..3f66e96f1b30 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r458 +FROM bitnami/oraclelinux-extras-base:7-r459 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r1" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 11ab70573bd5..c3de339974ec 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r1` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r1/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r2` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r2/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r1`, `1`, `1.4.0`, `1.4.0-r1`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r1/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From fcf9ab11937174cc837fa7b9cf1382c0857decab Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 25 Oct 2019 16:32:40 +0000 Subject: [PATCH 075/950] 1.4.0-debian-9-r2 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 288e668afc51..23446844542c 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 51463b1e COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r1" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c3de339974ec..e62a8f2516b5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r2` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r2/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r1`, `1`, `1.4.0`, `1.4.0-r1`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r1/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r2`, `1`, `1.4.0`, `1.4.0-r2`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r2/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f44c5cf69a3cbec9e8e95b897d7c689a5e48f01d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 26 Oct 2019 03:19:25 +0000 Subject: [PATCH 076/950] 1.4.0-ol-7-r3 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 3f66e96f1b30..7abc57dd51e5 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r459 +FROM bitnami/oraclelinux-extras-base:7-r460 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r2" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e62a8f2516b5..7d87fff8921d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r2` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r2/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r3` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r3/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r2`, `1`, `1.4.0`, `1.4.0-r2`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r2/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 51cdfaaff7a3e57ea25fa082289a34437cf80314 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 26 Oct 2019 22:39:21 +0000 Subject: [PATCH 077/950] 1.4.0-debian-9-r3 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 23446844542c..19efb09f9a96 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 51463b1e COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r2" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7d87fff8921d..5b656c17369a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r3` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r3/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r2`, `1`, `1.4.0`, `1.4.0-r2`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r2/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r3`, `1`, `1.4.0`, `1.4.0-r3`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r3/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ba6d592d4c83e75bb1904382bc701c57138ec172 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 27 Oct 2019 03:14:41 +0000 Subject: [PATCH 078/950] 1.4.0-ol-7-r4 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 7abc57dd51e5..c77c50e5e4b3 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r460 +FROM bitnami/oraclelinux-extras-base:7-r461 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r3" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 5b656c17369a..636b0dc59c02 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r3` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r3/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r4` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r4/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r3`, `1`, `1.4.0`, `1.4.0-r3`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r3/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8ed9198705d2635a4650ea4e63fe3ddbbd6f50f3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 28 Oct 2019 03:09:30 +0000 Subject: [PATCH 079/950] 1.4.0-ol-7-r5 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index c77c50e5e4b3..4746a02d328d 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r461 +FROM bitnami/oraclelinux-extras-base:7-r462 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r4" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 636b0dc59c02..6e372c1d0fa4 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r4` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r4/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r5` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r5/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r3`, `1`, `1.4.0`, `1.4.0-r3`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r3/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 251691516ee6160d201daea6f83f027816bd9ec6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 28 Oct 2019 04:46:16 +0000 Subject: [PATCH 080/950] 1.4.0-debian-9-r4 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 19efb09f9a96..104bbd31318b 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 51463b1e COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r3" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 6e372c1d0fa4..aaef458d3161 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r5` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r5/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r3`, `1`, `1.4.0`, `1.4.0-r3`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r3/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r4`, `1`, `1.4.0`, `1.4.0-r4`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r4/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d06539f5579c4368492c28acd8bff29b41c92a86 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 29 Oct 2019 02:54:15 +0000 Subject: [PATCH 081/950] 1.4.0-ol-7-r6 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 4746a02d328d..9a64b25a233d 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r462 +FROM bitnami/oraclelinux-extras-base:7-r463 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r5" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index aaef458d3161..511dfc70ff7d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r5` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r5/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r6` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r6/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r4`, `1`, `1.4.0`, `1.4.0-r4`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r4/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5869d6699c6637f0e4504baadf4255cd2158546b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 29 Oct 2019 10:53:09 +0000 Subject: [PATCH 082/950] 1.4.0-debian-9-r5 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 104bbd31318b..87f07c00c9ef 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 51463b1e COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r4" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 511dfc70ff7d..1d8f49fe1843 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r6` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r6/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r4`, `1`, `1.4.0`, `1.4.0-r4`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r4/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r5`, `1`, `1.4.0`, `1.4.0-r5`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r5/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From cf1336d8bdaed160c17413e717fa5052a671aa19 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 30 Oct 2019 02:52:58 +0000 Subject: [PATCH 083/950] 1.4.0-ol-7-r7 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 9a64b25a233d..9dc63ea4f845 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r463 +FROM bitnami/oraclelinux-extras-base:7-r464 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r6" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1d8f49fe1843..0313c5546434 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r6` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r6/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r7` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r7/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r5`, `1`, `1.4.0`, `1.4.0-r5`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r5/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 1ef826999faed53cb4f358d6da2705fed9ed8239 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 30 Oct 2019 17:03:04 +0000 Subject: [PATCH 084/950] 1.4.0-debian-9-r6 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 87f07c00c9ef..4ac1b1fe85fe 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 51463b1e COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r5" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0313c5546434..829d39d68f80 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r7` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r7/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r5`, `1`, `1.4.0`, `1.4.0-r5`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r5/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r6`, `1`, `1.4.0`, `1.4.0-r6`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r6/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 25e671735337429482e575bcfc8600143251f423 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 31 Oct 2019 04:28:52 +0000 Subject: [PATCH 085/950] 1.4.0-ol-7-r8 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 9dc63ea4f845..7b3f8b365782 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r464 +FROM bitnami/oraclelinux-extras-base:7-r465 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r7" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 829d39d68f80..fe360b55cde0 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r7` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r7/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r8` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r8/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r6`, `1`, `1.4.0`, `1.4.0-r6`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r6/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 64cebd34cdee24093faf2602d84904374d840301 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 31 Oct 2019 23:11:19 +0000 Subject: [PATCH 086/950] 1.4.0-debian-9-r7 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 4ac1b1fe85fe..48ee9d224c9a 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 51463b1e COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r6" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index fe360b55cde0..57338637235d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r8` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r8/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r6`, `1`, `1.4.0`, `1.4.0-r6`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r6/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r7`, `1`, `1.4.0`, `1.4.0-r7`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r7/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8cd15145f85fd095062216731b15192fa641915c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 1 Nov 2019 04:46:11 +0000 Subject: [PATCH 087/950] 1.4.0-ol-7-r9 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 7b3f8b365782..50b2c755bbb6 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r465 +FROM bitnami/oraclelinux-extras-base:7-r466 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r8" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 57338637235d..0fe94b5d3a47 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r8` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r8/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r9` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r9/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r7`, `1`, `1.4.0`, `1.4.0-r7`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r7/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 07d10010a197a5454cc1dfc8df87551fdd2c8a9b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 2 Nov 2019 04:17:46 +0000 Subject: [PATCH 088/950] 1.4.0-ol-7-r10 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 50b2c755bbb6..3a482f513a4d 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r466 +FROM bitnami/oraclelinux-extras-base:7-r467 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r9" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r10" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0fe94b5d3a47..0a1680bc1b93 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r9` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r9/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r10` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r10/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r7`, `1`, `1.4.0`, `1.4.0-r7`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r7/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From a2f9e12394dd8f37e648216dab352f3e7c30ede0 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 3 Nov 2019 04:27:01 +0000 Subject: [PATCH 089/950] 1.4.0-ol-7-r11 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 3a482f513a4d..9e8f80bc8e0b 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r467 +FROM bitnami/oraclelinux-extras-base:7-r468 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r10" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r11" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0a1680bc1b93..1c4b32b50911 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r10` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r10/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r11` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r11/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r7`, `1`, `1.4.0`, `1.4.0-r7`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r7/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 696470a94602a55b9c99caee8cdac08301fb0478 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 4 Nov 2019 04:22:33 +0000 Subject: [PATCH 090/950] 1.4.0-ol-7-r12 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 9e8f80bc8e0b..de3ecbeb40c8 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r468 +FROM bitnami/oraclelinux-extras-base:7-r469 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r11" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r12" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1c4b32b50911..0236a2007c28 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r11` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r11/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r12` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r12/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r7`, `1`, `1.4.0`, `1.4.0-r7`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r7/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 22596ed7f4aac6a24c7b689275faadc207e78317 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 4 Nov 2019 13:23:32 +0000 Subject: [PATCH 091/950] 1.4.0-debian-9-r8 release --- bitnami/kong/1/debian-9/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 48ee9d224c9a..ada2a31afc7d 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/minideb-extras-base:stretch-r377 +FROM bitnami/minideb-extras-base:stretch-r378 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 51463b1e COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r7" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0236a2007c28..f16ea02d2a07 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r12` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r12/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r7`, `1`, `1.4.0`, `1.4.0-r7`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r7/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r8`, `1`, `1.4.0`, `1.4.0-r8`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r8/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 11ebeefe2d8aebfb8ba2c4f5ba33c38e4bb0dc44 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 5 Nov 2019 04:12:26 +0000 Subject: [PATCH 092/950] 1.4.0-ol-7-r13 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index de3ecbeb40c8..a237c9e5634d 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r469 +FROM bitnami/oraclelinux-extras-base:7-r470 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r12" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r13" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f16ea02d2a07..a0c4e88b0010 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r12` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r12/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r13` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r13/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r8`, `1`, `1.4.0`, `1.4.0-r8`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r8/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From cccccc4608fe2a1fdd6a12c05c97e482222d2514 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 5 Nov 2019 19:30:53 +0000 Subject: [PATCH 093/950] 1.4.0-debian-9-r9 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index ada2a31afc7d..90356571b4c1 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 51463b1e COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r8" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a0c4e88b0010..1a2c4368db62 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r13` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r13/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r8`, `1`, `1.4.0`, `1.4.0-r8`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r8/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r9`, `1`, `1.4.0`, `1.4.0-r9`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r9/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e7e53d8341dabcaf2f6188a4388798a5d269f3d2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 6 Nov 2019 03:55:25 +0000 Subject: [PATCH 094/950] 1.4.0-ol-7-r14 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index a237c9e5634d..0a7c74d7b0ac 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r470 +FROM bitnami/oraclelinux-extras-base:7-r471 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r13" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r14" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1a2c4368db62..075be66215c1 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r13` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r13/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r14` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r14/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r9`, `1`, `1.4.0`, `1.4.0-r9`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r9/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 458cd7f79f7a37cb123cbfc840ff19bebe78c9ef Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 7 Nov 2019 01:37:37 +0000 Subject: [PATCH 095/950] 1.4.0-debian-9-r10 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 90356571b4c1..8665103a2b96 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 51463b1e COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r9" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r10" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 075be66215c1..d7cc8a93c23f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r14` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r14/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r9`, `1`, `1.4.0`, `1.4.0-r9`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r9/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r10`, `1`, `1.4.0`, `1.4.0-r10`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r10/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 66f986f59c9cd519687ab782e4e1eb8df2ff4afd Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 7 Nov 2019 04:23:20 +0000 Subject: [PATCH 096/950] 1.4.0-ol-7-r15 release --- bitnami/kong/1/ol-7/Dockerfile | 7 +- bitnami/kong/1/ol-7/prebuildfs/libbitnami.sh | 50 ++++ .../kong/1/ol-7/prebuildfs/libcomponent.sh | 64 +++++ bitnami/kong/1/ol-7/prebuildfs/libfile.sh | 22 ++ bitnami/kong/1/ol-7/prebuildfs/libfs.sh | 129 +++++++++ bitnami/kong/1/ol-7/prebuildfs/liblog.sh | 83 ++++++ bitnami/kong/1/ol-7/prebuildfs/libnet.sh | 44 ++++ bitnami/kong/1/ol-7/prebuildfs/libos.sh | 132 ++++++++++ bitnami/kong/1/ol-7/prebuildfs/libservice.sh | 57 ++++ .../kong/1/ol-7/prebuildfs/libvalidations.sh | 246 ++++++++++++++++++ bitnami/kong/1/ol-7/prebuildfs/libversion.sh | 47 ++++ .../1/ol-7/prebuildfs/opt/bitnami/.exists | 0 .../prebuildfs/usr/local/bin/install_packages | 20 ++ .../kong/1/ol-7/rootfs/licenses/licenses.txt | 3 + bitnami/kong/README.md | 2 +- 15 files changed, 902 insertions(+), 4 deletions(-) create mode 100644 bitnami/kong/1/ol-7/prebuildfs/libbitnami.sh create mode 100644 bitnami/kong/1/ol-7/prebuildfs/libcomponent.sh create mode 100644 bitnami/kong/1/ol-7/prebuildfs/libfile.sh create mode 100644 bitnami/kong/1/ol-7/prebuildfs/libfs.sh create mode 100644 bitnami/kong/1/ol-7/prebuildfs/liblog.sh create mode 100644 bitnami/kong/1/ol-7/prebuildfs/libnet.sh create mode 100644 bitnami/kong/1/ol-7/prebuildfs/libos.sh create mode 100644 bitnami/kong/1/ol-7/prebuildfs/libservice.sh create mode 100644 bitnami/kong/1/ol-7/prebuildfs/libvalidations.sh create mode 100644 bitnami/kong/1/ol-7/prebuildfs/libversion.sh create mode 100644 bitnami/kong/1/ol-7/prebuildfs/opt/bitnami/.exists create mode 100755 bitnami/kong/1/ol-7/prebuildfs/usr/local/bin/install_packages create mode 100644 bitnami/kong/1/ol-7/rootfs/licenses/licenses.txt diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 0a7c74d7b0ac..587dfa3816bc 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/oraclelinux-extras-base:7-r471 +FROM oraclelinux:7-slim LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -6,14 +6,15 @@ ENV HOME="/" \ OS_FLAVOUR="ol-7" \ OS_NAME="linux" +COPY prebuildfs / # Install required system packages and dependencies -RUN install_packages glibc keyutils-libs krb5-libs libcom_err libgcc libselinux libyaml nss-softokn-freebl openssl-libs pcre perl zlib +RUN install_packages ca-certificates curl glibc gzip hostname keyutils-libs krb5-libs libaio-devel libcom_err libgcc libselinux libyaml nss-softokn-freebl openssl-libs pcre perl procps-ng sudo tar which zlib RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221a952a394e401a116d33e3877110d332a329c48039bef56630800106c COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r14" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r15" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/1/ol-7/prebuildfs/libbitnami.sh b/bitnami/kong/1/ol-7/prebuildfs/libbitnami.sh new file mode 100644 index 000000000000..529c3fd4a3e2 --- /dev/null +++ b/bitnami/kong/1/ol-7/prebuildfs/libbitnami.sh @@ -0,0 +1,50 @@ +#!/bin/bash +# +# Bitnami custom library + +# Load Generic Libraries +. /liblog.sh + +# Constants +BOLD='\033[1m' + +# Functions + +######################## +# Print the welcome page +# Globals: +# DISABLE_WELCOME_MESSAGE +# BITNAMI_APP_NAME +# Arguments: +# None +# Returns: +# None +######################### +print_welcome_page() { + if [[ -z "${DISABLE_WELCOME_MESSAGE:-}" ]]; then + if [[ -n "$BITNAMI_APP_NAME" ]]; then + print_image_welcome_page + fi + fi +} + +######################## +# Print the welcome page for a Bitnami Docker image +# Globals: +# BITNAMI_APP_NAME +# Arguments: +# None +# Returns: +# None +######################### +print_image_welcome_page() { + local github_url="https://github.com/bitnami/bitnami-docker-${BITNAMI_APP_NAME}" + + log "" + log "${BOLD}Welcome to the Bitnami ${BITNAMI_APP_NAME} container${RESET}" + log "Subscribe to project updates by watching ${BOLD}${github_url}${RESET}" + log "Submit issues and feature requests at ${BOLD}${github_url}/issues${RESET}" + log "Send us your feedback at ${BOLD}containers@bitnami.com${RESET}" + log "" +} + diff --git a/bitnami/kong/1/ol-7/prebuildfs/libcomponent.sh b/bitnami/kong/1/ol-7/prebuildfs/libcomponent.sh new file mode 100644 index 000000000000..025288664f69 --- /dev/null +++ b/bitnami/kong/1/ol-7/prebuildfs/libcomponent.sh @@ -0,0 +1,64 @@ +#!/bin/bash +# +# Library for managing Bitnami components + +# Constants +CACHE_ROOT="/tmp/bitnami/pkg/cache" +DOWNLOAD_URL="https://downloads.bitnami.com/files/stacksmith" + +# Functions + +######################## +# Download and unpack a Bitnami package +# Globals: +# OS_NAME +# OS_ARCH +# OS_FLAVOUR +# Arguments: +# $1 - component's name +# $2 - component's version +# Returns: +# None +######################### +component_unpack() { + local name="${1:?name is required}" + local version="${2:?version is required}" + local base_name="${name}-${version}-${OS_NAME}-${OS_ARCH}-${OS_FLAVOUR}" + local package_sha256="" + + # Validate arguments + shift 2 + while [ "$#" -gt 0 ]; do + case "$1" in + -c|--checksum) + shift + package_sha256="${1:?missing package checksum}" + ;; + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; + esac + shift + done + + echo "Downloading $base_name package" + if [ -f "${CACHE_ROOT}/${base_name}.tar.gz" ]; then + echo "${CACHE_ROOT}/${base_name}.tar.gz already exists, skipping download." + cp "${CACHE_ROOT}/${base_name}.tar.gz" . + rm "${CACHE_ROOT}/${base_name}.tar.gz" + if [ -f "${CACHE_ROOT}/${base_name}.tar.gz.sha256" ]; then + echo "Using the local sha256 from ${CACHE_ROOT}/${base_name}.tar.gz.sha256" + package_sha256="$(< "${CACHE_ROOT}/${base_name}.tar.gz.sha256")" + rm "${CACHE_ROOT}/${base_name}.tar.gz.sha256" + fi + else + curl --remote-name --silent "${DOWNLOAD_URL}/${base_name}.tar.gz" + fi + if [ -n "$package_sha256" ]; then + echo "Verifying package integrity" + echo "$package_sha256 ${base_name}.tar.gz" | sha256sum --check - + fi + tar --directory /opt/bitnami --extract --gunzip --file "${base_name}.tar.gz" --no-same-owner --strip-components=2 "${base_name}/files/" + rm "${base_name}.tar.gz" +} diff --git a/bitnami/kong/1/ol-7/prebuildfs/libfile.sh b/bitnami/kong/1/ol-7/prebuildfs/libfile.sh new file mode 100644 index 000000000000..12010f043e49 --- /dev/null +++ b/bitnami/kong/1/ol-7/prebuildfs/libfile.sh @@ -0,0 +1,22 @@ +#!/bin/bash +# +# Library for managing files + +# Functions + +######################## +# Ensure a line exists in the file by replacing a matching line. +# Arguments: +# $1 - filename +# $2 - line +# $3 - match +# Returns: +# None +######################### +file_contains_line() { + local filename="${1:?filename is required}" + local line="${2:?line is required}" + local match="${3:?match is required}" + + sed --in-place "s/^$match\$/$line/" "$filename" +} diff --git a/bitnami/kong/1/ol-7/prebuildfs/libfs.sh b/bitnami/kong/1/ol-7/prebuildfs/libfs.sh new file mode 100644 index 000000000000..965ec431b898 --- /dev/null +++ b/bitnami/kong/1/ol-7/prebuildfs/libfs.sh @@ -0,0 +1,129 @@ +#!/bin/bash +# +# Library for file system actions + +# Load Generic Libraries +. /liblog.sh + +# Functions + +######################## +# Ensure a file/directory is owned (user and group) but the given user +# Arguments: +# $1 - filepath +# $2 - owner +# Returns: +# None +######################### +owned_by() { + local path="${1:?path is missing}" + local owner="${2:?owner is missing}" + + chown "$owner":"$owner" "$path" +} + +######################## +# Ensure a directory exists and, optionally, is owned by the given user +# Arguments: +# $1 - directory +# $2 - owner +# Returns: +# None +######################### +ensure_dir_exists() { + local dir="${1:?directory is missing}" + local owner="${2:-}" + + mkdir -p "${dir}" + if [[ "$owner" != "" ]]; then + owned_by "$dir" "$owner" + fi +} + +######################## +# Checks whether a directory is empty or not +# Arguments: +# $1 - directory +# Returns: +# Boolean +######################### +is_dir_empty() { + local dir="${1:?missing directory}" + + if [[ ! -e "$dir" ]] || [[ -z "$(ls -A "$dir")" ]]; then + true + else + false + fi +} + +######################## +# Configure permisions and ownership recursively +# Globals: +# None +# Arguments: +# $1 - paths (as a string). +# Flags: +# -f|--file-mode - mode for directories. +# -d|--dir-mode - mode for files. +# -u|--user - user +# -g|--group - group +# Returns: +# None +######################### +configure_permissions_ownership() { + local -r paths="${1:?paths is missing}" + local dir_mode="" + local file_mode="" + local user="" + local group="" + + # Validate arguments + shift 1 + while [ "$#" -gt 0 ]; do + case "$1" in + -f|--file-mode) + shift + file_mode="${1:?missing mode for files}" + ;; + -d|--dir-mode) + shift + dir_mode="${1:?missing mode for directories}" + ;; + -u|--user) + shift + user="${1:?missing user}" + ;; + -g|--group) + shift + group="${1:?missing group}" + ;; + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; + esac + shift + done + + read -r -a filepaths <<< "$paths" + for p in "${filepaths[@]}"; do + if [[ -e "$p" ]]; then + if [[ -n $dir_mode ]]; then + find -L "$p" -type d -exec chmod "$dir_mode" {} \; + fi + if [[ -n $file_mode ]]; then + find -L "$p" -type f -exec chmod "$file_mode" {} \; + fi + if [[ -n $user ]] && [[ -n $group ]]; then + chown -LR "$user":"$group" "$p" + elif [[ -n $user ]] && [[ -z $group ]]; then + chown -LR "$user" "$p" + elif [[ -z $user ]] && [[ -n $group ]]; then + chgrp -LR "$group" "$p" + fi + else + stderr_print "$p does not exist" + fi + done +} diff --git a/bitnami/kong/1/ol-7/prebuildfs/liblog.sh b/bitnami/kong/1/ol-7/prebuildfs/liblog.sh new file mode 100644 index 000000000000..04118273394a --- /dev/null +++ b/bitnami/kong/1/ol-7/prebuildfs/liblog.sh @@ -0,0 +1,83 @@ +#!/bin/bash +# +# Library for logging functions + +# Constants +RESET='\033[0m' +RED='\033[38;5;1m' +GREEN='\033[38;5;2m' +YELLOW='\033[38;5;3m' +MAGENTA='\033[38;5;5m' +CYAN='\033[38;5;6m' + +# Functions + +######################## +# Print to STDERR +# Arguments: +# Message to print +# Returns: +# None +######################### +stderr_print() { + printf "%b\\n" "${*}" >&2 +} + +######################## +# Log message +# Arguments: +# Message to log +# Returns: +# None +######################### +log() { + stderr_print "${CYAN}${MODULE:-} ${MAGENTA}$(date "+%T.%2N ")${RESET}${*}" +} +######################## +# Log an 'info' message +# Arguments: +# Message to log +# Returns: +# None +######################### +info() { + log "${GREEN}INFO ${RESET} ==> ${*}" +} +######################## +# Log message +# Arguments: +# Message to log +# Returns: +# None +######################### +warn() { + log "${YELLOW}WARN ${RESET} ==> ${*}" +} +######################## +# Log an 'error' message +# Arguments: +# Message to log +# Returns: +# None +######################### +error() { + log "${RED}ERROR${RESET} ==> ${*}" +} +######################## +# Log a 'debug' message +# Globals: +# BITNAMI_DEBUG +# Arguments: +# None +# Returns: +# None +######################### +debug() { + # 'is_boolean_yes' is defined in libvalidations.sh, but depends on this file so we cannot source it + local -r bool="${BITNAMI_DEBUG:-false}" + # comparison is performed without regard to the case of alphabetic characters + shopt -s nocasematch + if [[ "$bool" = 1 || "$bool" =~ ^(yes|true)$ ]]; then + log "${MAGENTA}DEBUG${RESET} ==> ${*}" + fi +} diff --git a/bitnami/kong/1/ol-7/prebuildfs/libnet.sh b/bitnami/kong/1/ol-7/prebuildfs/libnet.sh new file mode 100644 index 000000000000..8c34b4f8ca7d --- /dev/null +++ b/bitnami/kong/1/ol-7/prebuildfs/libnet.sh @@ -0,0 +1,44 @@ +#!/bin/bash +# +# Library for network functions + +# Functions + +######################## +# Resolve dns +# Arguments: +# $1 - Hostname to resolve +# Returns: +# IP +######################### +dns_lookup() { + local host="${1:?host is missing}" + getent ahosts "$host" | awk '/STREAM/ {print $1 }' +} + +######################## +# Get machine's IP +# Arguments: +# None +# Returns: +# Machine IP +######################### +get_machine_ip() { + dns_lookup "$(hostname)" +} + +######################## +# Check if the provided argument is a resolved hostname +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_hostname_resolved() { + local -r host="${1:?missing value}" + if dns_lookup "$host" > /dev/null; then + true + else + false + fi +} diff --git a/bitnami/kong/1/ol-7/prebuildfs/libos.sh b/bitnami/kong/1/ol-7/prebuildfs/libos.sh new file mode 100644 index 000000000000..1a5ba3bb2a64 --- /dev/null +++ b/bitnami/kong/1/ol-7/prebuildfs/libos.sh @@ -0,0 +1,132 @@ +#!/bin/bash +# +# Library for operating system actions + +# Functions + +######################## +# Check if an user exists in the system +# Arguments: +# $1 - user +# Returns: +# Boolean +######################### +user_exists() { + local user="${1:?user is missing}" + id "$user" >/dev/null 2>&1 +} + +######################## +# Check if a group exists in the system +# Arguments: +# $1 - group +# Returns: +# Boolean +######################### +group_exists() { + local group="${1:?group is missing}" + getent group "$group" >/dev/null 2>&1 +} + +######################## +# Create a group in the system if it does not exist already +# Arguments: +# $1 - group +# Returns: +# None +######################### +ensure_group_exists() { + local group="${1:?group is missing}" + + if ! group_exists "$group"; then + groupadd "$group" >/dev/null 2>&1 + fi +} + +######################## +# Create an user in the system if it does not exist already +# Arguments: +# $1 - user +# $2 - group +# Returns: +# None +######################### +ensure_user_exists() { + local user="${1:?user is missing}" + local group="${2:-}" + + if ! user_exists "$user"; then + useradd "$user" >/dev/null 2>&1 + if [[ -n "$group" ]]; then + ensure_group_exists "$group" + usermod -a -G "$group" "$user" >/dev/null 2>&1 + fi + fi +} + +######################## +# Check if the script is currently running as root +# Arguments: +# $1 - user +# $2 - group +# Returns: +# Boolean +######################### +am_i_root() { + if [[ "$(id -u)" = "0" ]]; then + true + else + false + fi +} + +######################## +# Get total memory available +# Arguments: +# None +# Returns: +# Memory in bytes +######################### +get_total_memory() { + echo $(($(grep MemTotal /proc/meminfo | awk '{print $2}') / 1024)) +} + +######################### +# Redirects output to /dev/null if debug mode is disabled +# Globals: +# BITNAMI_DEBUG +# Arguments: +# $@ - Command to execute +# Returns: +# None +######################### +debug_execute() { + if ${BITNAMI_DEBUG:-false}; then + "$@" + else + "$@" >/dev/null 2>&1 + fi +} + +######################## +# Retries a command a given number of times +# Arguments: +# $1 - cmd (as a string) +# $2 - max retries. Default: 12 +# $3 - sleep between retries (in seconds). Default: 5 +# Returns: +# Boolean +######################### +retry_while() { + local -r cmd="${1:?cmd is missing}" + local -r retries="${2:-12}" + local -r sleep_time="${3:-5}" + local return_value=1 + + read -r -a command <<< "$cmd" + for ((i = 1 ; i <= retries ; i+=1 )); do + "${command[@]}" && return_value=0 && break + sleep "$sleep_time" + done + return $return_value +} diff --git a/bitnami/kong/1/ol-7/prebuildfs/libservice.sh b/bitnami/kong/1/ol-7/prebuildfs/libservice.sh new file mode 100644 index 000000000000..0a83cd3d927f --- /dev/null +++ b/bitnami/kong/1/ol-7/prebuildfs/libservice.sh @@ -0,0 +1,57 @@ +#!/bin/bash +# +# Library for managing services + +# Functions + +######################## +# Read the provided pid file and returns a PID +# Arguments: +# $1 - Pid file +# Returns: +# PID +######################### +get_pid_from_file() { + local pid_file="${1:?pid file is missing}" + + if [[ -f "$pid_file" ]]; then + if [[ -n "$(< "$pid_file")" ]] && [[ "$(< "$pid_file")" -gt 0 ]]; then + echo "$(< "$pid_file")" + fi + fi +} + +######################## +# Check if a provided PID corresponds to a running service +# Arguments: +# $1 - PID +# Returns: +# Boolean +######################### +is_service_running() { + local pid="${1:?pid is missing}" + + kill -0 "$pid" 2>/dev/null +} + +######################## +# Stop a service by sending a termination signal to its pid +# Arguments: +# $1 - Pid file +# Returns: +# None +######################### +stop_service_using_pid() { + local pid_file="${1:?pid file is missing}" + local pid + + pid="$(get_pid_from_file "$pid_file")" + [[ -z "$pid" ]] || ! is_service_running "$pid" && return + + kill "$pid" + local counter=10 + while [[ "$counter" -ne 0 ]] && is_service_running "$pid"; do + sleep 1 + counter=$((counter - 1)) + done +} diff --git a/bitnami/kong/1/ol-7/prebuildfs/libvalidations.sh b/bitnami/kong/1/ol-7/prebuildfs/libvalidations.sh new file mode 100644 index 000000000000..ef9aaf0cf31f --- /dev/null +++ b/bitnami/kong/1/ol-7/prebuildfs/libvalidations.sh @@ -0,0 +1,246 @@ +#!/bin/bash +# +# Validation functions library + +# Load Generic Libraries +. /liblog.sh + +# Functions + +######################## +# Check if the provided argument is an integer +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_int() { + local -r int="${1:?missing value}" + if [[ "$int" =~ ^-?[0-9]+ ]]; then + true + else + false + fi +} + +######################## +# Check if the provided argument is a positive integer +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_positive_int() { + local -r int="${1:?missing value}" + if is_int "$int" && (( "${int}" >= 0 )); then + true + else + false + fi +} + +######################## +# Check if the provided argument is a boolean or is the string 'yes/true' +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_boolean_yes() { + local -r bool="${1:-}" + # comparison is performed without regard to the case of alphabetic characters + shopt -s nocasematch + if [[ "$bool" = 1 || "$bool" =~ ^(yes|true)$ ]]; then + true + else + false + fi +} + +######################## +# Check if the provided argument is a boolean yes/no value +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_yes_no_value() { + local -r bool="${1:-}" + if [[ "$bool" =~ ^(yes|no)$ ]]; then + true + else + false + fi +} + +######################## +# Check if the provided argument is a boolean true/false value +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_true_false_value() { + local -r bool="${1:-}" + if [[ "$bool" =~ ^(true|false)$ ]]; then + true + else + false + fi +} + +######################## +# Check if the provided argument is an empty string or not defined +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_empty_value() { + local -r val="${1:-}" + if [[ -z "$val" ]]; then + true + else + false + fi +} + +######################## +# Validate if the provided argument is a valid port +# Arguments: +# $1 - Port to validate +# Returns: +# Boolean and error message +######################### +validate_port() { + local value + local unprivileged=0 + + # Parse flags + while [[ "$#" -gt 0 ]]; do + case "$1" in + -unprivileged) + unprivileged=1 + ;; + --) + shift + break + ;; + -*) + stderr_print "unrecognized flag $1" + return 1 + ;; + *) + break + ;; + esac + shift + done + + if [[ "$#" -gt 1 ]]; then + echo "too many arguments provided" + return 2 + elif [[ "$#" -eq 0 ]]; then + stderr_print "missing port argument" + return 1 + else + value=$1 + fi + + if [[ -z "$value" ]]; then + echo "the value is empty" + return 1 + else + if ! is_int "$value"; then + echo "value is not an integer" + return 2 + elif [[ "$value" -lt 0 ]]; then + echo "negative value provided" + return 2 + elif [[ "$value" -gt 65535 ]]; then + echo "requested port is greater than 65535" + return 2 + elif [[ "$unprivileged" = 1 && "$value" -lt 1024 ]]; then + echo "privileged port requested" + return 3 + fi + fi +} + +######################## +# Validate if the provided argument is a valid IPv4 address +# Arguments: +# $1 - IP to validate +# Returns: +# Boolean +######################### +validate_ipv4() { + local ip="${1:?ip is missing}" + local stat=1 + + if [[ $ip =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then + read -r -a ip_array <<< "$(tr '.' ' ' <<< "$ip")" + [[ ${ip_array[0]} -le 255 && ${ip_array[1]} -le 255 \ + && ${ip_array[2]} -le 255 && ${ip_array[3]} -le 255 ]] + stat=$? + fi + return $stat +} + +######################## +# Validate a string format +# Arguments: +# $1 - String to validate +# Returns: +# Boolean +######################### +validate_string() { + local string + local min_length=-1 + local max_length=-1 + + # Parse flags + while [ "$#" -gt 0 ]; do + case "$1" in + -min-length) + shift + min_length=${1:-} + ;; + -max-length) + shift + max_length=${1:-} + ;; + --) + shift + break + ;; + -*) + stderr_print "unrecognized flag $1" + return 1 + ;; + *) + break + ;; + esac + shift + done + + if [ "$#" -gt 1 ]; then + stderr_print "too many arguments provided" + return 2 + elif [ "$#" -eq 0 ]; then + stderr_print "missing string" + return 1 + else + string=$1 + fi + + if [[ "$min_length" -ge 0 ]] && [[ "${#string}" -lt "$min_length" ]]; then + echo "string length is less than $min_length" + return 1 + fi + if [[ "$max_length" -ge 0 ]] && [[ "${#string}" -gt "$max_length" ]]; then + echo "string length is great than $max_length" + return 1 + fi +} diff --git a/bitnami/kong/1/ol-7/prebuildfs/libversion.sh b/bitnami/kong/1/ol-7/prebuildfs/libversion.sh new file mode 100644 index 000000000000..b16090cfe1f4 --- /dev/null +++ b/bitnami/kong/1/ol-7/prebuildfs/libversion.sh @@ -0,0 +1,47 @@ +#!/bin/bash +# +# Library for managing versions strings + +# Load Generic Libraries +. ./liblog.sh + +# Functions +######################## +# Gets semantic version +# Arguments: +# $1 - version: string to extract major.minor.patch +# $2 - section: 1 to extract major, 2 to extract minor, 3 to extract patch +# Returns: +# array with the major, minor and release +######################### +get_sematic_version () { + local version="${1:?version is required}" + local section="${2:?section is required}" + local -a version_sections + + #Regex to parse versions: x.y.z + local -r regex='([0-9]+)(\.([0-9]+)(\.([0-9]+))?)?' + + if [[ "$version" =~ $regex ]]; then + local i=1 + local j=1 + local n=${#BASH_REMATCH[*]} + + while [[ $i -lt $n ]]; do + if [[ -n "${BASH_REMATCH[$i]}" ]] && [[ "${BASH_REMATCH[$i]:0:1}" != '.' ]]; then + version_sections[$j]=${BASH_REMATCH[$i]} + ((j++)) + fi + ((i++)) + done + + local number_regex='^[0-9]+$' + if [[ "$section" =~ $number_regex ]] && (( $section > 0 )) && (( $section <= 3 )); then + echo "${version_sections[$section]}" + return + else + stderr_print "Section allowed values are: 1, 2, and 3" + return 1 + fi + fi +} diff --git a/bitnami/kong/1/ol-7/prebuildfs/opt/bitnami/.exists b/bitnami/kong/1/ol-7/prebuildfs/opt/bitnami/.exists new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/bitnami/kong/1/ol-7/prebuildfs/usr/local/bin/install_packages b/bitnami/kong/1/ol-7/prebuildfs/usr/local/bin/install_packages new file mode 100755 index 000000000000..4218ab93690a --- /dev/null +++ b/bitnami/kong/1/ol-7/prebuildfs/usr/local/bin/install_packages @@ -0,0 +1,20 @@ +#!/bin/sh +set -e +set -u +n=0 +max=2 +until [ $n -gt $max ]; do + set +e + yum --enablerepo base,updates,ol7_developer_EPEL,ol7_optional_latest install -y "$@" + CODE=$? + set -e + if [ $CODE -eq 0 ]; then + break + fi + if [ $n -eq $max ]; then + exit $CODE + fi + echo "yum failed, retrying" + n=$(($n + 1)) +done +rm -r /var/cache/yum diff --git a/bitnami/kong/1/ol-7/rootfs/licenses/licenses.txt b/bitnami/kong/1/ol-7/rootfs/licenses/licenses.txt new file mode 100644 index 000000000000..c76ba31f3b8a --- /dev/null +++ b/bitnami/kong/1/ol-7/rootfs/licenses/licenses.txt @@ -0,0 +1,3 @@ +Bitnami containers ship with software bundles. You can find the licenses under: +/opt/bitnami/nami/COPYING +/opt/bitnami/[name-of-bundle]/licenses/[bundle-version].txt diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d7cc8a93c23f..c414be413d77 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r14` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r14/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r15` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r15/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r10`, `1`, `1.4.0`, `1.4.0-r10`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r10/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 442d1307796540abbe899db34cd4e8c835f5d340 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 7 Nov 2019 12:40:39 +0000 Subject: [PATCH 097/950] 1.4.0-debian-9-r11 release --- bitnami/kong/1/debian-9/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 8665103a2b96..2a8b8e77bf78 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/minideb-extras-base:stretch-r378 +FROM bitnami/minideb-extras-base:stretch-r379 LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 51463b1e COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r10" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r11" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c414be413d77..4f01018b9cd1 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r15` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r15/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r10`, `1`, `1.4.0`, `1.4.0-r10`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r10/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r11`, `1`, `1.4.0`, `1.4.0-r11`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r11/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 42d9a39692efd59f8e97279cc829dc111353958a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 7 Nov 2019 14:21:39 +0000 Subject: [PATCH 098/950] 1.4.0-ol-7-r16 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/1/ol-7/prebuildfs/libfs.sh | 2 +- bitnami/kong/1/ol-7/prebuildfs/libnet.sh | 6 +++--- bitnami/kong/README.md | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 587dfa3816bc..24421dde65ac 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r15" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r16" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/1/ol-7/prebuildfs/libfs.sh b/bitnami/kong/1/ol-7/prebuildfs/libfs.sh index 965ec431b898..10a24735c096 100644 --- a/bitnami/kong/1/ol-7/prebuildfs/libfs.sh +++ b/bitnami/kong/1/ol-7/prebuildfs/libfs.sh @@ -35,7 +35,7 @@ ensure_dir_exists() { local owner="${2:-}" mkdir -p "${dir}" - if [[ "$owner" != "" ]]; then + if [[ -n $owner ]]; then owned_by "$dir" "$owner" fi } diff --git a/bitnami/kong/1/ol-7/prebuildfs/libnet.sh b/bitnami/kong/1/ol-7/prebuildfs/libnet.sh index 8c34b4f8ca7d..f884b7661fd7 100644 --- a/bitnami/kong/1/ol-7/prebuildfs/libnet.sh +++ b/bitnami/kong/1/ol-7/prebuildfs/libnet.sh @@ -13,7 +13,7 @@ ######################### dns_lookup() { local host="${1:?host is missing}" - getent ahosts "$host" | awk '/STREAM/ {print $1 }' + getent ahosts "$host" | awk '/STREAM/ {print $1 }' } ######################## @@ -36,9 +36,9 @@ get_machine_ip() { ######################### is_hostname_resolved() { local -r host="${1:?missing value}" - if dns_lookup "$host" > /dev/null; then + if [[ -n "$(dns_lookup "$host")" ]]; then true else - false + false fi } diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4f01018b9cd1..4fe7a646f441 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r15` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r15/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r16` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r16/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r11`, `1`, `1.4.0`, `1.4.0-r11`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r11/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c72a7229feaa7779e55d592abc939773c65cf11e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 8 Nov 2019 03:46:16 +0000 Subject: [PATCH 099/950] 1.4.0-ol-7-r17 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 24421dde65ac..7e8005c29751 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r16" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r17" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4fe7a646f441..14f17b53728e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r16` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r16/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r17` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r17/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r11`, `1`, `1.4.0`, `1.4.0-r11`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r11/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9e512d27b2c5ff7bb63784e6b0442c695dd36267 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 8 Nov 2019 18:51:22 +0000 Subject: [PATCH 100/950] 1.4.0-debian-9-r12 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 2a8b8e77bf78..2467bbf9b2c8 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 51463b1e COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r11" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r12" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 14f17b53728e..aaba6d5eccde 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r17` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r17/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r11`, `1`, `1.4.0`, `1.4.0-r11`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r11/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r12`, `1`, `1.4.0`, `1.4.0-r12`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r12/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c0d7024478cc03a4565683717a1d08ae12e3a2b5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 9 Nov 2019 04:00:02 +0000 Subject: [PATCH 101/950] 1.4.0-ol-7-r18 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 7e8005c29751..7043fa658118 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r17" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r18" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index aaba6d5eccde..53fda9df176b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r17` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r17/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r18` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r18/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r12`, `1`, `1.4.0`, `1.4.0-r12`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r12/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 15812171fb85f4f61fcc67e2c125c011c8cc08b6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 10 Nov 2019 01:00:50 +0000 Subject: [PATCH 102/950] 1.4.0-debian-9-r13 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 2467bbf9b2c8..f38a812502fb 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 51463b1e COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r12" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r13" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 53fda9df176b..7a94056c35ff 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r18` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r18/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r12`, `1`, `1.4.0`, `1.4.0-r12`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r12/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r13`, `1`, `1.4.0`, `1.4.0-r13`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r13/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From bbf6558e6ad1df096871200a23da6ed2d45bdd83 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 10 Nov 2019 03:23:36 +0000 Subject: [PATCH 103/950] 1.4.0-ol-7-r19 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 7043fa658118..4ae825c036c7 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r18" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r19" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7a94056c35ff..09b6d1f6ccf5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r18` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r18/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r19` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r19/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r13`, `1`, `1.4.0`, `1.4.0-r13`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r13/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 77921502501f6a0ff50eec5e9adc8f60db12b4bf Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 11 Nov 2019 05:18:16 +0000 Subject: [PATCH 104/950] 1.4.0-ol-7-r20 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 4ae825c036c7..88aeaf7dc536 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r19" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r20" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 09b6d1f6ccf5..a28cf1d77709 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r19` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r19/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r20` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r20/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r13`, `1`, `1.4.0`, `1.4.0-r13`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r13/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d43345f87546f20548f76477a7799bfb418455b4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 11 Nov 2019 07:11:07 +0000 Subject: [PATCH 105/950] 1.4.0-debian-9-r14 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index f38a812502fb..218d70a6d7a6 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 51463b1e COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r13" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r14" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a28cf1d77709..15fd375c899f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r20` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r20/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r13`, `1`, `1.4.0`, `1.4.0-r13`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r13/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r14`, `1`, `1.4.0`, `1.4.0-r14`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r14/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d92bc1ac5aab4f31830cf130e5d1b4f78bf02965 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 12 Nov 2019 04:26:08 +0000 Subject: [PATCH 106/950] 1.4.0-ol-7-r21 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 88aeaf7dc536..ce40288456c9 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r20" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r21" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 15fd375c899f..7367c5bec9a3 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r20` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r20/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r21` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r21/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r14`, `1`, `1.4.0`, `1.4.0-r14`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r14/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8962e46018e5c278b4960fef70e82e32c3986437 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 12 Nov 2019 13:19:13 +0000 Subject: [PATCH 107/950] 1.4.0-debian-9-r15 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 218d70a6d7a6..911dce3e4fd2 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 51463b1e COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r14" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r15" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7367c5bec9a3..c15d8a4cfdfb 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r21` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r21/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r14`, `1`, `1.4.0`, `1.4.0-r14`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r14/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r15`, `1`, `1.4.0`, `1.4.0-r15`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r15/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 178d20ac859bb2579fc4b9e478e2a0daccee06fb Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 13 Nov 2019 04:13:49 +0000 Subject: [PATCH 108/950] 1.4.0-ol-7-r22 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index ce40288456c9..d95d435a33d5 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r21" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r22" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c15d8a4cfdfb..df41cfe61c3d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r21` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r21/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r22` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r22/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r15`, `1`, `1.4.0`, `1.4.0-r15`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r15/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 70d05efb525e40b4a636946d61bd7cf500a3d7aa Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 13 Nov 2019 19:27:31 +0000 Subject: [PATCH 109/950] 1.4.0-debian-9-r16 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 911dce3e4fd2..c58b9e73781e 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 51463b1e COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r15" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r16" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index df41cfe61c3d..2277b9137f11 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r22` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r22/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r15`, `1`, `1.4.0`, `1.4.0-r15`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r15/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r16`, `1`, `1.4.0`, `1.4.0-r16`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r16/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 71f3c3c4c746651b92296a0d086a5a4a1fad01e7 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 14 Nov 2019 05:01:28 +0000 Subject: [PATCH 110/950] 1.4.0-ol-7-r23 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index d95d435a33d5..fcc8a4078534 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r22" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r23" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2277b9137f11..dac4e1357e03 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r22` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r22/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r23` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r23/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r16`, `1`, `1.4.0`, `1.4.0-r16`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r16/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c466609375cbf4b4c2e65c0f3645a08e6a9fe70b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 15 Nov 2019 01:34:47 +0000 Subject: [PATCH 111/950] 1.4.0-debian-9-r17 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index c58b9e73781e..85fe84c7b43e 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 51463b1e COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r16" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r17" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index dac4e1357e03..c6d41652d75f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r23` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r23/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r16`, `1`, `1.4.0`, `1.4.0-r16`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r16/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r17`, `1`, `1.4.0`, `1.4.0-r17`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r17/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0c28e5790f6278f2a247f1926bf681504c56a439 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 15 Nov 2019 03:56:03 +0000 Subject: [PATCH 112/950] 1.4.0-ol-7-r24 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index fcc8a4078534..a052aa399adb 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r23" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r24" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c6d41652d75f..f70bee342d60 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r23` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r23/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r24` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r24/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r17`, `1`, `1.4.0`, `1.4.0-r17`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r17/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ab4e7dc2f85c6e4604afa19b8f6f97aae2edc112 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 16 Nov 2019 03:53:34 +0000 Subject: [PATCH 113/950] 1.4.0-ol-7-r25 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index a052aa399adb..dbd14645661c 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r24" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r25" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f70bee342d60..90a95f3744ef 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r24` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r24/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r25` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r25/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r17`, `1`, `1.4.0`, `1.4.0-r17`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r17/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b667a7b6117ffd691c139bc5e1321519c9128ea1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 16 Nov 2019 07:49:35 +0000 Subject: [PATCH 114/950] 1.4.0-debian-9-r18 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 85fe84c7b43e..b20e613fa355 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 51463b1e COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r17" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r18" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 90a95f3744ef..8e2a4234ada0 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r25` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r25/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r17`, `1`, `1.4.0`, `1.4.0-r17`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r17/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r18`, `1`, `1.4.0`, `1.4.0-r18`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r18/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 551eeef303619f6fc7e2fb5d7e4b8924261c1f82 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 17 Nov 2019 03:46:50 +0000 Subject: [PATCH 115/950] 1.4.0-ol-7-r26 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index dbd14645661c..21f626ccee14 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r25" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r26" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 8e2a4234ada0..547d61a37779 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r25` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r25/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r26` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r26/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r18`, `1`, `1.4.0`, `1.4.0-r18`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r18/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d657f9983e5eb979ac8cafb2763c7e9a7e8825dd Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 17 Nov 2019 13:55:49 +0000 Subject: [PATCH 116/950] 1.4.0-debian-9-r19 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index b20e613fa355..8aebb901769c 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 51463b1e COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r18" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r19" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 547d61a37779..f95e8d72a45d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r26` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r26/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r18`, `1`, `1.4.0`, `1.4.0-r18`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r18/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r19`, `1`, `1.4.0`, `1.4.0-r19`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r19/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5c8908b6c71a174f7d741b33d469fa754793ac7a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 18 Nov 2019 03:50:09 +0000 Subject: [PATCH 117/950] 1.4.0-ol-7-r27 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 21f626ccee14..a1ead19ff52a 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r26" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r27" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f95e8d72a45d..833388840804 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r26` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r26/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r27` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r27/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r19`, `1`, `1.4.0`, `1.4.0-r19`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r19/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f52a8004da8b1cc97fe6548e91d8deb8290f942b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 18 Nov 2019 20:04:11 +0000 Subject: [PATCH 118/950] 1.4.0-debian-9-r20 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 8aebb901769c..83dad287ada9 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 51463b1e COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r19" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r20" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 833388840804..6f3f1f8df92e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r27` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r27/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r19`, `1`, `1.4.0`, `1.4.0-r19`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r19/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r20`, `1`, `1.4.0`, `1.4.0-r20`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r20/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 2b95980316bded973e1d22e19fab37aecbef69d5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 19 Nov 2019 03:23:02 +0000 Subject: [PATCH 119/950] 1.4.0-ol-7-r28 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index a1ead19ff52a..d4239380da79 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r27" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r28" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 6f3f1f8df92e..78861206a8c3 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r27` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r27/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r28` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r28/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r20`, `1`, `1.4.0`, `1.4.0-r20`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r20/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 30f3187b8d788442146b3ad3d333b01cdc6975ca Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 20 Nov 2019 02:11:29 +0000 Subject: [PATCH 120/950] 1.4.0-debian-9-r21 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 83dad287ada9..71581c223611 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -13,7 +13,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 51463b1e COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r20" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r21" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 78861206a8c3..876932ca1c4c 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r28` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r28/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r20`, `1`, `1.4.0`, `1.4.0-r20`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r20/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r21`, `1`, `1.4.0`, `1.4.0-r21`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r21/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 6a96bd8c406c271199f125f20180f0650d800791 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 20 Nov 2019 03:17:32 +0000 Subject: [PATCH 121/950] 1.4.0-ol-7-r29 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index d4239380da79..3a825a5eccbb 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r28" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r29" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 876932ca1c4c..ee561f0c3608 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r28` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r28/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r29` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r29/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r21`, `1`, `1.4.0`, `1.4.0-r21`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r21/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ec646b521bbd5574d9310259660ac28afcfbfedc Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 20 Nov 2019 14:55:02 +0000 Subject: [PATCH 122/950] 1.4.0-debian-9-r22 release --- bitnami/kong/1/debian-9/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 71581c223611..280430a72348 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -8,12 +8,12 @@ ENV HOME="/" \ # Install required system packages and dependencies RUN install_packages libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl zlib1g -RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 51463b1e46c74b195cee4474801afa93aef5f116b5b9229240f1580bc1bbbb0e +RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum 265942c437e59283dcb94e0a7e911526ff3b36befd013ed82e7b6deef6f17ad6 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r21" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r22" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index ee561f0c3608..d898fd5a57a5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r29` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r29/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r21`, `1`, `1.4.0`, `1.4.0-r21`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r21/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r22`, `1`, `1.4.0`, `1.4.0-r22`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r22/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9c3e16ea987cab78af47a2c93f1ce29d132fc70b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 20 Nov 2019 15:01:28 +0000 Subject: [PATCH 123/950] 1.4.0-ol-7-r30 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 3a825a5eccbb..088a23ea9eb9 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -9,12 +9,12 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl glibc gzip hostname keyutils-libs krb5-libs libaio-devel libcom_err libgcc libselinux libyaml nss-softokn-freebl openssl-libs pcre perl procps-ng sudo tar which zlib -RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-0" --checksum 0336b221a952a394e401a116d33e3877110d332a329c48039bef56630800106c +RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7a65f62a6ca132c66ac46c4d138ab439fdab5745860a7e71f14728e23 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r29" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r30" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d898fd5a57a5..6f8737df5902 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r29` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r29/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r30` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r30/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r22`, `1`, `1.4.0`, `1.4.0-r22`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r22/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 304a70f12d17a67eb0babc23596e69ed0c4e575b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 21 Nov 2019 03:48:09 +0000 Subject: [PATCH 124/950] 1.4.0-ol-7-r31 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- .../prebuildfs/usr/local/bin/install_packages | 23 +++++++++++++------ bitnami/kong/README.md | 2 +- 3 files changed, 18 insertions(+), 9 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 088a23ea9eb9..22830fe9ace9 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r30" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r31" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/1/ol-7/prebuildfs/usr/local/bin/install_packages b/bitnami/kong/1/ol-7/prebuildfs/usr/local/bin/install_packages index 4218ab93690a..370f3516f403 100755 --- a/bitnami/kong/1/ol-7/prebuildfs/usr/local/bin/install_packages +++ b/bitnami/kong/1/ol-7/prebuildfs/usr/local/bin/install_packages @@ -1,20 +1,29 @@ #!/bin/sh -set -e -set -u -n=0 +set -eu + +if [[ -n "oracle-epel-release-el7" ]]; then + if ! yum list installed oracle-epel-release-el7 >/dev/null 2>&1; then + yum -y install oracle-epel-release-el7 >/dev/null 2>&1 + CODE=$? + if (( $CODE != 0 )); then + echo "EPEL repository installation failed" + exit $CODE + fi + fi +fi + max=2 -until [ $n -gt $max ]; do +for ((n = 1 ; n <= max ; n+=1 )); do set +e yum --enablerepo base,updates,ol7_developer_EPEL,ol7_optional_latest install -y "$@" CODE=$? set -e - if [ $CODE -eq 0 ]; then + if (( $CODE == 0 )); then break fi - if [ $n -eq $max ]; then + if (( $n == $max )); then exit $CODE fi echo "yum failed, retrying" - n=$(($n + 1)) done rm -r /var/cache/yum diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 6f8737df5902..616f27576fc1 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r30` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r30/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r31` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r31/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r22`, `1`, `1.4.0`, `1.4.0-r22`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r22/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ffc1c0dc47cc329615dbf9bae6b6d44db13c6e8c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 21 Nov 2019 21:02:25 +0000 Subject: [PATCH 125/950] 1.4.0-debian-9-r23 release --- bitnami/kong/1/debian-9/Dockerfile | 7 +- .../kong/1/debian-9/prebuildfs/libbitnami.sh | 50 ++++ .../1/debian-9/prebuildfs/libcomponent.sh | 64 +++++ bitnami/kong/1/debian-9/prebuildfs/libfile.sh | 22 ++ bitnami/kong/1/debian-9/prebuildfs/libfs.sh | 129 +++++++++ bitnami/kong/1/debian-9/prebuildfs/liblog.sh | 83 ++++++ bitnami/kong/1/debian-9/prebuildfs/libnet.sh | 44 ++++ bitnami/kong/1/debian-9/prebuildfs/libos.sh | 132 ++++++++++ .../kong/1/debian-9/prebuildfs/libservice.sh | 57 ++++ .../1/debian-9/prebuildfs/libvalidations.sh | 246 ++++++++++++++++++ .../kong/1/debian-9/prebuildfs/libversion.sh | 47 ++++ .../1/debian-9/prebuildfs/opt/bitnami/.exists | 0 .../1/debian-9/rootfs/licenses/licenses.txt | 3 + bitnami/kong/README.md | 2 +- 14 files changed, 882 insertions(+), 4 deletions(-) create mode 100644 bitnami/kong/1/debian-9/prebuildfs/libbitnami.sh create mode 100644 bitnami/kong/1/debian-9/prebuildfs/libcomponent.sh create mode 100644 bitnami/kong/1/debian-9/prebuildfs/libfile.sh create mode 100644 bitnami/kong/1/debian-9/prebuildfs/libfs.sh create mode 100644 bitnami/kong/1/debian-9/prebuildfs/liblog.sh create mode 100644 bitnami/kong/1/debian-9/prebuildfs/libnet.sh create mode 100644 bitnami/kong/1/debian-9/prebuildfs/libos.sh create mode 100644 bitnami/kong/1/debian-9/prebuildfs/libservice.sh create mode 100644 bitnami/kong/1/debian-9/prebuildfs/libvalidations.sh create mode 100644 bitnami/kong/1/debian-9/prebuildfs/libversion.sh create mode 100644 bitnami/kong/1/debian-9/prebuildfs/opt/bitnami/.exists create mode 100644 bitnami/kong/1/debian-9/rootfs/licenses/licenses.txt diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 280430a72348..421b0e936c7b 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/minideb-extras-base:stretch-r379 +FROM bitnami/minideb:stretch LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -6,14 +6,15 @@ ENV HOME="/" \ OS_FLAVOUR="debian-9" \ OS_NAME="linux" +COPY prebuildfs / # Install required system packages and dependencies -RUN install_packages libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl zlib1g +RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps unzip zlib1g RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum 265942c437e59283dcb94e0a7e911526ff3b36befd013ed82e7b6deef6f17ad6 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r22" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r23" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/1/debian-9/prebuildfs/libbitnami.sh b/bitnami/kong/1/debian-9/prebuildfs/libbitnami.sh new file mode 100644 index 000000000000..529c3fd4a3e2 --- /dev/null +++ b/bitnami/kong/1/debian-9/prebuildfs/libbitnami.sh @@ -0,0 +1,50 @@ +#!/bin/bash +# +# Bitnami custom library + +# Load Generic Libraries +. /liblog.sh + +# Constants +BOLD='\033[1m' + +# Functions + +######################## +# Print the welcome page +# Globals: +# DISABLE_WELCOME_MESSAGE +# BITNAMI_APP_NAME +# Arguments: +# None +# Returns: +# None +######################### +print_welcome_page() { + if [[ -z "${DISABLE_WELCOME_MESSAGE:-}" ]]; then + if [[ -n "$BITNAMI_APP_NAME" ]]; then + print_image_welcome_page + fi + fi +} + +######################## +# Print the welcome page for a Bitnami Docker image +# Globals: +# BITNAMI_APP_NAME +# Arguments: +# None +# Returns: +# None +######################### +print_image_welcome_page() { + local github_url="https://github.com/bitnami/bitnami-docker-${BITNAMI_APP_NAME}" + + log "" + log "${BOLD}Welcome to the Bitnami ${BITNAMI_APP_NAME} container${RESET}" + log "Subscribe to project updates by watching ${BOLD}${github_url}${RESET}" + log "Submit issues and feature requests at ${BOLD}${github_url}/issues${RESET}" + log "Send us your feedback at ${BOLD}containers@bitnami.com${RESET}" + log "" +} + diff --git a/bitnami/kong/1/debian-9/prebuildfs/libcomponent.sh b/bitnami/kong/1/debian-9/prebuildfs/libcomponent.sh new file mode 100644 index 000000000000..025288664f69 --- /dev/null +++ b/bitnami/kong/1/debian-9/prebuildfs/libcomponent.sh @@ -0,0 +1,64 @@ +#!/bin/bash +# +# Library for managing Bitnami components + +# Constants +CACHE_ROOT="/tmp/bitnami/pkg/cache" +DOWNLOAD_URL="https://downloads.bitnami.com/files/stacksmith" + +# Functions + +######################## +# Download and unpack a Bitnami package +# Globals: +# OS_NAME +# OS_ARCH +# OS_FLAVOUR +# Arguments: +# $1 - component's name +# $2 - component's version +# Returns: +# None +######################### +component_unpack() { + local name="${1:?name is required}" + local version="${2:?version is required}" + local base_name="${name}-${version}-${OS_NAME}-${OS_ARCH}-${OS_FLAVOUR}" + local package_sha256="" + + # Validate arguments + shift 2 + while [ "$#" -gt 0 ]; do + case "$1" in + -c|--checksum) + shift + package_sha256="${1:?missing package checksum}" + ;; + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; + esac + shift + done + + echo "Downloading $base_name package" + if [ -f "${CACHE_ROOT}/${base_name}.tar.gz" ]; then + echo "${CACHE_ROOT}/${base_name}.tar.gz already exists, skipping download." + cp "${CACHE_ROOT}/${base_name}.tar.gz" . + rm "${CACHE_ROOT}/${base_name}.tar.gz" + if [ -f "${CACHE_ROOT}/${base_name}.tar.gz.sha256" ]; then + echo "Using the local sha256 from ${CACHE_ROOT}/${base_name}.tar.gz.sha256" + package_sha256="$(< "${CACHE_ROOT}/${base_name}.tar.gz.sha256")" + rm "${CACHE_ROOT}/${base_name}.tar.gz.sha256" + fi + else + curl --remote-name --silent "${DOWNLOAD_URL}/${base_name}.tar.gz" + fi + if [ -n "$package_sha256" ]; then + echo "Verifying package integrity" + echo "$package_sha256 ${base_name}.tar.gz" | sha256sum --check - + fi + tar --directory /opt/bitnami --extract --gunzip --file "${base_name}.tar.gz" --no-same-owner --strip-components=2 "${base_name}/files/" + rm "${base_name}.tar.gz" +} diff --git a/bitnami/kong/1/debian-9/prebuildfs/libfile.sh b/bitnami/kong/1/debian-9/prebuildfs/libfile.sh new file mode 100644 index 000000000000..12010f043e49 --- /dev/null +++ b/bitnami/kong/1/debian-9/prebuildfs/libfile.sh @@ -0,0 +1,22 @@ +#!/bin/bash +# +# Library for managing files + +# Functions + +######################## +# Ensure a line exists in the file by replacing a matching line. +# Arguments: +# $1 - filename +# $2 - line +# $3 - match +# Returns: +# None +######################### +file_contains_line() { + local filename="${1:?filename is required}" + local line="${2:?line is required}" + local match="${3:?match is required}" + + sed --in-place "s/^$match\$/$line/" "$filename" +} diff --git a/bitnami/kong/1/debian-9/prebuildfs/libfs.sh b/bitnami/kong/1/debian-9/prebuildfs/libfs.sh new file mode 100644 index 000000000000..10a24735c096 --- /dev/null +++ b/bitnami/kong/1/debian-9/prebuildfs/libfs.sh @@ -0,0 +1,129 @@ +#!/bin/bash +# +# Library for file system actions + +# Load Generic Libraries +. /liblog.sh + +# Functions + +######################## +# Ensure a file/directory is owned (user and group) but the given user +# Arguments: +# $1 - filepath +# $2 - owner +# Returns: +# None +######################### +owned_by() { + local path="${1:?path is missing}" + local owner="${2:?owner is missing}" + + chown "$owner":"$owner" "$path" +} + +######################## +# Ensure a directory exists and, optionally, is owned by the given user +# Arguments: +# $1 - directory +# $2 - owner +# Returns: +# None +######################### +ensure_dir_exists() { + local dir="${1:?directory is missing}" + local owner="${2:-}" + + mkdir -p "${dir}" + if [[ -n $owner ]]; then + owned_by "$dir" "$owner" + fi +} + +######################## +# Checks whether a directory is empty or not +# Arguments: +# $1 - directory +# Returns: +# Boolean +######################### +is_dir_empty() { + local dir="${1:?missing directory}" + + if [[ ! -e "$dir" ]] || [[ -z "$(ls -A "$dir")" ]]; then + true + else + false + fi +} + +######################## +# Configure permisions and ownership recursively +# Globals: +# None +# Arguments: +# $1 - paths (as a string). +# Flags: +# -f|--file-mode - mode for directories. +# -d|--dir-mode - mode for files. +# -u|--user - user +# -g|--group - group +# Returns: +# None +######################### +configure_permissions_ownership() { + local -r paths="${1:?paths is missing}" + local dir_mode="" + local file_mode="" + local user="" + local group="" + + # Validate arguments + shift 1 + while [ "$#" -gt 0 ]; do + case "$1" in + -f|--file-mode) + shift + file_mode="${1:?missing mode for files}" + ;; + -d|--dir-mode) + shift + dir_mode="${1:?missing mode for directories}" + ;; + -u|--user) + shift + user="${1:?missing user}" + ;; + -g|--group) + shift + group="${1:?missing group}" + ;; + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; + esac + shift + done + + read -r -a filepaths <<< "$paths" + for p in "${filepaths[@]}"; do + if [[ -e "$p" ]]; then + if [[ -n $dir_mode ]]; then + find -L "$p" -type d -exec chmod "$dir_mode" {} \; + fi + if [[ -n $file_mode ]]; then + find -L "$p" -type f -exec chmod "$file_mode" {} \; + fi + if [[ -n $user ]] && [[ -n $group ]]; then + chown -LR "$user":"$group" "$p" + elif [[ -n $user ]] && [[ -z $group ]]; then + chown -LR "$user" "$p" + elif [[ -z $user ]] && [[ -n $group ]]; then + chgrp -LR "$group" "$p" + fi + else + stderr_print "$p does not exist" + fi + done +} diff --git a/bitnami/kong/1/debian-9/prebuildfs/liblog.sh b/bitnami/kong/1/debian-9/prebuildfs/liblog.sh new file mode 100644 index 000000000000..04118273394a --- /dev/null +++ b/bitnami/kong/1/debian-9/prebuildfs/liblog.sh @@ -0,0 +1,83 @@ +#!/bin/bash +# +# Library for logging functions + +# Constants +RESET='\033[0m' +RED='\033[38;5;1m' +GREEN='\033[38;5;2m' +YELLOW='\033[38;5;3m' +MAGENTA='\033[38;5;5m' +CYAN='\033[38;5;6m' + +# Functions + +######################## +# Print to STDERR +# Arguments: +# Message to print +# Returns: +# None +######################### +stderr_print() { + printf "%b\\n" "${*}" >&2 +} + +######################## +# Log message +# Arguments: +# Message to log +# Returns: +# None +######################### +log() { + stderr_print "${CYAN}${MODULE:-} ${MAGENTA}$(date "+%T.%2N ")${RESET}${*}" +} +######################## +# Log an 'info' message +# Arguments: +# Message to log +# Returns: +# None +######################### +info() { + log "${GREEN}INFO ${RESET} ==> ${*}" +} +######################## +# Log message +# Arguments: +# Message to log +# Returns: +# None +######################### +warn() { + log "${YELLOW}WARN ${RESET} ==> ${*}" +} +######################## +# Log an 'error' message +# Arguments: +# Message to log +# Returns: +# None +######################### +error() { + log "${RED}ERROR${RESET} ==> ${*}" +} +######################## +# Log a 'debug' message +# Globals: +# BITNAMI_DEBUG +# Arguments: +# None +# Returns: +# None +######################### +debug() { + # 'is_boolean_yes' is defined in libvalidations.sh, but depends on this file so we cannot source it + local -r bool="${BITNAMI_DEBUG:-false}" + # comparison is performed without regard to the case of alphabetic characters + shopt -s nocasematch + if [[ "$bool" = 1 || "$bool" =~ ^(yes|true)$ ]]; then + log "${MAGENTA}DEBUG${RESET} ==> ${*}" + fi +} diff --git a/bitnami/kong/1/debian-9/prebuildfs/libnet.sh b/bitnami/kong/1/debian-9/prebuildfs/libnet.sh new file mode 100644 index 000000000000..f884b7661fd7 --- /dev/null +++ b/bitnami/kong/1/debian-9/prebuildfs/libnet.sh @@ -0,0 +1,44 @@ +#!/bin/bash +# +# Library for network functions + +# Functions + +######################## +# Resolve dns +# Arguments: +# $1 - Hostname to resolve +# Returns: +# IP +######################### +dns_lookup() { + local host="${1:?host is missing}" + getent ahosts "$host" | awk '/STREAM/ {print $1 }' +} + +######################## +# Get machine's IP +# Arguments: +# None +# Returns: +# Machine IP +######################### +get_machine_ip() { + dns_lookup "$(hostname)" +} + +######################## +# Check if the provided argument is a resolved hostname +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_hostname_resolved() { + local -r host="${1:?missing value}" + if [[ -n "$(dns_lookup "$host")" ]]; then + true + else + false + fi +} diff --git a/bitnami/kong/1/debian-9/prebuildfs/libos.sh b/bitnami/kong/1/debian-9/prebuildfs/libos.sh new file mode 100644 index 000000000000..1a5ba3bb2a64 --- /dev/null +++ b/bitnami/kong/1/debian-9/prebuildfs/libos.sh @@ -0,0 +1,132 @@ +#!/bin/bash +# +# Library for operating system actions + +# Functions + +######################## +# Check if an user exists in the system +# Arguments: +# $1 - user +# Returns: +# Boolean +######################### +user_exists() { + local user="${1:?user is missing}" + id "$user" >/dev/null 2>&1 +} + +######################## +# Check if a group exists in the system +# Arguments: +# $1 - group +# Returns: +# Boolean +######################### +group_exists() { + local group="${1:?group is missing}" + getent group "$group" >/dev/null 2>&1 +} + +######################## +# Create a group in the system if it does not exist already +# Arguments: +# $1 - group +# Returns: +# None +######################### +ensure_group_exists() { + local group="${1:?group is missing}" + + if ! group_exists "$group"; then + groupadd "$group" >/dev/null 2>&1 + fi +} + +######################## +# Create an user in the system if it does not exist already +# Arguments: +# $1 - user +# $2 - group +# Returns: +# None +######################### +ensure_user_exists() { + local user="${1:?user is missing}" + local group="${2:-}" + + if ! user_exists "$user"; then + useradd "$user" >/dev/null 2>&1 + if [[ -n "$group" ]]; then + ensure_group_exists "$group" + usermod -a -G "$group" "$user" >/dev/null 2>&1 + fi + fi +} + +######################## +# Check if the script is currently running as root +# Arguments: +# $1 - user +# $2 - group +# Returns: +# Boolean +######################### +am_i_root() { + if [[ "$(id -u)" = "0" ]]; then + true + else + false + fi +} + +######################## +# Get total memory available +# Arguments: +# None +# Returns: +# Memory in bytes +######################### +get_total_memory() { + echo $(($(grep MemTotal /proc/meminfo | awk '{print $2}') / 1024)) +} + +######################### +# Redirects output to /dev/null if debug mode is disabled +# Globals: +# BITNAMI_DEBUG +# Arguments: +# $@ - Command to execute +# Returns: +# None +######################### +debug_execute() { + if ${BITNAMI_DEBUG:-false}; then + "$@" + else + "$@" >/dev/null 2>&1 + fi +} + +######################## +# Retries a command a given number of times +# Arguments: +# $1 - cmd (as a string) +# $2 - max retries. Default: 12 +# $3 - sleep between retries (in seconds). Default: 5 +# Returns: +# Boolean +######################### +retry_while() { + local -r cmd="${1:?cmd is missing}" + local -r retries="${2:-12}" + local -r sleep_time="${3:-5}" + local return_value=1 + + read -r -a command <<< "$cmd" + for ((i = 1 ; i <= retries ; i+=1 )); do + "${command[@]}" && return_value=0 && break + sleep "$sleep_time" + done + return $return_value +} diff --git a/bitnami/kong/1/debian-9/prebuildfs/libservice.sh b/bitnami/kong/1/debian-9/prebuildfs/libservice.sh new file mode 100644 index 000000000000..0a83cd3d927f --- /dev/null +++ b/bitnami/kong/1/debian-9/prebuildfs/libservice.sh @@ -0,0 +1,57 @@ +#!/bin/bash +# +# Library for managing services + +# Functions + +######################## +# Read the provided pid file and returns a PID +# Arguments: +# $1 - Pid file +# Returns: +# PID +######################### +get_pid_from_file() { + local pid_file="${1:?pid file is missing}" + + if [[ -f "$pid_file" ]]; then + if [[ -n "$(< "$pid_file")" ]] && [[ "$(< "$pid_file")" -gt 0 ]]; then + echo "$(< "$pid_file")" + fi + fi +} + +######################## +# Check if a provided PID corresponds to a running service +# Arguments: +# $1 - PID +# Returns: +# Boolean +######################### +is_service_running() { + local pid="${1:?pid is missing}" + + kill -0 "$pid" 2>/dev/null +} + +######################## +# Stop a service by sending a termination signal to its pid +# Arguments: +# $1 - Pid file +# Returns: +# None +######################### +stop_service_using_pid() { + local pid_file="${1:?pid file is missing}" + local pid + + pid="$(get_pid_from_file "$pid_file")" + [[ -z "$pid" ]] || ! is_service_running "$pid" && return + + kill "$pid" + local counter=10 + while [[ "$counter" -ne 0 ]] && is_service_running "$pid"; do + sleep 1 + counter=$((counter - 1)) + done +} diff --git a/bitnami/kong/1/debian-9/prebuildfs/libvalidations.sh b/bitnami/kong/1/debian-9/prebuildfs/libvalidations.sh new file mode 100644 index 000000000000..ef9aaf0cf31f --- /dev/null +++ b/bitnami/kong/1/debian-9/prebuildfs/libvalidations.sh @@ -0,0 +1,246 @@ +#!/bin/bash +# +# Validation functions library + +# Load Generic Libraries +. /liblog.sh + +# Functions + +######################## +# Check if the provided argument is an integer +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_int() { + local -r int="${1:?missing value}" + if [[ "$int" =~ ^-?[0-9]+ ]]; then + true + else + false + fi +} + +######################## +# Check if the provided argument is a positive integer +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_positive_int() { + local -r int="${1:?missing value}" + if is_int "$int" && (( "${int}" >= 0 )); then + true + else + false + fi +} + +######################## +# Check if the provided argument is a boolean or is the string 'yes/true' +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_boolean_yes() { + local -r bool="${1:-}" + # comparison is performed without regard to the case of alphabetic characters + shopt -s nocasematch + if [[ "$bool" = 1 || "$bool" =~ ^(yes|true)$ ]]; then + true + else + false + fi +} + +######################## +# Check if the provided argument is a boolean yes/no value +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_yes_no_value() { + local -r bool="${1:-}" + if [[ "$bool" =~ ^(yes|no)$ ]]; then + true + else + false + fi +} + +######################## +# Check if the provided argument is a boolean true/false value +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_true_false_value() { + local -r bool="${1:-}" + if [[ "$bool" =~ ^(true|false)$ ]]; then + true + else + false + fi +} + +######################## +# Check if the provided argument is an empty string or not defined +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_empty_value() { + local -r val="${1:-}" + if [[ -z "$val" ]]; then + true + else + false + fi +} + +######################## +# Validate if the provided argument is a valid port +# Arguments: +# $1 - Port to validate +# Returns: +# Boolean and error message +######################### +validate_port() { + local value + local unprivileged=0 + + # Parse flags + while [[ "$#" -gt 0 ]]; do + case "$1" in + -unprivileged) + unprivileged=1 + ;; + --) + shift + break + ;; + -*) + stderr_print "unrecognized flag $1" + return 1 + ;; + *) + break + ;; + esac + shift + done + + if [[ "$#" -gt 1 ]]; then + echo "too many arguments provided" + return 2 + elif [[ "$#" -eq 0 ]]; then + stderr_print "missing port argument" + return 1 + else + value=$1 + fi + + if [[ -z "$value" ]]; then + echo "the value is empty" + return 1 + else + if ! is_int "$value"; then + echo "value is not an integer" + return 2 + elif [[ "$value" -lt 0 ]]; then + echo "negative value provided" + return 2 + elif [[ "$value" -gt 65535 ]]; then + echo "requested port is greater than 65535" + return 2 + elif [[ "$unprivileged" = 1 && "$value" -lt 1024 ]]; then + echo "privileged port requested" + return 3 + fi + fi +} + +######################## +# Validate if the provided argument is a valid IPv4 address +# Arguments: +# $1 - IP to validate +# Returns: +# Boolean +######################### +validate_ipv4() { + local ip="${1:?ip is missing}" + local stat=1 + + if [[ $ip =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then + read -r -a ip_array <<< "$(tr '.' ' ' <<< "$ip")" + [[ ${ip_array[0]} -le 255 && ${ip_array[1]} -le 255 \ + && ${ip_array[2]} -le 255 && ${ip_array[3]} -le 255 ]] + stat=$? + fi + return $stat +} + +######################## +# Validate a string format +# Arguments: +# $1 - String to validate +# Returns: +# Boolean +######################### +validate_string() { + local string + local min_length=-1 + local max_length=-1 + + # Parse flags + while [ "$#" -gt 0 ]; do + case "$1" in + -min-length) + shift + min_length=${1:-} + ;; + -max-length) + shift + max_length=${1:-} + ;; + --) + shift + break + ;; + -*) + stderr_print "unrecognized flag $1" + return 1 + ;; + *) + break + ;; + esac + shift + done + + if [ "$#" -gt 1 ]; then + stderr_print "too many arguments provided" + return 2 + elif [ "$#" -eq 0 ]; then + stderr_print "missing string" + return 1 + else + string=$1 + fi + + if [[ "$min_length" -ge 0 ]] && [[ "${#string}" -lt "$min_length" ]]; then + echo "string length is less than $min_length" + return 1 + fi + if [[ "$max_length" -ge 0 ]] && [[ "${#string}" -gt "$max_length" ]]; then + echo "string length is great than $max_length" + return 1 + fi +} diff --git a/bitnami/kong/1/debian-9/prebuildfs/libversion.sh b/bitnami/kong/1/debian-9/prebuildfs/libversion.sh new file mode 100644 index 000000000000..b16090cfe1f4 --- /dev/null +++ b/bitnami/kong/1/debian-9/prebuildfs/libversion.sh @@ -0,0 +1,47 @@ +#!/bin/bash +# +# Library for managing versions strings + +# Load Generic Libraries +. ./liblog.sh + +# Functions +######################## +# Gets semantic version +# Arguments: +# $1 - version: string to extract major.minor.patch +# $2 - section: 1 to extract major, 2 to extract minor, 3 to extract patch +# Returns: +# array with the major, minor and release +######################### +get_sematic_version () { + local version="${1:?version is required}" + local section="${2:?section is required}" + local -a version_sections + + #Regex to parse versions: x.y.z + local -r regex='([0-9]+)(\.([0-9]+)(\.([0-9]+))?)?' + + if [[ "$version" =~ $regex ]]; then + local i=1 + local j=1 + local n=${#BASH_REMATCH[*]} + + while [[ $i -lt $n ]]; do + if [[ -n "${BASH_REMATCH[$i]}" ]] && [[ "${BASH_REMATCH[$i]:0:1}" != '.' ]]; then + version_sections[$j]=${BASH_REMATCH[$i]} + ((j++)) + fi + ((i++)) + done + + local number_regex='^[0-9]+$' + if [[ "$section" =~ $number_regex ]] && (( $section > 0 )) && (( $section <= 3 )); then + echo "${version_sections[$section]}" + return + else + stderr_print "Section allowed values are: 1, 2, and 3" + return 1 + fi + fi +} diff --git a/bitnami/kong/1/debian-9/prebuildfs/opt/bitnami/.exists b/bitnami/kong/1/debian-9/prebuildfs/opt/bitnami/.exists new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/bitnami/kong/1/debian-9/rootfs/licenses/licenses.txt b/bitnami/kong/1/debian-9/rootfs/licenses/licenses.txt new file mode 100644 index 000000000000..c76ba31f3b8a --- /dev/null +++ b/bitnami/kong/1/debian-9/rootfs/licenses/licenses.txt @@ -0,0 +1,3 @@ +Bitnami containers ship with software bundles. You can find the licenses under: +/opt/bitnami/nami/COPYING +/opt/bitnami/[name-of-bundle]/licenses/[bundle-version].txt diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 616f27576fc1..81747a9d1652 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r31` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r31/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r22`, `1`, `1.4.0`, `1.4.0-r22`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r22/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r23`, `1`, `1.4.0`, `1.4.0-r23`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r23/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0c71050bba36257b65eab5a97d009ade4271b04e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 22 Nov 2019 03:44:45 +0000 Subject: [PATCH 126/950] 1.4.0-ol-7-r32 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 22830fe9ace9..f8a348eab8d9 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r31" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r32" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 81747a9d1652..7f0fb7a14e5b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r31` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r31/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r32` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r32/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r23`, `1`, `1.4.0`, `1.4.0-r23`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r23/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f009543d00e40ff1bdf343e3c7b792d5a21c02c2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 22 Nov 2019 11:12:45 +0000 Subject: [PATCH 127/950] 1.4.0-ol-7-r33 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index f8a348eab8d9..957ca5ee1311 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r32" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r33" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7f0fb7a14e5b..c60b5eb82464 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r32` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r32/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r33` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r33/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r23`, `1`, `1.4.0`, `1.4.0-r23`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r23/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9aa6ec28900b4d313855d9396fa4e90ef16585b2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 22 Nov 2019 18:12:58 +0000 Subject: [PATCH 128/950] 1.4.0-ol-7-r34 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 957ca5ee1311..2f4ff772c625 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r33" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r34" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c60b5eb82464..b6ed5579a815 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r33` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r33/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r34` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r34/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r23`, `1`, `1.4.0`, `1.4.0-r23`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r23/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e6fec31eec523eddf2ffb072d59916827f9f9935 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 23 Nov 2019 03:19:14 +0000 Subject: [PATCH 129/950] 1.4.0-debian-9-r24 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 421b0e936c7b..ee073a924dd8 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum 265942c4 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r23" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r24" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b6ed5579a815..f66ca994a051 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r34` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r34/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r23`, `1`, `1.4.0`, `1.4.0-r23`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r23/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r24`, `1`, `1.4.0`, `1.4.0-r24`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r24/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From a991a76050a9f4a83623881689442f312d0ae1d9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 23 Nov 2019 03:52:02 +0000 Subject: [PATCH 130/950] 1.4.0-ol-7-r35 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 2f4ff772c625..25ef8b7a0f74 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r34" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r35" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f66ca994a051..0966840d4ac6 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r34` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r34/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r35` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r35/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r24`, `1`, `1.4.0`, `1.4.0-r24`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r24/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 2091303e678063df82fee396b2612279c2a1ee7e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 24 Nov 2019 03:20:17 +0000 Subject: [PATCH 131/950] 1.4.0-ol-7-r36 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 25ef8b7a0f74..2ef3285734e4 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r35" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r36" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0966840d4ac6..f65bae17a150 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r35` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r35/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r36` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r36/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r24`, `1`, `1.4.0`, `1.4.0-r24`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r24/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 03e935e9b06fa4c18ce8aa3edf4ae3774ac9278f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 24 Nov 2019 09:31:22 +0000 Subject: [PATCH 132/950] 1.4.0-debian-9-r25 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index ee073a924dd8..4a290a7e74dd 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum 265942c4 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r24" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r25" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f65bae17a150..1be82020259a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r36` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r36/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r24`, `1`, `1.4.0`, `1.4.0-r24`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r24/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r25`, `1`, `1.4.0`, `1.4.0-r25`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r25/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 44464af10520f63b07a58761ae005c1edf40cac3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 25 Nov 2019 02:58:18 +0000 Subject: [PATCH 133/950] 1.4.0-ol-7-r37 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 2ef3285734e4..619945c114a5 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r36" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r37" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1be82020259a..951f61d1273f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r36` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r36/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r37` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r37/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r25`, `1`, `1.4.0`, `1.4.0-r25`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r25/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e6d8fa9943b04da446214fdce4f08b953ae0519f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 25 Nov 2019 15:38:50 +0000 Subject: [PATCH 134/950] 1.4.0-debian-9-r26 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 4a290a7e74dd..9d17a47913d1 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum 265942c4 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r25" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r26" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 951f61d1273f..325e34bdf4fc 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r37` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r37/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r25`, `1`, `1.4.0`, `1.4.0-r25`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r25/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r26`, `1`, `1.4.0`, `1.4.0-r26`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r26/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From fb56042ae52eabe64caed43c6f32fc2fd9d94f4f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 26 Nov 2019 02:56:10 +0000 Subject: [PATCH 135/950] 1.4.0-ol-7-r38 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 619945c114a5..07ec46c9ffad 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r37" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r38" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 325e34bdf4fc..b941c4abab4b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r37` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r37/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r38` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r38/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r26`, `1`, `1.4.0`, `1.4.0-r26`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r26/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 4e2aa5760eccda09f88dbb87edfee32ad1969172 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 26 Nov 2019 21:45:33 +0000 Subject: [PATCH 136/950] 1.4.0-debian-9-r27 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 9d17a47913d1..8c98d21f7cbc 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum 265942c4 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r26" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r27" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b941c4abab4b..85bf98f9a166 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r38` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r38/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r26`, `1`, `1.4.0`, `1.4.0-r26`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r26/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r27`, `1`, `1.4.0`, `1.4.0-r27`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r27/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f1615e90595131571c4ce185c8c46c6e74ad07b4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 27 Nov 2019 05:33:00 +0000 Subject: [PATCH 137/950] 1.4.0-ol-7-r39 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 07ec46c9ffad..3c878e969e8c 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r38" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r39" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 85bf98f9a166..c36af106df7e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r38` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r38/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r39` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r39/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r27`, `1`, `1.4.0`, `1.4.0-r27`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r27/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f1febd91ffc6c3bce0e8d7030fbea9ed1e4d35bf Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 28 Nov 2019 03:53:10 +0000 Subject: [PATCH 138/950] 1.4.0-debian-9-r28 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 8c98d21f7cbc..ad74628db234 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum 265942c4 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r27" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r28" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c36af106df7e..cc7c5e86de85 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r39` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r39/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r27`, `1`, `1.4.0`, `1.4.0-r27`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r27/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r28`, `1`, `1.4.0`, `1.4.0-r28`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r28/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From cb36a8d81123920e969514e9086e60f2536a03e4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 28 Nov 2019 04:33:40 +0000 Subject: [PATCH 139/950] 1.4.0-ol-7-r40 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 3c878e969e8c..3c477190ae05 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r39" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r40" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index cc7c5e86de85..963f4dd2017e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r39` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r39/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r40` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r40/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r28`, `1`, `1.4.0`, `1.4.0-r28`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r28/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 832be1df7af0a66d65fccc96d21086d0e72f40d9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 29 Nov 2019 03:59:30 +0000 Subject: [PATCH 140/950] 1.4.0-ol-7-r41 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 3c477190ae05..5ea2007cf2fd 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r40" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r41" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 963f4dd2017e..327559dc211f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r40` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r40/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r41` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r41/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r28`, `1`, `1.4.0`, `1.4.0-r28`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r28/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d0bc09142741ac5ae2d71029a0ecfa41e5b69b0e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 29 Nov 2019 10:00:47 +0000 Subject: [PATCH 141/950] 1.4.0-debian-9-r29 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index ad74628db234..f07191e98f9e 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum 265942c4 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r28" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r29" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 327559dc211f..f15aae208a66 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r41` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r41/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r28`, `1`, `1.4.0`, `1.4.0-r28`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r28/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r29`, `1`, `1.4.0`, `1.4.0-r29`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r29/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c81a892ccc9f9ebc1a760935d4135c8136f85942 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 30 Nov 2019 03:51:44 +0000 Subject: [PATCH 142/950] 1.4.0-ol-7-r42 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 5ea2007cf2fd..ed75c1f77913 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r41" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r42" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f15aae208a66..1278cd3bb773 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r41` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r41/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r42` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r42/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r29`, `1`, `1.4.0`, `1.4.0-r29`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r29/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5fa9a945e54f8cd51eaacf775133b38a8a2a28a2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 30 Nov 2019 16:37:31 +0000 Subject: [PATCH 143/950] 1.4.0-debian-9-r30 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index f07191e98f9e..582d88a38172 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum 265942c4 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r29" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r30" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1278cd3bb773..88a56a03aa7e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r42` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r42/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r29`, `1`, `1.4.0`, `1.4.0-r29`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r29/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r30`, `1`, `1.4.0`, `1.4.0-r30`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r30/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f068a3052acd3743d4702d27c42aaccab2749d4a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 1 Dec 2019 03:48:52 +0000 Subject: [PATCH 144/950] 1.4.0-ol-7-r43 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index ed75c1f77913..86e68b15a5ae 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r42" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r43" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 88a56a03aa7e..ea6efdd30e6c 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r42` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r42/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r43` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r43/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r30`, `1`, `1.4.0`, `1.4.0-r30`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r30/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 84ae75ac9272bedf9ebf6ca06d83d755e5cd6158 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 1 Dec 2019 22:43:27 +0000 Subject: [PATCH 145/950] 1.4.0-debian-9-r31 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 582d88a38172..e99dfeaa8c3f 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum 265942c4 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r30" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r31" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index ea6efdd30e6c..23d98656e00a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r43` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r43/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r30`, `1`, `1.4.0`, `1.4.0-r30`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r30/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r31`, `1`, `1.4.0`, `1.4.0-r31`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r31/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b45fb5d002e6701ff0bb46cce82dfdff89bf2e6d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 2 Dec 2019 03:55:24 +0000 Subject: [PATCH 146/950] 1.4.0-ol-7-r44 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 86e68b15a5ae..f572557e31a9 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r43" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r44" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 23d98656e00a..afd02bd99478 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r43` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r43/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r44` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r44/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r31`, `1`, `1.4.0`, `1.4.0-r31`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r31/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From bf5f871bdcac58ccbdc1caa570960dac84ca2e1d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 3 Dec 2019 03:32:44 +0000 Subject: [PATCH 147/950] 1.4.0-ol-7-r45 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index f572557e31a9..ca4c6f9bb270 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r44" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r45" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index afd02bd99478..052bfaf8df5a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r44` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r44/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r45` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r45/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r31`, `1`, `1.4.0`, `1.4.0-r31`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r31/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b513da4a90dab63aa7639034fa8ade82fe81b3ae Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 3 Dec 2019 04:54:21 +0000 Subject: [PATCH 148/950] 1.4.0-debian-9-r32 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index e99dfeaa8c3f..03027a12cf37 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum 265942c4 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r31" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r32" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 052bfaf8df5a..967f189cddf9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r45` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r45/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r31`, `1`, `1.4.0`, `1.4.0-r31`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r31/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r32`, `1`, `1.4.0`, `1.4.0-r32`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r32/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 97b17b5387df8dbae6109e277d629f75e7faecea Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 4 Dec 2019 05:15:49 +0000 Subject: [PATCH 149/950] 1.4.0-ol-7-r46 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index ca4c6f9bb270..3c13ebb1192b 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r45" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r46" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 967f189cddf9..219d136c4fbc 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r45` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r45/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r46` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r46/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r32`, `1`, `1.4.0`, `1.4.0-r32`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r32/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 988be04761fe0fc41f45e91eed00d9a778fafb5f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 4 Dec 2019 11:02:41 +0000 Subject: [PATCH 150/950] 1.4.0-debian-9-r33 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 03027a12cf37..ce2db0f8d03d 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum 265942c4 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r32" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r33" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 219d136c4fbc..a30f6c3f0a6f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r46` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r46/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r32`, `1`, `1.4.0`, `1.4.0-r32`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r32/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r33`, `1`, `1.4.0`, `1.4.0-r33`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r33/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8e858dc3f39b1efca4c227461792fe195702c0ee Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 5 Dec 2019 05:21:44 +0000 Subject: [PATCH 151/950] 1.4.0-ol-7-r47 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 3c13ebb1192b..96611a49958e 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r46" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r47" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a30f6c3f0a6f..0f92a1ed8c25 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,8 +51,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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r46` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r46/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r47` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r47/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r33`, `1`, `1.4.0`, `1.4.0-r33`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r33/1/debian-9/Dockerfile) +* [`1-photon-3`, `1.0.0-photon-3-r0` (1/photon-3/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.0.0-photon-3-r0/1/photon-3/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 107da53786bde839853faec7abce0d38177cab31 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 5 Dec 2019 17:09:55 +0000 Subject: [PATCH 152/950] 1.4.0-debian-9-r34 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index ce2db0f8d03d..1c28bec54ef0 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum 265942c4 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r33" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r34" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0f92a1ed8c25..cd654ed1e2d9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r47` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r47/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r33`, `1`, `1.4.0`, `1.4.0-r33`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r33/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r34`, `1`, `1.4.0`, `1.4.0-r34`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r34/1/debian-9/Dockerfile) * [`1-photon-3`, `1.0.0-photon-3-r0` (1/photon-3/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.0.0-photon-3-r0/1/photon-3/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d551aad057369101d8a9e503f637ede45c1acb43 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 6 Dec 2019 05:24:48 +0000 Subject: [PATCH 153/950] 1.4.0-ol-7-r48 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 96611a49958e..7f3314707d5a 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r47" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r48" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index cd654ed1e2d9..e2b40d237132 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r47` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r47/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r48` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r48/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r34`, `1`, `1.4.0`, `1.4.0-r34`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r34/1/debian-9/Dockerfile) * [`1-photon-3`, `1.0.0-photon-3-r0` (1/photon-3/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.0.0-photon-3-r0/1/photon-3/Dockerfile) From 6ca0ed79ecb3739b8695a1a22e4ce91bf9ac5353 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 6 Dec 2019 23:17:08 +0000 Subject: [PATCH 154/950] 1.4.0-debian-9-r35 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 1c28bec54ef0..7e83286e4ba6 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum 265942c4 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r34" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r35" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e2b40d237132..f89ca69eec0b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r48` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r48/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r34`, `1`, `1.4.0`, `1.4.0-r34`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r34/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r35`, `1`, `1.4.0`, `1.4.0-r35`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r35/1/debian-9/Dockerfile) * [`1-photon-3`, `1.0.0-photon-3-r0` (1/photon-3/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.0.0-photon-3-r0/1/photon-3/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0cb27a09f6ed8f5fc62cef72acc3bc7abe1704dc Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 7 Dec 2019 05:52:00 +0000 Subject: [PATCH 155/950] 1.4.0-ol-7-r49 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 7f3314707d5a..1789464f338a 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r48" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r49" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f89ca69eec0b..c088792d8b88 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r48` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r48/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r49` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r49/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r35`, `1`, `1.4.0`, `1.4.0-r35`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r35/1/debian-9/Dockerfile) * [`1-photon-3`, `1.0.0-photon-3-r0` (1/photon-3/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.0.0-photon-3-r0/1/photon-3/Dockerfile) From e70b6a180d35217c586db84b59b7e39aab6d14d5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 8 Dec 2019 05:49:20 +0000 Subject: [PATCH 156/950] 1.4.0-debian-9-r36 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 7e83286e4ba6..b9c4d88cf61e 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum 265942c4 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r35" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r36" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c088792d8b88..13cbec824ae3 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r49` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r49/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r35`, `1`, `1.4.0`, `1.4.0-r35`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r35/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r36`, `1`, `1.4.0`, `1.4.0-r36`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r36/1/debian-9/Dockerfile) * [`1-photon-3`, `1.0.0-photon-3-r0` (1/photon-3/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.0.0-photon-3-r0/1/photon-3/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 685e26c068194a9156cdf9e6d75e907a6c86dacd Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 8 Dec 2019 05:55:47 +0000 Subject: [PATCH 157/950] 1.4.0-ol-7-r50 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 1789464f338a..30b4e4d6a66e 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r49" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r50" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 13cbec824ae3..a25292c49b5a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r49` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r49/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r50` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r50/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r36`, `1`, `1.4.0`, `1.4.0-r36`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r36/1/debian-9/Dockerfile) * [`1-photon-3`, `1.0.0-photon-3-r0` (1/photon-3/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.0.0-photon-3-r0/1/photon-3/Dockerfile) From 90dac92e939d1d85838b97bacf9ad2c8a7bd22d2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 9 Dec 2019 05:16:32 +0000 Subject: [PATCH 158/950] 1.4.0-ol-7-r51 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 30b4e4d6a66e..94a90a9371ea 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r50" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r51" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a25292c49b5a..68576cea211e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r50` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r50/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r51` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r51/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r36`, `1`, `1.4.0`, `1.4.0-r36`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r36/1/debian-9/Dockerfile) * [`1-photon-3`, `1.0.0-photon-3-r0` (1/photon-3/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.0.0-photon-3-r0/1/photon-3/Dockerfile) From 2a2c4ea0991619a04c542206dfb083aed917cb8a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 9 Dec 2019 12:02:37 +0000 Subject: [PATCH 159/950] 1.4.0-debian-9-r37 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index b9c4d88cf61e..8441744141bc 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum 265942c4 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r36" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r37" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 68576cea211e..dd6f64a62691 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r51` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r51/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r36`, `1`, `1.4.0`, `1.4.0-r36`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r36/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r37`, `1`, `1.4.0`, `1.4.0-r37`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r37/1/debian-9/Dockerfile) * [`1-photon-3`, `1.0.0-photon-3-r0` (1/photon-3/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.0.0-photon-3-r0/1/photon-3/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 788230966a70294455034a58d4dc7725e3722065 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 10 Dec 2019 05:32:55 +0000 Subject: [PATCH 160/950] 1.4.0-ol-7-r52 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 94a90a9371ea..4b7a49b9b922 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r51" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r52" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index dd6f64a62691..f0cbd9059c0a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r51` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r51/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r52` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r52/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r37`, `1`, `1.4.0`, `1.4.0-r37`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r37/1/debian-9/Dockerfile) * [`1-photon-3`, `1.0.0-photon-3-r0` (1/photon-3/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.0.0-photon-3-r0/1/photon-3/Dockerfile) From f83042869beb881b75df644ab4a2e7000a9b0658 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 10 Dec 2019 18:13:15 +0000 Subject: [PATCH 161/950] 1.4.0-debian-9-r38 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 8441744141bc..b0338f90297e 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum 265942c4 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r37" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r38" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f0cbd9059c0a..607d74954b68 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r52` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r52/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r37`, `1`, `1.4.0`, `1.4.0-r37`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r37/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r38`, `1`, `1.4.0`, `1.4.0-r38`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r38/1/debian-9/Dockerfile) * [`1-photon-3`, `1.0.0-photon-3-r0` (1/photon-3/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.0.0-photon-3-r0/1/photon-3/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 3ae07769ad0150627bc161d8bd6a46a0573812a6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 11 Dec 2019 06:08:03 +0000 Subject: [PATCH 162/950] 1.4.0-ol-7-r53 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 4b7a49b9b922..e76e6ea3ea5f 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r52" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r53" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 607d74954b68..c44697ee067c 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r52` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r52/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r53` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r53/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r38`, `1`, `1.4.0`, `1.4.0-r38`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r38/1/debian-9/Dockerfile) * [`1-photon-3`, `1.0.0-photon-3-r0` (1/photon-3/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.0.0-photon-3-r0/1/photon-3/Dockerfile) From 9cdc3fdace3ee18c3ae9288fe24b8a15e4a9ac06 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 12 Dec 2019 00:20:14 +0000 Subject: [PATCH 163/950] 1.4.0-debian-9-r39 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index b0338f90297e..12c6fbb6e34c 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum 265942c4 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r38" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r39" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c44697ee067c..5cd82e6a2d3b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r53` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r53/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r38`, `1`, `1.4.0`, `1.4.0-r38`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r38/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r39`, `1`, `1.4.0`, `1.4.0-r39`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r39/1/debian-9/Dockerfile) * [`1-photon-3`, `1.0.0-photon-3-r0` (1/photon-3/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.0.0-photon-3-r0/1/photon-3/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b46f35bfdaa591884190cd98ee37a4e0a673f63b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 12 Dec 2019 05:49:42 +0000 Subject: [PATCH 164/950] 1.4.0-ol-7-r54 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index e76e6ea3ea5f..2ea78dbbc8c8 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r53" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r54" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 5cd82e6a2d3b..60afe26b29f2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r53` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r53/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r54` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r54/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r39`, `1`, `1.4.0`, `1.4.0-r39`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r39/1/debian-9/Dockerfile) * [`1-photon-3`, `1.0.0-photon-3-r0` (1/photon-3/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.0.0-photon-3-r0/1/photon-3/Dockerfile) From fa85e6deb68b760eabb3b5aba913e750e6f3663e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 13 Dec 2019 05:20:57 +0000 Subject: [PATCH 165/950] 1.4.0-ol-7-r55 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 2ea78dbbc8c8..5417c779452c 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r54" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r55" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 60afe26b29f2..616f335fb123 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r54` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r54/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r55` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r55/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r39`, `1`, `1.4.0`, `1.4.0-r39`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r39/1/debian-9/Dockerfile) * [`1-photon-3`, `1.0.0-photon-3-r0` (1/photon-3/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.0.0-photon-3-r0/1/photon-3/Dockerfile) From 1dc0e4fe5a6c9fc41c91d57e954216d1a53009f7 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 13 Dec 2019 06:30:48 +0000 Subject: [PATCH 166/950] 1.4.0-debian-9-r40 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 12c6fbb6e34c..639782486a52 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum 265942c4 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r39" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r40" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 616f335fb123..4eca383b5c0e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r55` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r55/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r39`, `1`, `1.4.0`, `1.4.0-r39`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r39/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r40`, `1`, `1.4.0`, `1.4.0-r40`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r40/1/debian-9/Dockerfile) * [`1-photon-3`, `1.0.0-photon-3-r0` (1/photon-3/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.0.0-photon-3-r0/1/photon-3/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 102fb37e0f4e98d10e1d4661e37d497d2ebbf45e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 14 Dec 2019 05:20:54 +0000 Subject: [PATCH 167/950] 1.4.0-ol-7-r56 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 5417c779452c..f3497c9cc664 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r55" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r56" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4eca383b5c0e..5652104bd8a9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,9 +51,8 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r55` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r55/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r56` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r56/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r40`, `1`, `1.4.0`, `1.4.0-r40`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r40/1/debian-9/Dockerfile) -* [`1-photon-3`, `1.0.0-photon-3-r0` (1/photon-3/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.0.0-photon-3-r0/1/photon-3/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f69362ca9bd80aa4dc02294acb1008fbb072a2f0 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 14 Dec 2019 12:38:12 +0000 Subject: [PATCH 168/950] 1.4.0-debian-9-r41 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 639782486a52..34c978673c3d 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum 265942c4 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r40" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r41" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 5652104bd8a9..ff7b74eab52c 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r56` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r56/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r40`, `1`, `1.4.0`, `1.4.0-r40`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r40/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r41`, `1`, `1.4.0`, `1.4.0-r41`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r41/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b01822fe57d6ac56d356f08f5b0a912f0172bea5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 15 Dec 2019 05:01:36 +0000 Subject: [PATCH 169/950] 1.4.0-ol-7-r57 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index f3497c9cc664..465194be0ed4 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r56" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r57" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index ff7b74eab52c..bb61e0ef41bf 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r56` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r56/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r57` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r57/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r41`, `1`, `1.4.0`, `1.4.0-r41`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r41/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From fd425994174b6538061210c1940a6664890d7fe9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 15 Dec 2019 18:51:46 +0000 Subject: [PATCH 170/950] 1.4.0-debian-9-r42 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 34c978673c3d..8799bdd64f4b 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum 265942c4 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r41" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r42" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index bb61e0ef41bf..aa3d3c5f3009 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r57` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r57/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r41`, `1`, `1.4.0`, `1.4.0-r41`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r41/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r42`, `1`, `1.4.0`, `1.4.0-r42`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r42/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b5bc844910d83897f091b79fdd8faa22c77d0734 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 16 Dec 2019 05:15:14 +0000 Subject: [PATCH 171/950] 1.4.0-ol-7-r58 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 465194be0ed4..f1a7ba315137 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r57" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r58" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index aa3d3c5f3009..fda8c0714639 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r57` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r57/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r58` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r58/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r42`, `1`, `1.4.0`, `1.4.0-r42`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r42/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c31e94514f611a96276054d2a689513262289e78 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 17 Dec 2019 01:03:14 +0000 Subject: [PATCH 172/950] 1.4.0-debian-9-r43 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 8799bdd64f4b..58149911524d 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum 265942c4 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r42" \ + BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r43" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index fda8c0714639..ad313a116bf6 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.0-ol-7-r58` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r58/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r42`, `1`, `1.4.0`, `1.4.0-r42`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r42/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.0-debian-9-r43`, `1`, `1.4.0`, `1.4.0-r43`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r43/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 82235cc0f3859f014ba2cc7312c3b7c3a35f7446 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 17 Dec 2019 05:20:39 +0000 Subject: [PATCH 173/950] 1.4.0-ol-7-r59 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index f1a7ba315137..bf9b0f7abe48 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r58" \ + BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r59" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index ad313a116bf6..fa0da5f0de70 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r58` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r58/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.0-ol-7-r59` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r59/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.0-debian-9-r43`, `1`, `1.4.0`, `1.4.0-r43`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r43/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d86fe04503ed207dae554d58983cb723f321b185 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 17 Dec 2019 13:34:50 +0000 Subject: [PATCH 174/950] 1.4.2-debian-9-r0 release --- bitnami/kong/1/debian-9/Dockerfile | 4 ++-- bitnami/kong/README.md | 4 ++-- bitnami/kong/docker-compose-cluster.yml | 6 ++++++ 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 58149911524d..8a3dbabf8f05 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -9,12 +9,12 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps unzip zlib1g -RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum 265942c437e59283dcb94e0a7e911526ff3b36befd013ed82e7b6deef6f17ad6 +RUN . ./libcomponent.sh && component_unpack "kong" "1.4.2-0" --checksum 7f6b4c8c5cfea0b7caa5d3a39cce9077154f9dace0eae6f84d53bc94044792e7 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-debian-9-r43" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index fa0da5f0de70..bcf22a6cc723 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,8 +51,8 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.0-ol-7-r59` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-ol-7-r59/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.0-debian-9-r43`, `1`, `1.4.0`, `1.4.0-r43`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.0-debian-9-r43/1/debian-9/Dockerfile) +* [`1-ol-7`, `1.4.2-ol-7-r0` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r0/1/ol-7/Dockerfile) +* [`1-debian-9`, `1.4.2-debian-9-r0`, `1`, `1.4.2`, `1.4.2-r0`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r0/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). diff --git a/bitnami/kong/docker-compose-cluster.yml b/bitnami/kong/docker-compose-cluster.yml index ba447f248c2c..496703019eb1 100644 --- a/bitnami/kong/docker-compose-cluster.yml +++ b/bitnami/kong/docker-compose-cluster.yml @@ -37,6 +37,9 @@ services: - KONG_DATABASE=cassandra - KONG_CASSANDRA_CONTACT_POINTS=cassandra,cassandra2 - KONG_CASSANDRA_PASSWORD=kong + # See NGINX worker_processes setting at http://nginx.org/en/docs/ngx_core_module.html#worker_processes + # If in doubt, set to the amount of CPU cores divided by the number of Kong/Cassandra nodes in the machine + - KONG_NGINX_WORKER_PROCESSES=2 kong2: image: bitnami/kong:1 ports: @@ -46,6 +49,9 @@ services: - KONG_DATABASE=cassandra - KONG_CASSANDRA_CONTACT_POINTS=cassandra,cassandra2 - KONG_CASSANDRA_PASSWORD=kong + # See NGINX worker_processes setting at http://nginx.org/en/docs/ngx_core_module.html#worker_processes + # If in doubt, set to the amount of CPU cores divided by the number of Kong/Cassandra nodes in the machine + - KONG_NGINX_WORKER_PROCESSES=2 volumes: cassandra_data: driver: local From 87f9844b099285ffd6baebd836429e0d8f32d02d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 17 Dec 2019 13:56:34 +0000 Subject: [PATCH 175/950] 1.4.2-ol-7-r0 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index bf9b0f7abe48..f94b0758d4d2 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -9,12 +9,12 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl glibc gzip hostname keyutils-libs krb5-libs libaio-devel libcom_err libgcc libselinux libyaml nss-softokn-freebl openssl-libs pcre perl procps-ng sudo tar which zlib -RUN . ./libcomponent.sh && component_unpack "kong" "1.4.0-1" --checksum a0aee6a7a65f62a6ca132c66ac46c4d138ab439fdab5745860a7e71f14728e23 +RUN . ./libcomponent.sh && component_unpack "kong" "1.4.2-1" --checksum fe8c1905e777d2b3daebfe36a6b91584bebe40647dca389ed4f73ea2c2dd8328 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.0-ol-7-r59" \ + BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 From 9963c54c94ac52b5363e599bacb4680153a2115e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 18 Dec 2019 05:29:55 +0000 Subject: [PATCH 176/950] 1.4.2-ol-7-r1 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index f94b0758d4d2..f1bf736b5784 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.2-1" --checksum fe8c1905 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r0" \ + BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index bcf22a6cc723..47c2114e535b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.2-ol-7-r0` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r0/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.2-ol-7-r1` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r1/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.2-debian-9-r0`, `1`, `1.4.2`, `1.4.2-r0`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r0/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 53fa72e392a99b9bb8cd12b3a300b93bbcba18a6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 18 Dec 2019 19:43:07 +0000 Subject: [PATCH 177/950] 1.4.2-debian-9-r1 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 8a3dbabf8f05..64634ef117c4 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.2-0" --checksum 7f6b4c8c COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r0" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 47c2114e535b..3f091446be67 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.2-ol-7-r1` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r1/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.2-debian-9-r0`, `1`, `1.4.2`, `1.4.2-r0`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r0/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.2-debian-9-r1`, `1`, `1.4.2`, `1.4.2-r1`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r1/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 91ad7e7d8729789fe5d2ea0f80ddb3074f11e40e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 19 Dec 2019 20:53:56 +0000 Subject: [PATCH 178/950] 1.4.2-ol-7-r2 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index f1bf736b5784..3856323e7198 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.2-1" --checksum fe8c1905 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r1" \ + BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 3f091446be67..d709cf614d89 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.2-ol-7-r1` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r1/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.2-ol-7-r2` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r2/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.2-debian-9-r1`, `1`, `1.4.2`, `1.4.2-r1`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r1/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 1928662a782e2f2fb5b863fc7cda95bff96e8158 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 20 Dec 2019 01:53:41 +0000 Subject: [PATCH 179/950] 1.4.2-debian-9-r2 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 64634ef117c4..ff93b8da09b3 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.2-0" --checksum 7f6b4c8c COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r1" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d709cf614d89..41316401983e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.2-ol-7-r2` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r2/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.2-debian-9-r1`, `1`, `1.4.2`, `1.4.2-r1`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r1/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.2-debian-9-r2`, `1`, `1.4.2`, `1.4.2-r2`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r2/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f824c2b3e8c8b9686a4300fc40821acc7d5018f0 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 20 Dec 2019 05:23:03 +0000 Subject: [PATCH 180/950] 1.4.2-ol-7-r3 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 3856323e7198..1b0079460554 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -14,7 +14,7 @@ RUN . ./libcomponent.sh && component_unpack "kong" "1.4.2-1" --checksum fe8c1905 COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r2" \ + BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 41316401983e..a77d853871f4 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.2-ol-7-r2` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r2/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.2-ol-7-r3` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r3/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.2-debian-9-r2`, `1`, `1.4.2`, `1.4.2-r2`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r2/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 2b178164c78a6bf788601d19d82964029c03974c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 21 Dec 2019 05:00:48 +0000 Subject: [PATCH 181/950] 1.4.2-ol-7-r4 release --- bitnami/kong/1/ol-7/Dockerfile | 4 +++- bitnami/kong/README.md | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 1b0079460554..15dda7aede4f 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -10,11 +10,13 @@ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl glibc gzip hostname keyutils-libs krb5-libs libaio-devel libcom_err libgcc libselinux libyaml nss-softokn-freebl openssl-libs pcre perl procps-ng sudo tar which zlib RUN . ./libcomponent.sh && component_unpack "kong" "1.4.2-1" --checksum fe8c1905e777d2b3daebfe36a6b91584bebe40647dca389ed4f73ea2c2dd8328 +RUN yum upgrade -y && \ + rm -r /var/cache/yum COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r3" \ + BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a77d853871f4..12669d85482b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.2-ol-7-r3` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r3/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.2-ol-7-r4` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r4/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.2-debian-9-r2`, `1`, `1.4.2`, `1.4.2-r2`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r2/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From cad6d6b4ec22d1c018ea8d6bd508865e68761210 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 21 Dec 2019 08:00:37 +0000 Subject: [PATCH 182/950] 1.4.2-debian-9-r3 release --- bitnami/kong/1/debian-9/Dockerfile | 4 +++- bitnami/kong/README.md | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index ff93b8da09b3..917285b4aab7 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -10,11 +10,13 @@ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps unzip zlib1g RUN . ./libcomponent.sh && component_unpack "kong" "1.4.2-0" --checksum 7f6b4c8c5cfea0b7caa5d3a39cce9077154f9dace0eae6f84d53bc94044792e7 +RUN apt-get update && apt-get upgrade && \ + rm -r /var/lib/apt/lists /var/cache/apt/archives COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r2" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 12669d85482b..3f088db5725d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.2-ol-7-r4` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r4/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.2-debian-9-r2`, `1`, `1.4.2`, `1.4.2-r2`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r2/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.2-debian-9-r3`, `1`, `1.4.2`, `1.4.2-r3`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r3/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0ec56aff53b32eabcf82de2caeddfc8be6f4eb0a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 22 Dec 2019 05:29:50 +0000 Subject: [PATCH 183/950] 1.4.2-ol-7-r5 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 15dda7aede4f..434210135002 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -16,7 +16,7 @@ RUN yum upgrade -y && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r4" \ + BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 3f088db5725d..219fa1c977bb 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.2-ol-7-r4` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r4/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.2-ol-7-r5` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r5/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.2-debian-9-r3`, `1`, `1.4.2`, `1.4.2-r3`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r3/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From cfbf5acc9ce9a284a94d22c3b147fdf8c860c593 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 22 Dec 2019 14:07:11 +0000 Subject: [PATCH 184/950] 1.4.2-debian-9-r4 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 917285b4aab7..9092ec7fc6ab 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update && apt-get upgrade && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r3" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 219fa1c977bb..6d278a5797e5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.2-ol-7-r5` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r5/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.2-debian-9-r3`, `1`, `1.4.2`, `1.4.2-r3`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r3/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.2-debian-9-r4`, `1`, `1.4.2`, `1.4.2-r4`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r4/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f8f8ebea9497c9a6eb06d6d2bf5a181c7a0cb84f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 23 Dec 2019 05:29:20 +0000 Subject: [PATCH 185/950] 1.4.2-ol-7-r6 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 434210135002..7b74bb275551 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -16,7 +16,7 @@ RUN yum upgrade -y && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r5" \ + BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 6d278a5797e5..ba886eb17f78 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.2-ol-7-r5` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r5/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.2-ol-7-r6` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r6/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.2-debian-9-r4`, `1`, `1.4.2`, `1.4.2-r4`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r4/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 31d37aebeb84c5ed3ce695ddb641c2a97688d1d3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 23 Dec 2019 20:14:30 +0000 Subject: [PATCH 186/950] 1.4.2-debian-9-r5 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 9092ec7fc6ab..9fbc2decf402 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update && apt-get upgrade && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r4" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index ba886eb17f78..e1c2daf8f267 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.2-ol-7-r6` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r6/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.2-debian-9-r4`, `1`, `1.4.2`, `1.4.2-r4`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r4/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.2-debian-9-r5`, `1`, `1.4.2`, `1.4.2-r5`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r5/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 936b506e4c40a995d0717ac3ee7a36a4f8d9fce9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 24 Dec 2019 05:24:34 +0000 Subject: [PATCH 187/950] 1.4.2-ol-7-r7 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 7b74bb275551..e05fab8401c1 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -16,7 +16,7 @@ RUN yum upgrade -y && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r6" \ + BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e1c2daf8f267..07a079878768 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.2-ol-7-r6` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r6/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.2-ol-7-r7` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r7/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.2-debian-9-r5`, `1`, `1.4.2`, `1.4.2-r5`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r5/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b26f936fbc2b3a61d33140b4e09528f63640c6ec Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 25 Dec 2019 02:20:37 +0000 Subject: [PATCH 188/950] 1.4.2-debian-9-r6 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 9fbc2decf402..1ae24653fb47 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update && apt-get upgrade && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r5" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 07a079878768..72792a6f3c86 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.2-ol-7-r7` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r7/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.2-debian-9-r5`, `1`, `1.4.2`, `1.4.2-r5`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r5/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.2-debian-9-r6`, `1`, `1.4.2`, `1.4.2-r6`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r6/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From cde60b8dd2f2ed7b9ffa883140ca04d12342177b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 25 Dec 2019 05:26:51 +0000 Subject: [PATCH 189/950] 1.4.2-ol-7-r8 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index e05fab8401c1..b80fc3d6cf86 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -16,7 +16,7 @@ RUN yum upgrade -y && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r7" \ + BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 72792a6f3c86..364625090545 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.2-ol-7-r7` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r7/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.2-ol-7-r8` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r8/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.2-debian-9-r6`, `1`, `1.4.2`, `1.4.2-r6`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r6/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b3747e98e66e090b2d0e34e4a98733b13dafb918 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 26 Dec 2019 05:34:25 +0000 Subject: [PATCH 190/950] 1.4.2-ol-7-r9 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index b80fc3d6cf86..4808221de960 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -16,7 +16,7 @@ RUN yum upgrade -y && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r8" \ + BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 364625090545..bef85a2578cf 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.2-ol-7-r8` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r8/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.2-ol-7-r9` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r9/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.2-debian-9-r6`, `1`, `1.4.2`, `1.4.2-r6`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r6/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7e4fde8d7242c58f828c15e94972eb56565e3096 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 26 Dec 2019 08:27:55 +0000 Subject: [PATCH 191/950] 1.4.2-debian-9-r7 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 1ae24653fb47..1d88d2fdb882 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update && apt-get upgrade && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r6" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index bef85a2578cf..5a56f07ba339 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.2-ol-7-r9` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r9/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.2-debian-9-r6`, `1`, `1.4.2`, `1.4.2-r6`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r6/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.2-debian-9-r7`, `1`, `1.4.2`, `1.4.2-r7`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r7/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 81fc4804233b3c747378ea66c255a40991e22283 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 27 Dec 2019 05:04:46 +0000 Subject: [PATCH 192/950] 1.4.2-ol-7-r10 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 4808221de960..0bb0d464ea3d 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -16,7 +16,7 @@ RUN yum upgrade -y && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r9" \ + BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r10" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 5a56f07ba339..aeca404d7b6b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.2-ol-7-r9` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r9/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.2-ol-7-r10` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r10/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.2-debian-9-r7`, `1`, `1.4.2`, `1.4.2-r7`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r7/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 919e207be6be6de051f191d348e636eeae739f1d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 27 Dec 2019 14:39:12 +0000 Subject: [PATCH 193/950] 1.4.2-debian-9-r8 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 1d88d2fdb882..435567e75ddf 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update && apt-get upgrade && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r7" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index aeca404d7b6b..9851837ab4d0 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.2-ol-7-r10` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r10/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.2-debian-9-r7`, `1`, `1.4.2`, `1.4.2-r7`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r7/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.2-debian-9-r8`, `1`, `1.4.2`, `1.4.2-r8`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r8/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 51721e28be670bb4020641b474b09a2d035fc3ab Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 28 Dec 2019 06:57:45 +0000 Subject: [PATCH 194/950] 1.4.2-ol-7-r11 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 0bb0d464ea3d..f01b90e116c6 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -16,7 +16,7 @@ RUN yum upgrade -y && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r10" \ + BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r11" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9851837ab4d0..45020105aac3 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.2-ol-7-r10` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r10/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.2-ol-7-r11` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r11/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.2-debian-9-r8`, `1`, `1.4.2`, `1.4.2-r8`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r8/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ade7e4ce0b48c4df4f97f4d0cf4d34d4d0cbae25 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 28 Dec 2019 20:51:34 +0000 Subject: [PATCH 195/950] 1.4.2-debian-9-r9 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 435567e75ddf..803366b0c9ff 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update && apt-get upgrade && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r8" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 45020105aac3..fc5ca0ef7995 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.2-ol-7-r11` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r11/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.2-debian-9-r8`, `1`, `1.4.2`, `1.4.2-r8`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r8/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.2-debian-9-r9`, `1`, `1.4.2`, `1.4.2-r9`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r9/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 356ba536295b765b4f85a1a4cd1c94830d235679 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 29 Dec 2019 05:55:23 +0000 Subject: [PATCH 196/950] 1.4.2-ol-7-r12 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index f01b90e116c6..a536a2c014a4 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -16,7 +16,7 @@ RUN yum upgrade -y && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r11" \ + BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r12" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index fc5ca0ef7995..4d35b597cbf1 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.2-ol-7-r11` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r11/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.2-ol-7-r12` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r12/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.2-debian-9-r9`, `1`, `1.4.2`, `1.4.2-r9`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r9/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e566d1e6b902eaeb14860ef61966d926ed74b2c4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 30 Dec 2019 03:25:48 +0000 Subject: [PATCH 197/950] 1.4.2-debian-9-r10 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 803366b0c9ff..e2908201182e 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update && apt-get upgrade && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r9" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r10" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4d35b597cbf1..7a1e3e0b0797 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.2-ol-7-r12` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r12/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.2-debian-9-r9`, `1`, `1.4.2`, `1.4.2-r9`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r9/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.2-debian-9-r10`, `1`, `1.4.2`, `1.4.2-r10`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r10/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 38cc18b1dc4076d111b029b05f1ef3f4a3cb81d8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 30 Dec 2019 05:31:21 +0000 Subject: [PATCH 198/950] 1.4.2-ol-7-r13 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index a536a2c014a4..d4814248c759 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -16,7 +16,7 @@ RUN yum upgrade -y && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r12" \ + BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r13" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7a1e3e0b0797..8429d6d7255b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.2-ol-7-r12` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r12/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.2-ol-7-r13` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r13/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.2-debian-9-r10`, `1`, `1.4.2`, `1.4.2-r10`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r10/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 693395d6ec81bf357a8bbd6be0c2f6c859d2c922 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 31 Dec 2019 05:36:50 +0000 Subject: [PATCH 199/950] 1.4.2-ol-7-r14 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index d4814248c759..d34d46fef3a1 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -16,7 +16,7 @@ RUN yum upgrade -y && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r13" \ + BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r14" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 8429d6d7255b..17b2b70a3711 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.2-ol-7-r13` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r13/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.2-ol-7-r14` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r14/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.2-debian-9-r10`, `1`, `1.4.2`, `1.4.2-r10`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r10/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d4a2083531cbac274587d55ccd8bc6031952882d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 31 Dec 2019 10:12:15 +0000 Subject: [PATCH 200/950] 1.4.2-debian-9-r11 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index e2908201182e..ad4d24fb7d98 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update && apt-get upgrade && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r10" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r11" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 17b2b70a3711..f07986a6b972 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.2-ol-7-r14` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r14/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.2-debian-9-r10`, `1`, `1.4.2`, `1.4.2-r10`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r10/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.2-debian-9-r11`, `1`, `1.4.2`, `1.4.2-r11`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r11/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 672d3bd0b738398fc8b3b2359f01bd5ede228e80 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 1 Jan 2020 05:22:33 +0000 Subject: [PATCH 201/950] 1.4.2-ol-7-r15 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index d34d46fef3a1..d4b7446a68aa 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -16,7 +16,7 @@ RUN yum upgrade -y && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r14" \ + BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r15" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f07986a6b972..48b0c6db49b6 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.2-ol-7-r14` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r14/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.2-ol-7-r15` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r15/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.2-debian-9-r11`, `1`, `1.4.2`, `1.4.2-r11`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r11/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). @@ -318,7 +318,7 @@ If you encountered a problem running this container, you can file an [issue](htt # License -Copyright (c) 2019 Bitnami +Copyright (c) 2020 Bitnami Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. From 7ca87f8018443cde1c89d59e10bb26fe70d7ebd8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 1 Jan 2020 16:22:53 +0000 Subject: [PATCH 202/950] 1.4.2-debian-9-r12 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index ad4d24fb7d98..d1c3f3145651 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update && apt-get upgrade && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r11" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r12" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 48b0c6db49b6..9a2b06a206df 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.2-ol-7-r15` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r15/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.2-debian-9-r11`, `1`, `1.4.2`, `1.4.2-r11`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r11/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.2-debian-9-r12`, `1`, `1.4.2`, `1.4.2-r12`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r12/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 6f48aea5381de3c102e3696d20ce0bf317dd6168 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 2 Jan 2020 05:05:03 +0000 Subject: [PATCH 203/950] 1.4.2-ol-7-r16 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index d4b7446a68aa..b9fd6e296db6 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -16,7 +16,7 @@ RUN yum upgrade -y && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r15" \ + BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r16" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9a2b06a206df..ad26ed7cf622 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.2-ol-7-r15` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r15/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.2-ol-7-r16` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r16/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.2-debian-9-r12`, `1`, `1.4.2`, `1.4.2-r12`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r12/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From eb6bff836ed8ccc885c10e3dabf60b8663383e3c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 2 Jan 2020 22:33:23 +0000 Subject: [PATCH 204/950] 1.4.2-debian-9-r13 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index d1c3f3145651..e35d1002e61e 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update && apt-get upgrade && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r12" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r13" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index ad26ed7cf622..929acc4baeeb 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.2-ol-7-r16` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r16/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.2-debian-9-r12`, `1`, `1.4.2`, `1.4.2-r12`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r12/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.2-debian-9-r13`, `1`, `1.4.2`, `1.4.2-r13`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r13/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 38530826f8c8c9a821cae9e8ac5f3b2cb8a4ea10 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 3 Jan 2020 05:28:55 +0000 Subject: [PATCH 205/950] 1.4.2-ol-7-r17 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index b9fd6e296db6..40ca06f3b813 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -16,7 +16,7 @@ RUN yum upgrade -y && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r16" \ + BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r17" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 929acc4baeeb..9a3f265fca7f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.2-ol-7-r16` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r16/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.2-ol-7-r17` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r17/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.2-debian-9-r13`, `1`, `1.4.2`, `1.4.2-r13`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r13/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 888a988a936e03b009d0e7b6dbf83499f0163227 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 4 Jan 2020 04:48:16 +0000 Subject: [PATCH 206/950] 1.4.2-debian-9-r14 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index e35d1002e61e..43648898aee6 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update && apt-get upgrade && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r13" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r14" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9a3f265fca7f..f5c3723b4287 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.2-ol-7-r17` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r17/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.2-debian-9-r13`, `1`, `1.4.2`, `1.4.2-r13`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r13/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.2-debian-9-r14`, `1`, `1.4.2`, `1.4.2-r14`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r14/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 78963187162e7994d0719d8867f30d7ec8d924fc Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 4 Jan 2020 06:49:15 +0000 Subject: [PATCH 207/950] 1.4.2-ol-7-r18 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 40ca06f3b813..bc25347636e9 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -16,7 +16,7 @@ RUN yum upgrade -y && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r17" \ + BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r18" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f5c3723b4287..08101cb1f4dd 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.2-ol-7-r17` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r17/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.2-ol-7-r18` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r18/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.2-debian-9-r14`, `1`, `1.4.2`, `1.4.2-r14`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r14/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From a0b5b716cc56a740945dcd35adc973de6de4f15a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 5 Jan 2020 05:59:17 +0000 Subject: [PATCH 208/950] 1.4.2-ol-7-r19 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index bc25347636e9..f8df89174535 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -16,7 +16,7 @@ RUN yum upgrade -y && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r18" \ + BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r19" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 08101cb1f4dd..8692f363c697 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.2-ol-7-r18` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r18/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.2-ol-7-r19` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r19/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.2-debian-9-r14`, `1`, `1.4.2`, `1.4.2-r14`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r14/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d1ade0aa6830f622a71c1cb96ee1d0f289ceb3ef Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 5 Jan 2020 12:46:23 +0000 Subject: [PATCH 209/950] 1.4.2-debian-9-r15 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 43648898aee6..17dfdb426e2d 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update && apt-get upgrade && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r14" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r15" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 8692f363c697..937a26ee7178 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.2-ol-7-r19` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r19/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.2-debian-9-r14`, `1`, `1.4.2`, `1.4.2-r14`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r14/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.2-debian-9-r15`, `1`, `1.4.2`, `1.4.2-r15`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r15/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e791171e9f904572ac9c4e328daaac798222950f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 6 Jan 2020 06:16:41 +0000 Subject: [PATCH 210/950] 1.4.2-ol-7-r20 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index f8df89174535..2f6608ff8d2a 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -16,7 +16,7 @@ RUN yum upgrade -y && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r19" \ + BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r20" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 937a26ee7178..f8d373028709 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.2-ol-7-r19` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r19/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.2-ol-7-r20` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r20/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.2-debian-9-r15`, `1`, `1.4.2`, `1.4.2-r15`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r15/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5a09e016d9da1e362743803e4dd628d055750c1c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 7 Jan 2020 10:49:48 +0000 Subject: [PATCH 211/950] 1.4.2-debian-9-r16 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 17dfdb426e2d..50f1ad7d6578 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update && apt-get upgrade && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r15" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r16" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f8d373028709..a92f29f4b667 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.2-ol-7-r20` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r20/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.2-debian-9-r15`, `1`, `1.4.2`, `1.4.2-r15`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r15/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.2-debian-9-r16`, `1`, `1.4.2`, `1.4.2-r16`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r16/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From eefe786ad53ed29a182668cfd06f3a0ccb52cae5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 8 Jan 2020 00:06:41 +0000 Subject: [PATCH 212/950] 1.4.2-ol-7-r21 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 2f6608ff8d2a..e91897a0f0fc 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -16,7 +16,7 @@ RUN yum upgrade -y && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r20" \ + BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r21" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a92f29f4b667..eabe1b68e8ad 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.2-ol-7-r20` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r20/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.2-ol-7-r21` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r21/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.2-debian-9-r16`, `1`, `1.4.2`, `1.4.2-r16`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r16/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b18fed2b026e7e1420abff9ac936ec3b600ae4b6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 8 Jan 2020 02:27:21 +0000 Subject: [PATCH 213/950] 1.4.2-ol-7-r22 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index e91897a0f0fc..a104d897c1cc 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -16,7 +16,7 @@ RUN yum upgrade -y && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r21" \ + BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r22" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index eabe1b68e8ad..dd3b6ba8f124 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.2-ol-7-r21` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r21/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.2-ol-7-r22` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r22/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.2-debian-9-r16`, `1`, `1.4.2`, `1.4.2-r16`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r16/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 70bfcb0105e6ea0252f8867a8b12321e8ad6040b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 8 Jan 2020 17:01:29 +0000 Subject: [PATCH 214/950] 1.4.2-debian-9-r17 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 50f1ad7d6578..1fe13697a3b9 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update && apt-get upgrade && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r16" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r17" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index dd3b6ba8f124..fa98965cb03e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.2-ol-7-r22` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r22/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.2-debian-9-r16`, `1`, `1.4.2`, `1.4.2-r16`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r16/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.2-debian-9-r17`, `1`, `1.4.2`, `1.4.2-r17`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r17/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 4ac1ba024094324a908f7abd77e683de8c9de873 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 9 Jan 2020 03:34:15 +0000 Subject: [PATCH 215/950] 1.4.2-ol-7-r23 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index a104d897c1cc..2cec69f8d7c2 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -16,7 +16,7 @@ RUN yum upgrade -y && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r22" \ + BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r23" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index fa98965cb03e..f3bb83bc7460 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.2-ol-7-r22` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r22/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.2-ol-7-r23` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r23/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.2-debian-9-r17`, `1`, `1.4.2`, `1.4.2-r17`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r17/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From fecb69038da7f40a2ed8d37da1a1ed7a17813731 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 10 Jan 2020 07:51:43 +0000 Subject: [PATCH 216/950] 1.4.2-debian-9-r18 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 1fe13697a3b9..e403841189c7 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update && apt-get upgrade && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r17" \ + BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r18" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f3bb83bc7460..15c1907bb7cd 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.2-ol-7-r23` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r23/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.2-debian-9-r17`, `1`, `1.4.2`, `1.4.2-r17`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r17/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.2-debian-9-r18`, `1`, `1.4.2`, `1.4.2-r18`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r18/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c8cbff418cdef36cd4128e64031dc7b9d80f92e4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 10 Jan 2020 16:10:35 +0000 Subject: [PATCH 217/950] 1.4.3-debian-9-r0 release --- bitnami/kong/1/debian-9/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index e403841189c7..bb3dc074ff5e 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -9,14 +9,14 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps unzip zlib1g -RUN . ./libcomponent.sh && component_unpack "kong" "1.4.2-0" --checksum 7f6b4c8c5cfea0b7caa5d3a39cce9077154f9dace0eae6f84d53bc94044792e7 +RUN . ./libcomponent.sh && component_unpack "kong" "1.4.3-0" --checksum 99141f055fd57fd579604d381f628804b4de81315a9a329f8f2c5aee2686fe98 RUN apt-get update && apt-get upgrade && \ rm -r /var/lib/apt/lists /var/cache/apt/archives COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-debian-9-r18" \ + BITNAMI_IMAGE_VERSION="1.4.3-debian-9-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 15c1907bb7cd..a4d558e80a4d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,8 +51,8 @@ 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/containers/how-to/understand-rolling-tags-containers/). +* [`1-debian-9`, `1.4.3-debian-9-r0`, `1`, `1.4.3`, `1.4.3-r0`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r0/1/debian-9/Dockerfile) * [`1-ol-7`, `1.4.2-ol-7-r23` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r23/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.2-debian-9-r18`, `1`, `1.4.2`, `1.4.2-r18`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-debian-9-r18/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 60121fe08a399312b9af438ad955a12e948c797d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 10 Jan 2020 17:32:50 +0000 Subject: [PATCH 218/950] 1.4.3-ol-7-r0 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 2cec69f8d7c2..6a4965bd7764 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -9,14 +9,14 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl glibc gzip hostname keyutils-libs krb5-libs libaio-devel libcom_err libgcc libselinux libyaml nss-softokn-freebl openssl-libs pcre perl procps-ng sudo tar which zlib -RUN . ./libcomponent.sh && component_unpack "kong" "1.4.2-1" --checksum fe8c1905e777d2b3daebfe36a6b91584bebe40647dca389ed4f73ea2c2dd8328 +RUN . ./libcomponent.sh && component_unpack "kong" "1.4.3-0" --checksum 28ccf9a19abbcd80e0cd8b4280f1ee0cc7f0bc6b1e3be3defe8d2c04624ab1d2 RUN yum upgrade -y && \ rm -r /var/cache/yum COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.2-ol-7-r23" \ + BITNAMI_IMAGE_VERSION="1.4.3-ol-7-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a4d558e80a4d..0b9dd029f8b5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,8 +51,8 @@ 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/containers/how-to/understand-rolling-tags-containers/). +* [`1-ol-7`, `1.4.3-ol-7-r0` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r0/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.3-debian-9-r0`, `1`, `1.4.3`, `1.4.3-r0`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r0/1/debian-9/Dockerfile) -* [`1-ol-7`, `1.4.2-ol-7-r23` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.2-ol-7-r23/1/ol-7/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8de2b2c714976e831e00fdebd23460e8acd59d04 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 11 Jan 2020 06:53:46 +0000 Subject: [PATCH 219/950] 1.4.3-ol-7-r1 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 6a4965bd7764..a740e3a97226 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -16,7 +16,7 @@ RUN yum upgrade -y && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.3-ol-7-r0" \ + BITNAMI_IMAGE_VERSION="1.4.3-ol-7-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0b9dd029f8b5..3ff9d791b9d1 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.3-ol-7-r0` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r0/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.3-ol-7-r1` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r1/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.3-debian-9-r0`, `1`, `1.4.3`, `1.4.3-r0`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r0/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e7575401c826a6c288c45ef9da459e45ed14492a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 11 Jan 2020 22:19:22 +0000 Subject: [PATCH 220/950] 1.4.3-debian-9-r1 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index bb3dc074ff5e..533c6bc5b53d 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update && apt-get upgrade && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.3-debian-9-r0" \ + BITNAMI_IMAGE_VERSION="1.4.3-debian-9-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 3ff9d791b9d1..32b809aaaf73 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.3-ol-7-r1` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r1/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.3-debian-9-r0`, `1`, `1.4.3`, `1.4.3-r0`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r0/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.3-debian-9-r1`, `1`, `1.4.3`, `1.4.3-r1`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r1/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9570fb16d10b773f0c209270877c9aa3527fc2ce Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 12 Jan 2020 05:02:49 +0000 Subject: [PATCH 221/950] 1.4.3-ol-7-r2 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index a740e3a97226..e0ba8c9a97ab 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -16,7 +16,7 @@ RUN yum upgrade -y && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.3-ol-7-r1" \ + BITNAMI_IMAGE_VERSION="1.4.3-ol-7-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 32b809aaaf73..6fd27dee8b8d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.3-ol-7-r1` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r1/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.3-ol-7-r2` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r2/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.3-debian-9-r1`, `1`, `1.4.3`, `1.4.3-r1`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r1/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5981a8631fb89259c12e7463e4421c29fef6bb03 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 13 Jan 2020 04:48:27 +0000 Subject: [PATCH 222/950] 1.4.3-debian-9-r2 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 533c6bc5b53d..2c37e810bd2f 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update && apt-get upgrade && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.3-debian-9-r1" \ + BITNAMI_IMAGE_VERSION="1.4.3-debian-9-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 6fd27dee8b8d..050b0372ba47 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.3-ol-7-r2` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r2/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.3-debian-9-r1`, `1`, `1.4.3`, `1.4.3-r1`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r1/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.3-debian-9-r2`, `1`, `1.4.3`, `1.4.3-r2`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r2/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 4adc2d7543ad0ab414a5ea7bab44df3ca9d89731 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 13 Jan 2020 07:11:50 +0000 Subject: [PATCH 223/950] 1.4.3-ol-7-r3 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index e0ba8c9a97ab..6650b6e6ba85 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -16,7 +16,7 @@ RUN yum upgrade -y && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.3-ol-7-r2" \ + BITNAMI_IMAGE_VERSION="1.4.3-ol-7-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 050b0372ba47..a239f0ee9ed8 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.3-ol-7-r2` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r2/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.3-ol-7-r3` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r3/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.3-debian-9-r2`, `1`, `1.4.3`, `1.4.3-r2`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r2/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 3bf77da91e3329482bad8865a51a7b42a8ac7d21 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 14 Jan 2020 11:33:12 +0000 Subject: [PATCH 224/950] 1.4.3-debian-9-r3 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 2c37e810bd2f..30c8f942c1bb 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update && apt-get upgrade && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.3-debian-9-r2" \ + BITNAMI_IMAGE_VERSION="1.4.3-debian-9-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a239f0ee9ed8..97d0e3c41ab7 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.3-ol-7-r3` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r3/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.3-debian-9-r2`, `1`, `1.4.3`, `1.4.3-r2`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r2/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.3-debian-9-r3`, `1`, `1.4.3`, `1.4.3-r3`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r3/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5551e75364a917406900b0d0a870011a5bdb0f6e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 14 Jan 2020 14:04:04 +0000 Subject: [PATCH 225/950] 1.4.3-ol-7-r4 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 6650b6e6ba85..4e723fcfd166 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -16,7 +16,7 @@ RUN yum upgrade -y && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.3-ol-7-r3" \ + BITNAMI_IMAGE_VERSION="1.4.3-ol-7-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 97d0e3c41ab7..c764f1b03a05 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.3-ol-7-r3` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r3/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.3-ol-7-r4` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r4/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.3-debian-9-r3`, `1`, `1.4.3`, `1.4.3-r3`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r3/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From fcfc390b11dd8314918ab8ea0283a9aa2bf84bef Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 14 Jan 2020 21:16:19 +0000 Subject: [PATCH 226/950] 1.4.3-debian-9-r4 release --- bitnami/kong/1/debian-9/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 30c8f942c1bb..d90378941a57 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -8,7 +8,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies -RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps unzip zlib1g +RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps sudo unzip zlib1g RUN . ./libcomponent.sh && component_unpack "kong" "1.4.3-0" --checksum 99141f055fd57fd579604d381f628804b4de81315a9a329f8f2c5aee2686fe98 RUN apt-get update && apt-get upgrade && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -16,7 +16,7 @@ RUN apt-get update && apt-get upgrade && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.3-debian-9-r3" \ + BITNAMI_IMAGE_VERSION="1.4.3-debian-9-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c764f1b03a05..8fec250e7043 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.3-ol-7-r4` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r4/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.3-debian-9-r3`, `1`, `1.4.3`, `1.4.3-r3`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r3/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.3-debian-9-r4`, `1`, `1.4.3`, `1.4.3-r4`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r4/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 38fdffd3305406a8a41ed3f8445e8c2bc971132f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 14 Jan 2020 21:50:46 +0000 Subject: [PATCH 227/950] 1.4.3-ol-7-r5 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 4e723fcfd166..057c0d7dbbdc 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -16,7 +16,7 @@ RUN yum upgrade -y && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.3-ol-7-r4" \ + BITNAMI_IMAGE_VERSION="1.4.3-ol-7-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 8fec250e7043..7d175821d283 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.3-ol-7-r4` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r4/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.3-ol-7-r5` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r5/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.3-debian-9-r4`, `1`, `1.4.3`, `1.4.3-r4`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r4/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From bd3c35b3e3e5d4899ece8694b8fde459553d7979 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 16 Jan 2020 03:24:54 +0000 Subject: [PATCH 228/950] 1.4.3-debian-9-r5 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index d90378941a57..8df1ce6f2342 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update && apt-get upgrade && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.3-debian-9-r4" \ + BITNAMI_IMAGE_VERSION="1.4.3-debian-9-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7d175821d283..b815e5a788b5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.3-ol-7-r5` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r5/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.3-debian-9-r4`, `1`, `1.4.3`, `1.4.3-r4`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r4/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.3-debian-9-r5`, `1`, `1.4.3`, `1.4.3-r5`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r5/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 028fa6523b14457d6a5cad54e1398f01b8d13c07 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 16 Jan 2020 03:58:15 +0000 Subject: [PATCH 229/950] 1.4.3-ol-7-r6 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 057c0d7dbbdc..51aee2a0c6f3 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -16,7 +16,7 @@ RUN yum upgrade -y && \ COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.3-ol-7-r5" \ + BITNAMI_IMAGE_VERSION="1.4.3-ol-7-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b815e5a788b5..4ae1d3c7332b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.3-ol-7-r5` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r5/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.3-ol-7-r6` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r6/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.3-debian-9-r5`, `1`, `1.4.3`, `1.4.3-r5`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r5/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9acab6b368113e313a2c643e40efb10b5cbb1ecb Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 17 Jan 2020 13:21:10 +0000 Subject: [PATCH 230/950] 1.4.3-debian-9-r6 release --- bitnami/kong/1/debian-9/Dockerfile | 3 ++- .../kong/1/debian-9/prebuildfs/build/install-gosu.sh | 10 ++++++++++ bitnami/kong/README.md | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) create mode 100755 bitnami/kong/1/debian-9/prebuildfs/build/install-gosu.sh diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 8df1ce6f2342..40c0d4adadb2 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -12,11 +12,12 @@ RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libya RUN . ./libcomponent.sh && component_unpack "kong" "1.4.3-0" --checksum 99141f055fd57fd579604d381f628804b4de81315a9a329f8f2c5aee2686fe98 RUN apt-get update && apt-get upgrade && \ rm -r /var/lib/apt/lists /var/cache/apt/archives +RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.3-debian-9-r5" \ + BITNAMI_IMAGE_VERSION="1.4.3-debian-9-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/1/debian-9/prebuildfs/build/install-gosu.sh b/bitnami/kong/1/debian-9/prebuildfs/build/install-gosu.sh new file mode 100755 index 000000000000..1756700daa89 --- /dev/null +++ b/bitnami/kong/1/debian-9/prebuildfs/build/install-gosu.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +VERSION="1.11" +SHA256="0b843df6d86e270c5b0f5cbd3c326a04e18f4b7f9b8457fa497b0454c4b138d7" + +curl --silent -L "https://github.com/tianon/gosu/releases/download/${VERSION}/gosu-amd64" > "/usr/local/bin/gosu" +echo "$SHA256" "/usr/local/bin/gosu" | sha256sum --check +chmod u+x "/usr/local/bin/gosu" +mkdir -p "/opt/bitnami/licenses" +curl --silent -L "https://raw.githubusercontent.com/tianon/gosu/master/LICENSE" > "/opt/bitnami/licenses/gosu-${VERSION}.txt" diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4ae1d3c7332b..886a4e11ce52 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.3-ol-7-r6` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r6/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.3-debian-9-r5`, `1`, `1.4.3`, `1.4.3-r5`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r5/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.3-debian-9-r6`, `1`, `1.4.3`, `1.4.3-r6`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r6/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 96525b721a10cf686a6de466b71e196c920fef94 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 17 Jan 2020 13:27:55 +0000 Subject: [PATCH 231/950] 1.4.3-ol-7-r7 release --- bitnami/kong/1/ol-7/Dockerfile | 3 ++- bitnami/kong/1/ol-7/prebuildfs/build/install-gosu.sh | 10 ++++++++++ bitnami/kong/README.md | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) create mode 100755 bitnami/kong/1/ol-7/prebuildfs/build/install-gosu.sh diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 51aee2a0c6f3..699b864897a7 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -12,11 +12,12 @@ RUN install_packages ca-certificates curl glibc gzip hostname keyutils-libs krb5 RUN . ./libcomponent.sh && component_unpack "kong" "1.4.3-0" --checksum 28ccf9a19abbcd80e0cd8b4280f1ee0cc7f0bc6b1e3be3defe8d2c04624ab1d2 RUN yum upgrade -y && \ rm -r /var/cache/yum +RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.3-ol-7-r6" \ + BITNAMI_IMAGE_VERSION="1.4.3-ol-7-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/1/ol-7/prebuildfs/build/install-gosu.sh b/bitnami/kong/1/ol-7/prebuildfs/build/install-gosu.sh new file mode 100755 index 000000000000..1756700daa89 --- /dev/null +++ b/bitnami/kong/1/ol-7/prebuildfs/build/install-gosu.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +VERSION="1.11" +SHA256="0b843df6d86e270c5b0f5cbd3c326a04e18f4b7f9b8457fa497b0454c4b138d7" + +curl --silent -L "https://github.com/tianon/gosu/releases/download/${VERSION}/gosu-amd64" > "/usr/local/bin/gosu" +echo "$SHA256" "/usr/local/bin/gosu" | sha256sum --check +chmod u+x "/usr/local/bin/gosu" +mkdir -p "/opt/bitnami/licenses" +curl --silent -L "https://raw.githubusercontent.com/tianon/gosu/master/LICENSE" > "/opt/bitnami/licenses/gosu-${VERSION}.txt" diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 886a4e11ce52..48686eed5b6a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.3-ol-7-r6` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r6/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.3-ol-7-r7` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r7/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.3-debian-9-r6`, `1`, `1.4.3`, `1.4.3-r6`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r6/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 36037e1f462bcc77fdb05430460d6d03e2dcd6ec Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 18 Jan 2020 19:28:51 +0000 Subject: [PATCH 232/950] 1.4.3-debian-9-r7 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index 40c0d4adadb2..e1c425e54b69 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.3-debian-9-r6" \ + BITNAMI_IMAGE_VERSION="1.4.3-debian-9-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 48686eed5b6a..3648cea9bc97 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.3-ol-7-r7` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r7/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.3-debian-9-r6`, `1`, `1.4.3`, `1.4.3-r6`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r6/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.3-debian-9-r7`, `1`, `1.4.3`, `1.4.3-r7`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r7/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 20fe6258b73421322844ca87b76f068b7934366b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 18 Jan 2020 19:36:17 +0000 Subject: [PATCH 233/950] 1.4.3-ol-7-r8 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 699b864897a7..3399bf194526 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.3-ol-7-r7" \ + BITNAMI_IMAGE_VERSION="1.4.3-ol-7-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 3648cea9bc97..ed00f7629053 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.3-ol-7-r7` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r7/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.3-ol-7-r8` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r8/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.3-debian-9-r7`, `1`, `1.4.3`, `1.4.3-r7`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r7/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0e44290e613a597c87dfbc4a98ffa6c51a43e4ae Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 20 Jan 2020 01:37:02 +0000 Subject: [PATCH 234/950] 1.4.3-debian-9-r8 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index e1c425e54b69..aab48e63d59e 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.3-debian-9-r7" \ + BITNAMI_IMAGE_VERSION="1.4.3-debian-9-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index ed00f7629053..c6b14f8bc3e6 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.4.3-ol-7-r8` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r8/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.3-debian-9-r7`, `1`, `1.4.3`, `1.4.3-r7`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r7/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.4.3-debian-9-r8`, `1`, `1.4.3`, `1.4.3-r8`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r8/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e2a61082a85bfddc696c927b060e204b64803eec Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 20 Jan 2020 01:45:18 +0000 Subject: [PATCH 235/950] 1.4.3-ol-7-r9 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 3399bf194526..962c9e487e5a 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.3-ol-7-r8" \ + BITNAMI_IMAGE_VERSION="1.4.3-ol-7-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c6b14f8bc3e6..004ba7ab0396 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.3-ol-7-r8` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r8/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.4.3-ol-7-r9` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r9/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.3-debian-9-r8`, `1`, `1.4.3`, `1.4.3-r8`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r8/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 975da8cc708ed530c851e21b078b1440f9f5fc48 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 21 Jan 2020 01:52:13 +0000 Subject: [PATCH 236/950] 1.5.0-ol-7-r0 release --- bitnami/kong/1/ol-7/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 962c9e487e5a..6689f46b3a79 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl glibc gzip hostname keyutils-libs krb5-libs libaio-devel libcom_err libgcc libselinux libyaml nss-softokn-freebl openssl-libs pcre perl procps-ng sudo tar which zlib -RUN . ./libcomponent.sh && component_unpack "kong" "1.4.3-0" --checksum 28ccf9a19abbcd80e0cd8b4280f1ee0cc7f0bc6b1e3be3defe8d2c04624ab1d2 +RUN . ./libcomponent.sh && component_unpack "kong" "1.5.0-0" --checksum 3397f0d8f69cd03d5e3eeaf46f8b5ff84b18f77e2afb9e482e5e656e9ca27f2e RUN yum upgrade -y && \ rm -r /var/cache/yum RUN /build/install-gosu.sh @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.3-ol-7-r9" \ + BITNAMI_IMAGE_VERSION="1.5.0-ol-7-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 004ba7ab0396..3d5f6970dea6 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.4.3-ol-7-r9` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-ol-7-r9/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.5.0-ol-7-r0` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r0/1/ol-7/Dockerfile) * [`1-debian-9`, `1.4.3-debian-9-r8`, `1`, `1.4.3`, `1.4.3-r8`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r8/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7ff8cc201d21240ca75ac0d53eca0dbb080147dd Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 21 Jan 2020 02:04:52 +0000 Subject: [PATCH 237/950] 1.5.0-debian-9-r0 release --- bitnami/kong/1/debian-9/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index aab48e63d59e..da7df2e0a110 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps sudo unzip zlib1g -RUN . ./libcomponent.sh && component_unpack "kong" "1.4.3-0" --checksum 99141f055fd57fd579604d381f628804b4de81315a9a329f8f2c5aee2686fe98 +RUN . ./libcomponent.sh && component_unpack "kong" "1.5.0-0" --checksum bd57fffcd78f4aaa3390f195e8ff1ec0856590cee4fc0a484604d2c3efe28e1d RUN apt-get update && apt-get upgrade && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN /build/install-gosu.sh @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.4.3-debian-9-r8" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-9-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 3d5f6970dea6..74f1026c341f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.5.0-ol-7-r0` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r0/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.4.3-debian-9-r8`, `1`, `1.4.3`, `1.4.3-r8`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.4.3-debian-9-r8/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.5.0-debian-9-r0`, `1`, `1.5.0`, `1.5.0-r0`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-9-r0/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b9096bad5a4ccea89f6c36b6d664540fff064bfe Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 22 Jan 2020 08:11:13 +0000 Subject: [PATCH 238/950] 1.5.0-debian-9-r1 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index da7df2e0a110..eaa904c55d4e 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-9-r0" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-9-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 74f1026c341f..6ae401b1b175 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.5.0-ol-7-r0` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r0/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.5.0-debian-9-r0`, `1`, `1.5.0`, `1.5.0-r0`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-9-r0/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.5.0-debian-9-r1`, `1`, `1.5.0`, `1.5.0-r1`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-9-r1/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7ee7f041ea2af75cbbcd051bbeb0fbdb3cdf5f85 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 22 Jan 2020 09:49:49 +0000 Subject: [PATCH 239/950] 1.5.0-ol-7-r1 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 6689f46b3a79..d4c600b548e2 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.5.0-ol-7-r0" \ + BITNAMI_IMAGE_VERSION="1.5.0-ol-7-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 6ae401b1b175..b3a24f483b73 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.5.0-ol-7-r0` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r0/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.5.0-ol-7-r1` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r1/1/ol-7/Dockerfile) * [`1-debian-9`, `1.5.0-debian-9-r1`, `1`, `1.5.0`, `1.5.0-r1`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-9-r1/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8eec60a974aae5807044004408c46737b4a66f26 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 23 Jan 2020 14:51:00 +0000 Subject: [PATCH 240/950] 1.5.0-debian-9-r2 release --- bitnami/kong/1/debian-9/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile index eaa904c55d4e..faecd496830e 100644 --- a/bitnami/kong/1/debian-9/Dockerfile +++ b/bitnami/kong/1/debian-9/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-9-r1" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-9-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b3a24f483b73..f479ffab7a84 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.5.0-ol-7-r1` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r1/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.5.0-debian-9-r1`, `1`, `1.5.0`, `1.5.0-r1`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-9-r1/1/debian-9/Dockerfile) +* [`1-debian-9`, `1.5.0-debian-9-r2`, `1`, `1.5.0`, `1.5.0-r2`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-9-r2/1/debian-9/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 66b7887c8e4a8371cebdad32c73e671fefc9e5e1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 23 Jan 2020 19:16:36 +0000 Subject: [PATCH 241/950] 1.5.0-debian-10-r0 release --- bitnami/kong/1/debian-10/Dockerfile | 27 ++ bitnami/kong/1/debian-10/docker-compose.yml | 22 ++ .../prebuildfs/build/install-gosu.sh | 10 + .../kong/1/debian-10/prebuildfs/libbitnami.sh | 50 ++++ .../1/debian-10/prebuildfs/libcomponent.sh | 64 +++++ .../kong/1/debian-10/prebuildfs/libfile.sh | 22 ++ bitnami/kong/1/debian-10/prebuildfs/libfs.sh | 129 +++++++++ bitnami/kong/1/debian-10/prebuildfs/liblog.sh | 83 ++++++ bitnami/kong/1/debian-10/prebuildfs/libnet.sh | 44 +++ bitnami/kong/1/debian-10/prebuildfs/libos.sh | 132 +++++++++ .../kong/1/debian-10/prebuildfs/libservice.sh | 57 ++++ .../1/debian-10/prebuildfs/libvalidations.sh | 246 +++++++++++++++++ .../kong/1/debian-10/prebuildfs/libversion.sh | 47 ++++ .../debian-10/prebuildfs/opt/bitnami/.exists | 0 bitnami/kong/1/debian-10/rootfs/entrypoint.sh | 26 ++ bitnami/kong/1/debian-10/rootfs/libkong.sh | 251 ++++++++++++++++++ .../1/debian-10/rootfs/licenses/licenses.txt | 3 + bitnami/kong/1/debian-10/rootfs/postunpack.sh | 70 +++++ bitnami/kong/1/debian-10/rootfs/run.sh | 20 ++ bitnami/kong/1/debian-10/rootfs/setup.sh | 22 ++ bitnami/kong/README.md | 6 +- 21 files changed, 1328 insertions(+), 3 deletions(-) create mode 100644 bitnami/kong/1/debian-10/Dockerfile create mode 100644 bitnami/kong/1/debian-10/docker-compose.yml create mode 100755 bitnami/kong/1/debian-10/prebuildfs/build/install-gosu.sh create mode 100644 bitnami/kong/1/debian-10/prebuildfs/libbitnami.sh create mode 100644 bitnami/kong/1/debian-10/prebuildfs/libcomponent.sh create mode 100644 bitnami/kong/1/debian-10/prebuildfs/libfile.sh create mode 100644 bitnami/kong/1/debian-10/prebuildfs/libfs.sh create mode 100644 bitnami/kong/1/debian-10/prebuildfs/liblog.sh create mode 100644 bitnami/kong/1/debian-10/prebuildfs/libnet.sh create mode 100644 bitnami/kong/1/debian-10/prebuildfs/libos.sh create mode 100644 bitnami/kong/1/debian-10/prebuildfs/libservice.sh create mode 100644 bitnami/kong/1/debian-10/prebuildfs/libvalidations.sh create mode 100644 bitnami/kong/1/debian-10/prebuildfs/libversion.sh create mode 100644 bitnami/kong/1/debian-10/prebuildfs/opt/bitnami/.exists create mode 100755 bitnami/kong/1/debian-10/rootfs/entrypoint.sh create mode 100644 bitnami/kong/1/debian-10/rootfs/libkong.sh create mode 100644 bitnami/kong/1/debian-10/rootfs/licenses/licenses.txt create mode 100755 bitnami/kong/1/debian-10/rootfs/postunpack.sh create mode 100755 bitnami/kong/1/debian-10/rootfs/run.sh create mode 100755 bitnami/kong/1/debian-10/rootfs/setup.sh diff --git a/bitnami/kong/1/debian-10/Dockerfile b/bitnami/kong/1/debian-10/Dockerfile new file mode 100644 index 000000000000..1e9cf03ad792 --- /dev/null +++ b/bitnami/kong/1/debian-10/Dockerfile @@ -0,0 +1,27 @@ +FROM bitnami/minideb:buster +LABEL maintainer "Bitnami " + +ENV HOME="/" \ + OS_ARCH="amd64" \ + OS_FLAVOUR="debian-10" \ + OS_NAME="linux" + +COPY prebuildfs / +# Install required system packages and dependencies +RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps sudo unzip zlib1g +RUN . ./libcomponent.sh && component_unpack "kong" "1.5.0-0" --checksum b1964ab6733c515095693a37ab2240390cd5e6e25fe5ef5b1a8702e2dad0bc6d +RUN apt-get update && apt-get upgrade && \ + rm -r /var/lib/apt/lists /var/cache/apt/archives +RUN /build/install-gosu.sh + +COPY rootfs / +RUN /postunpack.sh +ENV BITNAMI_APP_NAME="kong" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r0" \ + PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" + +EXPOSE 8000 8001 8443 8444 + +USER 1001 +ENTRYPOINT [ "/entrypoint.sh" ] +CMD [ "/run.sh" ] diff --git a/bitnami/kong/1/debian-10/docker-compose.yml b/bitnami/kong/1/debian-10/docker-compose.yml new file mode 100644 index 000000000000..acc2801ac7c0 --- /dev/null +++ b/bitnami/kong/1/debian-10/docker-compose.yml @@ -0,0 +1,22 @@ +version: '2' +services: + postgresql: + image: bitnami/postgresql:11 + volumes: + - postgresql_data:/bitnami/postgresql + environment: + - POSTGRESQL_USERNAME=kong + - POSTGRESQL_PASSWORD=bitnami + - POSTGRESQL_DATABASE=kong + kong: + image: bitnami/kong:1 + ports: + - 8000:8000 + - 8443:8443 + environment: + - KONG_MIGRATE=yes + - KONG_PG_HOST=postgresql + - KONG_PG_PASSWORD=bitnami +volumes: + postgresql_data: + driver: local diff --git a/bitnami/kong/1/debian-10/prebuildfs/build/install-gosu.sh b/bitnami/kong/1/debian-10/prebuildfs/build/install-gosu.sh new file mode 100755 index 000000000000..1756700daa89 --- /dev/null +++ b/bitnami/kong/1/debian-10/prebuildfs/build/install-gosu.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +VERSION="1.11" +SHA256="0b843df6d86e270c5b0f5cbd3c326a04e18f4b7f9b8457fa497b0454c4b138d7" + +curl --silent -L "https://github.com/tianon/gosu/releases/download/${VERSION}/gosu-amd64" > "/usr/local/bin/gosu" +echo "$SHA256" "/usr/local/bin/gosu" | sha256sum --check +chmod u+x "/usr/local/bin/gosu" +mkdir -p "/opt/bitnami/licenses" +curl --silent -L "https://raw.githubusercontent.com/tianon/gosu/master/LICENSE" > "/opt/bitnami/licenses/gosu-${VERSION}.txt" diff --git a/bitnami/kong/1/debian-10/prebuildfs/libbitnami.sh b/bitnami/kong/1/debian-10/prebuildfs/libbitnami.sh new file mode 100644 index 000000000000..529c3fd4a3e2 --- /dev/null +++ b/bitnami/kong/1/debian-10/prebuildfs/libbitnami.sh @@ -0,0 +1,50 @@ +#!/bin/bash +# +# Bitnami custom library + +# Load Generic Libraries +. /liblog.sh + +# Constants +BOLD='\033[1m' + +# Functions + +######################## +# Print the welcome page +# Globals: +# DISABLE_WELCOME_MESSAGE +# BITNAMI_APP_NAME +# Arguments: +# None +# Returns: +# None +######################### +print_welcome_page() { + if [[ -z "${DISABLE_WELCOME_MESSAGE:-}" ]]; then + if [[ -n "$BITNAMI_APP_NAME" ]]; then + print_image_welcome_page + fi + fi +} + +######################## +# Print the welcome page for a Bitnami Docker image +# Globals: +# BITNAMI_APP_NAME +# Arguments: +# None +# Returns: +# None +######################### +print_image_welcome_page() { + local github_url="https://github.com/bitnami/bitnami-docker-${BITNAMI_APP_NAME}" + + log "" + log "${BOLD}Welcome to the Bitnami ${BITNAMI_APP_NAME} container${RESET}" + log "Subscribe to project updates by watching ${BOLD}${github_url}${RESET}" + log "Submit issues and feature requests at ${BOLD}${github_url}/issues${RESET}" + log "Send us your feedback at ${BOLD}containers@bitnami.com${RESET}" + log "" +} + diff --git a/bitnami/kong/1/debian-10/prebuildfs/libcomponent.sh b/bitnami/kong/1/debian-10/prebuildfs/libcomponent.sh new file mode 100644 index 000000000000..025288664f69 --- /dev/null +++ b/bitnami/kong/1/debian-10/prebuildfs/libcomponent.sh @@ -0,0 +1,64 @@ +#!/bin/bash +# +# Library for managing Bitnami components + +# Constants +CACHE_ROOT="/tmp/bitnami/pkg/cache" +DOWNLOAD_URL="https://downloads.bitnami.com/files/stacksmith" + +# Functions + +######################## +# Download and unpack a Bitnami package +# Globals: +# OS_NAME +# OS_ARCH +# OS_FLAVOUR +# Arguments: +# $1 - component's name +# $2 - component's version +# Returns: +# None +######################### +component_unpack() { + local name="${1:?name is required}" + local version="${2:?version is required}" + local base_name="${name}-${version}-${OS_NAME}-${OS_ARCH}-${OS_FLAVOUR}" + local package_sha256="" + + # Validate arguments + shift 2 + while [ "$#" -gt 0 ]; do + case "$1" in + -c|--checksum) + shift + package_sha256="${1:?missing package checksum}" + ;; + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; + esac + shift + done + + echo "Downloading $base_name package" + if [ -f "${CACHE_ROOT}/${base_name}.tar.gz" ]; then + echo "${CACHE_ROOT}/${base_name}.tar.gz already exists, skipping download." + cp "${CACHE_ROOT}/${base_name}.tar.gz" . + rm "${CACHE_ROOT}/${base_name}.tar.gz" + if [ -f "${CACHE_ROOT}/${base_name}.tar.gz.sha256" ]; then + echo "Using the local sha256 from ${CACHE_ROOT}/${base_name}.tar.gz.sha256" + package_sha256="$(< "${CACHE_ROOT}/${base_name}.tar.gz.sha256")" + rm "${CACHE_ROOT}/${base_name}.tar.gz.sha256" + fi + else + curl --remote-name --silent "${DOWNLOAD_URL}/${base_name}.tar.gz" + fi + if [ -n "$package_sha256" ]; then + echo "Verifying package integrity" + echo "$package_sha256 ${base_name}.tar.gz" | sha256sum --check - + fi + tar --directory /opt/bitnami --extract --gunzip --file "${base_name}.tar.gz" --no-same-owner --strip-components=2 "${base_name}/files/" + rm "${base_name}.tar.gz" +} diff --git a/bitnami/kong/1/debian-10/prebuildfs/libfile.sh b/bitnami/kong/1/debian-10/prebuildfs/libfile.sh new file mode 100644 index 000000000000..12010f043e49 --- /dev/null +++ b/bitnami/kong/1/debian-10/prebuildfs/libfile.sh @@ -0,0 +1,22 @@ +#!/bin/bash +# +# Library for managing files + +# Functions + +######################## +# Ensure a line exists in the file by replacing a matching line. +# Arguments: +# $1 - filename +# $2 - line +# $3 - match +# Returns: +# None +######################### +file_contains_line() { + local filename="${1:?filename is required}" + local line="${2:?line is required}" + local match="${3:?match is required}" + + sed --in-place "s/^$match\$/$line/" "$filename" +} diff --git a/bitnami/kong/1/debian-10/prebuildfs/libfs.sh b/bitnami/kong/1/debian-10/prebuildfs/libfs.sh new file mode 100644 index 000000000000..10a24735c096 --- /dev/null +++ b/bitnami/kong/1/debian-10/prebuildfs/libfs.sh @@ -0,0 +1,129 @@ +#!/bin/bash +# +# Library for file system actions + +# Load Generic Libraries +. /liblog.sh + +# Functions + +######################## +# Ensure a file/directory is owned (user and group) but the given user +# Arguments: +# $1 - filepath +# $2 - owner +# Returns: +# None +######################### +owned_by() { + local path="${1:?path is missing}" + local owner="${2:?owner is missing}" + + chown "$owner":"$owner" "$path" +} + +######################## +# Ensure a directory exists and, optionally, is owned by the given user +# Arguments: +# $1 - directory +# $2 - owner +# Returns: +# None +######################### +ensure_dir_exists() { + local dir="${1:?directory is missing}" + local owner="${2:-}" + + mkdir -p "${dir}" + if [[ -n $owner ]]; then + owned_by "$dir" "$owner" + fi +} + +######################## +# Checks whether a directory is empty or not +# Arguments: +# $1 - directory +# Returns: +# Boolean +######################### +is_dir_empty() { + local dir="${1:?missing directory}" + + if [[ ! -e "$dir" ]] || [[ -z "$(ls -A "$dir")" ]]; then + true + else + false + fi +} + +######################## +# Configure permisions and ownership recursively +# Globals: +# None +# Arguments: +# $1 - paths (as a string). +# Flags: +# -f|--file-mode - mode for directories. +# -d|--dir-mode - mode for files. +# -u|--user - user +# -g|--group - group +# Returns: +# None +######################### +configure_permissions_ownership() { + local -r paths="${1:?paths is missing}" + local dir_mode="" + local file_mode="" + local user="" + local group="" + + # Validate arguments + shift 1 + while [ "$#" -gt 0 ]; do + case "$1" in + -f|--file-mode) + shift + file_mode="${1:?missing mode for files}" + ;; + -d|--dir-mode) + shift + dir_mode="${1:?missing mode for directories}" + ;; + -u|--user) + shift + user="${1:?missing user}" + ;; + -g|--group) + shift + group="${1:?missing group}" + ;; + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; + esac + shift + done + + read -r -a filepaths <<< "$paths" + for p in "${filepaths[@]}"; do + if [[ -e "$p" ]]; then + if [[ -n $dir_mode ]]; then + find -L "$p" -type d -exec chmod "$dir_mode" {} \; + fi + if [[ -n $file_mode ]]; then + find -L "$p" -type f -exec chmod "$file_mode" {} \; + fi + if [[ -n $user ]] && [[ -n $group ]]; then + chown -LR "$user":"$group" "$p" + elif [[ -n $user ]] && [[ -z $group ]]; then + chown -LR "$user" "$p" + elif [[ -z $user ]] && [[ -n $group ]]; then + chgrp -LR "$group" "$p" + fi + else + stderr_print "$p does not exist" + fi + done +} diff --git a/bitnami/kong/1/debian-10/prebuildfs/liblog.sh b/bitnami/kong/1/debian-10/prebuildfs/liblog.sh new file mode 100644 index 000000000000..04118273394a --- /dev/null +++ b/bitnami/kong/1/debian-10/prebuildfs/liblog.sh @@ -0,0 +1,83 @@ +#!/bin/bash +# +# Library for logging functions + +# Constants +RESET='\033[0m' +RED='\033[38;5;1m' +GREEN='\033[38;5;2m' +YELLOW='\033[38;5;3m' +MAGENTA='\033[38;5;5m' +CYAN='\033[38;5;6m' + +# Functions + +######################## +# Print to STDERR +# Arguments: +# Message to print +# Returns: +# None +######################### +stderr_print() { + printf "%b\\n" "${*}" >&2 +} + +######################## +# Log message +# Arguments: +# Message to log +# Returns: +# None +######################### +log() { + stderr_print "${CYAN}${MODULE:-} ${MAGENTA}$(date "+%T.%2N ")${RESET}${*}" +} +######################## +# Log an 'info' message +# Arguments: +# Message to log +# Returns: +# None +######################### +info() { + log "${GREEN}INFO ${RESET} ==> ${*}" +} +######################## +# Log message +# Arguments: +# Message to log +# Returns: +# None +######################### +warn() { + log "${YELLOW}WARN ${RESET} ==> ${*}" +} +######################## +# Log an 'error' message +# Arguments: +# Message to log +# Returns: +# None +######################### +error() { + log "${RED}ERROR${RESET} ==> ${*}" +} +######################## +# Log a 'debug' message +# Globals: +# BITNAMI_DEBUG +# Arguments: +# None +# Returns: +# None +######################### +debug() { + # 'is_boolean_yes' is defined in libvalidations.sh, but depends on this file so we cannot source it + local -r bool="${BITNAMI_DEBUG:-false}" + # comparison is performed without regard to the case of alphabetic characters + shopt -s nocasematch + if [[ "$bool" = 1 || "$bool" =~ ^(yes|true)$ ]]; then + log "${MAGENTA}DEBUG${RESET} ==> ${*}" + fi +} diff --git a/bitnami/kong/1/debian-10/prebuildfs/libnet.sh b/bitnami/kong/1/debian-10/prebuildfs/libnet.sh new file mode 100644 index 000000000000..f884b7661fd7 --- /dev/null +++ b/bitnami/kong/1/debian-10/prebuildfs/libnet.sh @@ -0,0 +1,44 @@ +#!/bin/bash +# +# Library for network functions + +# Functions + +######################## +# Resolve dns +# Arguments: +# $1 - Hostname to resolve +# Returns: +# IP +######################### +dns_lookup() { + local host="${1:?host is missing}" + getent ahosts "$host" | awk '/STREAM/ {print $1 }' +} + +######################## +# Get machine's IP +# Arguments: +# None +# Returns: +# Machine IP +######################### +get_machine_ip() { + dns_lookup "$(hostname)" +} + +######################## +# Check if the provided argument is a resolved hostname +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_hostname_resolved() { + local -r host="${1:?missing value}" + if [[ -n "$(dns_lookup "$host")" ]]; then + true + else + false + fi +} diff --git a/bitnami/kong/1/debian-10/prebuildfs/libos.sh b/bitnami/kong/1/debian-10/prebuildfs/libos.sh new file mode 100644 index 000000000000..1a5ba3bb2a64 --- /dev/null +++ b/bitnami/kong/1/debian-10/prebuildfs/libos.sh @@ -0,0 +1,132 @@ +#!/bin/bash +# +# Library for operating system actions + +# Functions + +######################## +# Check if an user exists in the system +# Arguments: +# $1 - user +# Returns: +# Boolean +######################### +user_exists() { + local user="${1:?user is missing}" + id "$user" >/dev/null 2>&1 +} + +######################## +# Check if a group exists in the system +# Arguments: +# $1 - group +# Returns: +# Boolean +######################### +group_exists() { + local group="${1:?group is missing}" + getent group "$group" >/dev/null 2>&1 +} + +######################## +# Create a group in the system if it does not exist already +# Arguments: +# $1 - group +# Returns: +# None +######################### +ensure_group_exists() { + local group="${1:?group is missing}" + + if ! group_exists "$group"; then + groupadd "$group" >/dev/null 2>&1 + fi +} + +######################## +# Create an user in the system if it does not exist already +# Arguments: +# $1 - user +# $2 - group +# Returns: +# None +######################### +ensure_user_exists() { + local user="${1:?user is missing}" + local group="${2:-}" + + if ! user_exists "$user"; then + useradd "$user" >/dev/null 2>&1 + if [[ -n "$group" ]]; then + ensure_group_exists "$group" + usermod -a -G "$group" "$user" >/dev/null 2>&1 + fi + fi +} + +######################## +# Check if the script is currently running as root +# Arguments: +# $1 - user +# $2 - group +# Returns: +# Boolean +######################### +am_i_root() { + if [[ "$(id -u)" = "0" ]]; then + true + else + false + fi +} + +######################## +# Get total memory available +# Arguments: +# None +# Returns: +# Memory in bytes +######################### +get_total_memory() { + echo $(($(grep MemTotal /proc/meminfo | awk '{print $2}') / 1024)) +} + +######################### +# Redirects output to /dev/null if debug mode is disabled +# Globals: +# BITNAMI_DEBUG +# Arguments: +# $@ - Command to execute +# Returns: +# None +######################### +debug_execute() { + if ${BITNAMI_DEBUG:-false}; then + "$@" + else + "$@" >/dev/null 2>&1 + fi +} + +######################## +# Retries a command a given number of times +# Arguments: +# $1 - cmd (as a string) +# $2 - max retries. Default: 12 +# $3 - sleep between retries (in seconds). Default: 5 +# Returns: +# Boolean +######################### +retry_while() { + local -r cmd="${1:?cmd is missing}" + local -r retries="${2:-12}" + local -r sleep_time="${3:-5}" + local return_value=1 + + read -r -a command <<< "$cmd" + for ((i = 1 ; i <= retries ; i+=1 )); do + "${command[@]}" && return_value=0 && break + sleep "$sleep_time" + done + return $return_value +} diff --git a/bitnami/kong/1/debian-10/prebuildfs/libservice.sh b/bitnami/kong/1/debian-10/prebuildfs/libservice.sh new file mode 100644 index 000000000000..0a83cd3d927f --- /dev/null +++ b/bitnami/kong/1/debian-10/prebuildfs/libservice.sh @@ -0,0 +1,57 @@ +#!/bin/bash +# +# Library for managing services + +# Functions + +######################## +# Read the provided pid file and returns a PID +# Arguments: +# $1 - Pid file +# Returns: +# PID +######################### +get_pid_from_file() { + local pid_file="${1:?pid file is missing}" + + if [[ -f "$pid_file" ]]; then + if [[ -n "$(< "$pid_file")" ]] && [[ "$(< "$pid_file")" -gt 0 ]]; then + echo "$(< "$pid_file")" + fi + fi +} + +######################## +# Check if a provided PID corresponds to a running service +# Arguments: +# $1 - PID +# Returns: +# Boolean +######################### +is_service_running() { + local pid="${1:?pid is missing}" + + kill -0 "$pid" 2>/dev/null +} + +######################## +# Stop a service by sending a termination signal to its pid +# Arguments: +# $1 - Pid file +# Returns: +# None +######################### +stop_service_using_pid() { + local pid_file="${1:?pid file is missing}" + local pid + + pid="$(get_pid_from_file "$pid_file")" + [[ -z "$pid" ]] || ! is_service_running "$pid" && return + + kill "$pid" + local counter=10 + while [[ "$counter" -ne 0 ]] && is_service_running "$pid"; do + sleep 1 + counter=$((counter - 1)) + done +} diff --git a/bitnami/kong/1/debian-10/prebuildfs/libvalidations.sh b/bitnami/kong/1/debian-10/prebuildfs/libvalidations.sh new file mode 100644 index 000000000000..ef9aaf0cf31f --- /dev/null +++ b/bitnami/kong/1/debian-10/prebuildfs/libvalidations.sh @@ -0,0 +1,246 @@ +#!/bin/bash +# +# Validation functions library + +# Load Generic Libraries +. /liblog.sh + +# Functions + +######################## +# Check if the provided argument is an integer +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_int() { + local -r int="${1:?missing value}" + if [[ "$int" =~ ^-?[0-9]+ ]]; then + true + else + false + fi +} + +######################## +# Check if the provided argument is a positive integer +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_positive_int() { + local -r int="${1:?missing value}" + if is_int "$int" && (( "${int}" >= 0 )); then + true + else + false + fi +} + +######################## +# Check if the provided argument is a boolean or is the string 'yes/true' +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_boolean_yes() { + local -r bool="${1:-}" + # comparison is performed without regard to the case of alphabetic characters + shopt -s nocasematch + if [[ "$bool" = 1 || "$bool" =~ ^(yes|true)$ ]]; then + true + else + false + fi +} + +######################## +# Check if the provided argument is a boolean yes/no value +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_yes_no_value() { + local -r bool="${1:-}" + if [[ "$bool" =~ ^(yes|no)$ ]]; then + true + else + false + fi +} + +######################## +# Check if the provided argument is a boolean true/false value +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_true_false_value() { + local -r bool="${1:-}" + if [[ "$bool" =~ ^(true|false)$ ]]; then + true + else + false + fi +} + +######################## +# Check if the provided argument is an empty string or not defined +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_empty_value() { + local -r val="${1:-}" + if [[ -z "$val" ]]; then + true + else + false + fi +} + +######################## +# Validate if the provided argument is a valid port +# Arguments: +# $1 - Port to validate +# Returns: +# Boolean and error message +######################### +validate_port() { + local value + local unprivileged=0 + + # Parse flags + while [[ "$#" -gt 0 ]]; do + case "$1" in + -unprivileged) + unprivileged=1 + ;; + --) + shift + break + ;; + -*) + stderr_print "unrecognized flag $1" + return 1 + ;; + *) + break + ;; + esac + shift + done + + if [[ "$#" -gt 1 ]]; then + echo "too many arguments provided" + return 2 + elif [[ "$#" -eq 0 ]]; then + stderr_print "missing port argument" + return 1 + else + value=$1 + fi + + if [[ -z "$value" ]]; then + echo "the value is empty" + return 1 + else + if ! is_int "$value"; then + echo "value is not an integer" + return 2 + elif [[ "$value" -lt 0 ]]; then + echo "negative value provided" + return 2 + elif [[ "$value" -gt 65535 ]]; then + echo "requested port is greater than 65535" + return 2 + elif [[ "$unprivileged" = 1 && "$value" -lt 1024 ]]; then + echo "privileged port requested" + return 3 + fi + fi +} + +######################## +# Validate if the provided argument is a valid IPv4 address +# Arguments: +# $1 - IP to validate +# Returns: +# Boolean +######################### +validate_ipv4() { + local ip="${1:?ip is missing}" + local stat=1 + + if [[ $ip =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then + read -r -a ip_array <<< "$(tr '.' ' ' <<< "$ip")" + [[ ${ip_array[0]} -le 255 && ${ip_array[1]} -le 255 \ + && ${ip_array[2]} -le 255 && ${ip_array[3]} -le 255 ]] + stat=$? + fi + return $stat +} + +######################## +# Validate a string format +# Arguments: +# $1 - String to validate +# Returns: +# Boolean +######################### +validate_string() { + local string + local min_length=-1 + local max_length=-1 + + # Parse flags + while [ "$#" -gt 0 ]; do + case "$1" in + -min-length) + shift + min_length=${1:-} + ;; + -max-length) + shift + max_length=${1:-} + ;; + --) + shift + break + ;; + -*) + stderr_print "unrecognized flag $1" + return 1 + ;; + *) + break + ;; + esac + shift + done + + if [ "$#" -gt 1 ]; then + stderr_print "too many arguments provided" + return 2 + elif [ "$#" -eq 0 ]; then + stderr_print "missing string" + return 1 + else + string=$1 + fi + + if [[ "$min_length" -ge 0 ]] && [[ "${#string}" -lt "$min_length" ]]; then + echo "string length is less than $min_length" + return 1 + fi + if [[ "$max_length" -ge 0 ]] && [[ "${#string}" -gt "$max_length" ]]; then + echo "string length is great than $max_length" + return 1 + fi +} diff --git a/bitnami/kong/1/debian-10/prebuildfs/libversion.sh b/bitnami/kong/1/debian-10/prebuildfs/libversion.sh new file mode 100644 index 000000000000..b16090cfe1f4 --- /dev/null +++ b/bitnami/kong/1/debian-10/prebuildfs/libversion.sh @@ -0,0 +1,47 @@ +#!/bin/bash +# +# Library for managing versions strings + +# Load Generic Libraries +. ./liblog.sh + +# Functions +######################## +# Gets semantic version +# Arguments: +# $1 - version: string to extract major.minor.patch +# $2 - section: 1 to extract major, 2 to extract minor, 3 to extract patch +# Returns: +# array with the major, minor and release +######################### +get_sematic_version () { + local version="${1:?version is required}" + local section="${2:?section is required}" + local -a version_sections + + #Regex to parse versions: x.y.z + local -r regex='([0-9]+)(\.([0-9]+)(\.([0-9]+))?)?' + + if [[ "$version" =~ $regex ]]; then + local i=1 + local j=1 + local n=${#BASH_REMATCH[*]} + + while [[ $i -lt $n ]]; do + if [[ -n "${BASH_REMATCH[$i]}" ]] && [[ "${BASH_REMATCH[$i]:0:1}" != '.' ]]; then + version_sections[$j]=${BASH_REMATCH[$i]} + ((j++)) + fi + ((i++)) + done + + local number_regex='^[0-9]+$' + if [[ "$section" =~ $number_regex ]] && (( $section > 0 )) && (( $section <= 3 )); then + echo "${version_sections[$section]}" + return + else + stderr_print "Section allowed values are: 1, 2, and 3" + return 1 + fi + fi +} diff --git a/bitnami/kong/1/debian-10/prebuildfs/opt/bitnami/.exists b/bitnami/kong/1/debian-10/prebuildfs/opt/bitnami/.exists new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/bitnami/kong/1/debian-10/rootfs/entrypoint.sh b/bitnami/kong/1/debian-10/rootfs/entrypoint.sh new file mode 100755 index 000000000000..a6f9da9603c8 --- /dev/null +++ b/bitnami/kong/1/debian-10/rootfs/entrypoint.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +# shellcheck disable=SC1091 + +set -o errexit +set -o nounset +set -o pipefail +#set -o xtrace # Uncomment this line for debugging purpose + +# Load libraries +. /libbitnami.sh +. /liblog.sh +. /libkong.sh + +eval "$(kong_env)" + +print_welcome_page + +if [[ "$*" = *"/run.sh"* ]]; then + info "** Starting Kong setup **" + /setup.sh + info "** Kong setup finished! **" +fi + +echo "" +exec "$@" diff --git a/bitnami/kong/1/debian-10/rootfs/libkong.sh b/bitnami/kong/1/debian-10/rootfs/libkong.sh new file mode 100644 index 000000000000..e93fad1818ba --- /dev/null +++ b/bitnami/kong/1/debian-10/rootfs/libkong.sh @@ -0,0 +1,251 @@ +#!/bin/bash +# +# Bitnami Kong library + +# shellcheck disable=SC1090 +# shellcheck disable=SC1091 + +# Load generic libraries +. /libfs.sh +. /liblog.sh +. /libnet.sh +. /libos.sh +. /libservice.sh +. /libvalidations.sh + +######################## +# Load global variables used for Kong configuration. +# Globals: +# KONG_* +# Arguments: +# None +# Returns: +# Series of exports to be used as 'eval' arguments +######################### +kong_env() { + # Avoid environment settings getting overridden twice + if [[ -n "${MODULE:-}" ]]; then + return + fi + + cat <<"EOF" +# Bitnami debug +export MODULE=kong +export BITNAMI_DEBUG="${BITNAMI_DEBUG:-false}" + +# Paths +export KONG_BASE_DIR="/opt/bitnami/kong" +export KONG_CONF_DIR="${KONG_BASE_DIR}/conf" +export KONG_SERVER_DIR="${KONG_BASE_DIR}/server" + +export KONG_CONF_FILE="${KONG_CONF_DIR}/kong.conf" +export KONG_DEFAULT_CONF_FILE="${KONG_CONF_DIR}/kong.conf.default" + +# Users +export KONG_DAEMON_USER="${KONG_DAEMON_USER:-kong}" +export KONG_DAEMON_GROUP="${KONG_DAEMON_GROUP:-kong}" + +# Cluster settings +export KONG_MIGRATE="${KONG_MIGRATE:-no}" + +# Port and service bind configurations for KONG_PROXY_LISTEN and KONG_ADMIN_LISTEN +# By setting these separately, we are consistent with other Bitnami solutions +# However it is still possible to directly set KONG_PROXY_LISTEN and KONG_ADMIN_LISTEN +export KONG_PROXY_LISTEN_ADDRESS="${KONG_PROXY_LISTEN_ADDRESS:-0.0.0.0}" +export KONG_PROXY_HTTP_PORT_NUMBER="${KONG_PROXY_HTTP_PORT_NUMBER:-8000}" +export KONG_PROXY_HTTPS_PORT_NUMBER="${KONG_PROXY_HTTPS_PORT_NUMBER:-8443}" +export KONG_ADMIN_LISTEN_ADDRESS="${KONG_ADMIN_LISTEN_ADDRESS:-127.0.0.1}" +export KONG_ADMIN_HTTP_PORT_NUMBER="${KONG_ADMIN_HTTP_PORT_NUMBER:-8001}" +export KONG_ADMIN_HTTPS_PORT_NUMBER="${KONG_ADMIN_HTTPS_PORT_NUMBER:-8444}" + +# Kong configuration +# These environment variables are used by Kong and allow overriding values in its configuration file +export KONG_NGINX_DAEMON="off" +EOF + + if am_i_root; then + cat <<"EOF" +export KONG_NGINX_USER="${KONG_DAEMON_USER} ${KONG_DAEMON_GROUP}" +EOF + fi + + if [[ -f "${KONG_CASSANDRA_PASSWORD_FILE:-}" ]]; then + cat <<"EOF" +export KONG_CASSANDRA_PASSWORD="$(< "${KONG_CASSANDRA_PASSWORD_FILE}")" +EOF + fi + + if [[ -f "${KONG_POSTGRESQL_PASSWORD_FILE:-}" ]]; then + cat <<"EOF" +export KONG_PG_PASSWORD="$(< "${KONG_POSTGRESQL_PASSWORD_FILE}")" +EOF + fi + + # Compound environment variables that form a single Kong configuration entry + if [[ -n "${KONG_PROXY_LISTEN:-}" ]]; then + cat <<"EOF" +export KONG_PROXY_LISTEN_OVERRIDE="yes" +EOF + else + cat <<"EOF" +export KONG_PROXY_LISTEN="${KONG_PROXY_LISTEN_ADDRESS}:${KONG_PROXY_HTTP_PORT_NUMBER}, ${KONG_PROXY_LISTEN_ADDRESS}:${KONG_PROXY_HTTPS_PORT_NUMBER} ssl" +export KONG_PROXY_LISTEN_OVERRIDE="no" +EOF + fi + if [[ -n "${KONG_ADMIN_LISTEN:-}" ]]; then + cat <<"EOF" +export KONG_ADMIN_LISTEN_OVERRIDE="yes" +EOF + else + cat <<"EOF" +export KONG_ADMIN_LISTEN="${KONG_ADMIN_LISTEN_ADDRESS}:${KONG_ADMIN_HTTP_PORT_NUMBER}, ${KONG_ADMIN_LISTEN_ADDRESS}:${KONG_ADMIN_HTTPS_PORT_NUMBER} ssl" +export KONG_ADMIN_LISTEN_OVERRIDE="no" +EOF + fi +} + +######################## +# Validate settings in KONG_* environment variables +# Globals: +# KONG_* +# Arguments: +# None +# Returns: +# None +######################### +kong_validate() { + info "Validating settings in KONG_* env vars" + local error_code=0 + + # Auxiliary functions + + print_validation_error() { + error "$1" + error_code="1" + } + + check_yes_no_value() { + if ! is_yes_no_value "${!1}"; then + print_validation_error "The allowed values for ${1} are [yes, no]" + fi + } + + check_password_file() { + if [[ -n "${!1:-}" ]] && ! [[ -f "${!1:-}" ]]; then + print_validation_error "The variable ${1} is defined but the file ${!1} is not accessible or does not exist" + fi + } + + check_resolved_hostname() { + if ! is_hostname_resolved "$1"; then + warn "Hostname ${1} could not be resolved, this could lead to connection issues" + fi + } + + check_allowed_port() { + local validate_port_args=() + ! am_i_root && validate_port_args+=("-unprivileged") + if ! err="$(validate_port "${validate_port_args[@]}" "${!1}")"; then + print_validation_error "An invalid port was specified in the environment variable ${1}: ${err}" + fi + } + + check_conflicting_ports() { + local -r total="$#" + for i in $(seq 1 "$((total - 1))"); do + for j in $(seq "$((i + 1))" "$total"); do + if (( "${!i}" == "${!j}" )); then + print_validation_error "${!i} and ${!j} are bound to the same port" + fi + done + done + } + + check_yes_no_value KONG_MIGRATE + + # Validate some of the supported environment variables used by Kong + + # Database setting validations + if [[ "${KONG_DATABASE:-postgres}" = "postgres" ]]; then + # PostgreSQL is the default database type + check_password_file KONG_POSTGRESQL_PASSWORD_FILE + [[ -n "${KONG_PG_HOST:-}" ]] && check_resolved_hostname "${KONG_PG_HOST:-}" + if [[ -n "${!KONG_CASSANDRA_@}" ]]; then + warn "KONG_DATABASE is empty or set to 'postgres', so the following environment variables will be ignored: ${!KONG_CASSANDRA_@}" + fi + elif [[ "${KONG_DATABASE:-}" = "cassandra" ]]; then + check_password_file KONG_CASSANDRA_PASSWORD_FILE + for cassandra_contact_point in $(echo "${CASSANDRA_CONTACT_POINTS:-}" | sed -r 's/[, ]+/\n/'); do + check_resolved_hostname "${cassandra_contact_point}" + done + if [[ -n "${!KONG_PG_@}" ]]; then + warn "KONG_DATABASE is set to 'cassandra', so the following environment variables will be ignored: ${!KONG_PG_@}" + fi + elif [[ "${KONG_DATABASE:-}" = "off" ]]; then + warn "KONG_DATABASE is set to 'off', Kong will run but data will not be persisted" + else + print_validation_error "Wrong value '${KONG_DATABASE}' passed to KONG_DATABASE. Valid values: 'off', 'cassandra', 'postgres'" + fi + + # Listen addresses and port validations + used_ports=() + if is_boolean_yes "$KONG_PROXY_LISTEN_OVERRIDE"; then + warn "KONG_PROXY_LISTEN was set, it will not be validated and the environment variables KONG_PROXY_LISTEN_ADDRESS, KONG_PROXY_HTTP_PORT_NUMBER and KONG_PROXY_HTTPS_PORT_NUMBER will be ignored" + else + used_ports+=(KONG_PROXY_HTTP_PORT_NUMBER KONG_PROXY_HTTPS_PORT_NUMBER) + if [[ "$KONG_PROXY_LISTEN_ADDRESS" != "0.0.0.0" && "$KONG_PROXY_LISTEN_ADDRESS" != "127.0.0.1" ]]; then + warn "Kong Proxy is set to listen at ${KONG_PROXY_LISTEN_ADDRESS} instead of 0.0.0.0 or 127.0.0.1, this could make Kong inaccessible" + fi + fi + if is_boolean_yes "$KONG_ADMIN_LISTEN_OVERRIDE"; then + warn "KONG_ADMIN_LISTEN was set, it will not be validated and the environment variables KONG_ADMIN_LISTEN_ADDRESS, KONG_ADMIN_HTTP_PORT_NUMBER and KONG_ADMIN_HTTPS_PORT_NUMBER will be ignored" + else + used_ports+=(KONG_ADMIN_HTTP_PORT_NUMBER KONG_ADMIN_HTTPS_PORT_NUMBER) + if [[ "$KONG_ADMIN_LISTEN_ADDRESS" != "127.0.0.1" ]]; then + warn "Kong Admin is set to listen at ${KONG_ADMIN_LISTEN_ADDRESS} instead of 127.0.0.1, opening it to the outside could make it insecure" + fi + fi + for port in "${used_ports[@]}"; do + check_allowed_port "${port}" + done + if [[ "${#used_ports[@]}" -ne 0 ]]; then + check_conflicting_ports "${used_ports[@]}" + fi + + # Quit if any failures occurred + [[ "$error_code" -eq 0 ]] || exit "$error_code" +} + +######################## +# Ensure Kong is initialized +# Globals: +# KONG_* +# Arguments: +# None +# Returns: +# None +######################### +kong_initialize() { + info "Initializing Kong" + + info "Waiting for database connection to succeed" + + while ! kong_migrations_list_output="$(kong migrations list 2>&1)"; do + if is_boolean_yes "$KONG_MIGRATE" && [[ "$kong_migrations_list_output" =~ "Database needs bootstrapping"* ]]; then + break + fi + debug "$kong_migrations_list_output" + debug "Database is still not ready, will retry" + sleep 1 + done + + if is_boolean_yes "$KONG_MIGRATE"; then + info "Migrating database" + kong migrations bootstrap + while ! kong migrations list; do + debug "Error during the initial bootstrap for the database, will retry" + kong migrations up + kong migrations finish + done + fi +} diff --git a/bitnami/kong/1/debian-10/rootfs/licenses/licenses.txt b/bitnami/kong/1/debian-10/rootfs/licenses/licenses.txt new file mode 100644 index 000000000000..c76ba31f3b8a --- /dev/null +++ b/bitnami/kong/1/debian-10/rootfs/licenses/licenses.txt @@ -0,0 +1,3 @@ +Bitnami containers ship with software bundles. You can find the licenses under: +/opt/bitnami/nami/COPYING +/opt/bitnami/[name-of-bundle]/licenses/[bundle-version].txt diff --git a/bitnami/kong/1/debian-10/rootfs/postunpack.sh b/bitnami/kong/1/debian-10/rootfs/postunpack.sh new file mode 100755 index 000000000000..f19e435173e2 --- /dev/null +++ b/bitnami/kong/1/debian-10/rootfs/postunpack.sh @@ -0,0 +1,70 @@ +#!/bin/bash + +# shellcheck disable=SC1091 + +set -o errexit +set -o nounset +set -o pipefail +# set -o xtrace # Uncomment this line for debugging purpose + +. /libfs.sh +. /libos.sh +. /libkong.sh + +# Auxiliar functions + +######################## +# Set a configuration to Kong's configuration file +# Globals: +# KONG_CONF_FILE +# Arguments: +# $1 - key +# $2 - value +# Returns: +# None +######################### +kong_conf_set() { + local -r key="${1:?missing key}" + local -r value="${2:-}" + + # Check if the value was commented or set before + if grep -q "^#*${key}\s*=[^#]*" "$KONG_CONF_FILE"; then + debug "Updating entry for property '${key}' in configuration file" + # Update the existing key (leave trailing space for comments) + sed -ri "s|^(#*${key}\s*=)[^#]*|\1 ${value} |" "$KONG_CONF_FILE" + else + debug "Adding new entry for property '${key}' in configuration file" + # Add a new key + printf '%s = %s\n' "$key" "$value" >>"$KONG_CONF_FILE" + fi +} + +######################## +# Uncomment non-empty entries in Kong configuration +# Globals: +# KONG_CONF_FILE +# Arguments: +# None +# Returns: +# None +######################### +kong_configure_non_empty_values() { + # Uncomment all non-empty keys in the main Kong configuration file + sed -ri 's/^#+([a-z_ ]+)=(\s*[^# ]+)/\1=\2 /' "$KONG_CONF_FILE" +} + +# Load Kong environment variables +eval "$(kong_env)" + +# Ensure users and groups used by Kong exist +ensure_user_exists "$KONG_DAEMON_USER" "$KONG_DAEMON_GROUP" +# Ensure directories used by Kong exist and have proper permissions +ensure_dir_exists "$KONG_SERVER_DIR" +chmod -R g+rwX "$KONG_SERVER_DIR" "$KONG_CONF_DIR" +# Copy configuration file and set default values +cp "$KONG_DEFAULT_CONF_FILE" "$KONG_CONF_FILE" +kong_conf_set prefix "$KONG_SERVER_DIR" +kong_conf_set nginx_daemon off +kong_conf_set lua_package_path +kong_conf_set nginx_user +kong_configure_non_empty_values diff --git a/bitnami/kong/1/debian-10/rootfs/run.sh b/bitnami/kong/1/debian-10/rootfs/run.sh new file mode 100755 index 000000000000..e1a409e62410 --- /dev/null +++ b/bitnami/kong/1/debian-10/rootfs/run.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +# shellcheck disable=SC1091 + +set -o errexit +set -o nounset +set -o pipefail +# set -o xtrace # Uncomment this line for debugging purpose + +# Load libraries +. /liblog.sh +. /libos.sh +. /libkong.sh + +# Load Kong environment variables +eval "$(kong_env)" + +info "** Starting Kong **" + +exec kong start diff --git a/bitnami/kong/1/debian-10/rootfs/setup.sh b/bitnami/kong/1/debian-10/rootfs/setup.sh new file mode 100755 index 000000000000..97a3f821c294 --- /dev/null +++ b/bitnami/kong/1/debian-10/rootfs/setup.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +# shellcheck disable=SC1091 + +set -o errexit +set -o nounset +set -o pipefail +# set -o xtrace # Uncomment this line for debugging purpose + +# Load libraries +. /libos.sh +. /libkong.sh + +# Load Kong environment variables +eval "$(kong_env)" + +# Ensure Kong environment variables are valid +kong_validate +# Ensure file ownership is correct +am_i_root && chown -R "$KONG_DAEMON_USER":"$KONG_DAEMON_GROUP" "$KONG_SERVER_DIR" "$KONG_CONF_DIR" +# Ensure Kong is initialized +kong_initialize diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f479ffab7a84..525ce5a6c1ab 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -46,13 +46,13 @@ Non-root container images add an extra layer of security and are generally recom # Supported tags and respective `Dockerfile` links -> NOTE: Debian 8 images have been deprecated in favor of Debian 9 images. Bitnami will not longer publish new Docker images based on Debian 8. +> NOTE: Debian 9 images have been deprecated in favor of Debian 10 images. Bitnami will not longer publish new Docker images based on Debian 9. Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/containers/how-to/understand-rolling-tags-containers/). * [`1-ol-7`, `1.5.0-ol-7-r1` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r1/1/ol-7/Dockerfile) -* [`1-debian-9`, `1.5.0-debian-9-r2`, `1`, `1.5.0`, `1.5.0-r2`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-9-r2/1/debian-9/Dockerfile) +* [`1-debian-10`, `1.5.0-debian-10-r0`, `1`, `1.5.0`, `1.5.0-r0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r0/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). @@ -73,7 +73,7 @@ $ docker pull bitnami/kong:[TAG] If you wish, you can also build the image yourself. ```bash -$ docker build -t bitnami/kong:latest 'https://github.com/bitnami/bitnami-docker-kong.git#master:1/debian-9' +$ docker build -t bitnami/kong:latest 'https://github.com/bitnami/bitnami-docker-kong.git#master:1/debian-10' ``` # Connecting to other containers From 1dfdb079d85e8b506e96581b8f46709cbb9b7d33 Mon Sep 17 00:00:00 2001 From: Carlos Rodriguez Hernandez Date: Fri, 24 Jan 2020 15:09:26 +0000 Subject: [PATCH 242/950] Remove debian 9 in favor of debian 10 --- bitnami/kong/1/debian-9/Dockerfile | 27 -- bitnami/kong/1/debian-9/docker-compose.yml | 22 -- .../debian-9/prebuildfs/build/install-gosu.sh | 10 - .../kong/1/debian-9/prebuildfs/libbitnami.sh | 50 ---- .../1/debian-9/prebuildfs/libcomponent.sh | 64 ----- bitnami/kong/1/debian-9/prebuildfs/libfile.sh | 22 -- bitnami/kong/1/debian-9/prebuildfs/libfs.sh | 129 --------- bitnami/kong/1/debian-9/prebuildfs/liblog.sh | 83 ------ bitnami/kong/1/debian-9/prebuildfs/libnet.sh | 44 --- bitnami/kong/1/debian-9/prebuildfs/libos.sh | 132 --------- .../kong/1/debian-9/prebuildfs/libservice.sh | 57 ---- .../1/debian-9/prebuildfs/libvalidations.sh | 246 ----------------- .../kong/1/debian-9/prebuildfs/libversion.sh | 47 ---- .../1/debian-9/prebuildfs/opt/bitnami/.exists | 0 bitnami/kong/1/debian-9/rootfs/entrypoint.sh | 26 -- bitnami/kong/1/debian-9/rootfs/libkong.sh | 251 ------------------ .../1/debian-9/rootfs/licenses/licenses.txt | 3 - bitnami/kong/1/debian-9/rootfs/postunpack.sh | 70 ----- bitnami/kong/1/debian-9/rootfs/run.sh | 20 -- bitnami/kong/1/debian-9/rootfs/setup.sh | 22 -- 20 files changed, 1325 deletions(-) delete mode 100644 bitnami/kong/1/debian-9/Dockerfile delete mode 100644 bitnami/kong/1/debian-9/docker-compose.yml delete mode 100755 bitnami/kong/1/debian-9/prebuildfs/build/install-gosu.sh delete mode 100644 bitnami/kong/1/debian-9/prebuildfs/libbitnami.sh delete mode 100644 bitnami/kong/1/debian-9/prebuildfs/libcomponent.sh delete mode 100644 bitnami/kong/1/debian-9/prebuildfs/libfile.sh delete mode 100644 bitnami/kong/1/debian-9/prebuildfs/libfs.sh delete mode 100644 bitnami/kong/1/debian-9/prebuildfs/liblog.sh delete mode 100644 bitnami/kong/1/debian-9/prebuildfs/libnet.sh delete mode 100644 bitnami/kong/1/debian-9/prebuildfs/libos.sh delete mode 100644 bitnami/kong/1/debian-9/prebuildfs/libservice.sh delete mode 100644 bitnami/kong/1/debian-9/prebuildfs/libvalidations.sh delete mode 100644 bitnami/kong/1/debian-9/prebuildfs/libversion.sh delete mode 100644 bitnami/kong/1/debian-9/prebuildfs/opt/bitnami/.exists delete mode 100755 bitnami/kong/1/debian-9/rootfs/entrypoint.sh delete mode 100644 bitnami/kong/1/debian-9/rootfs/libkong.sh delete mode 100644 bitnami/kong/1/debian-9/rootfs/licenses/licenses.txt delete mode 100755 bitnami/kong/1/debian-9/rootfs/postunpack.sh delete mode 100755 bitnami/kong/1/debian-9/rootfs/run.sh delete mode 100755 bitnami/kong/1/debian-9/rootfs/setup.sh diff --git a/bitnami/kong/1/debian-9/Dockerfile b/bitnami/kong/1/debian-9/Dockerfile deleted file mode 100644 index faecd496830e..000000000000 --- a/bitnami/kong/1/debian-9/Dockerfile +++ /dev/null @@ -1,27 +0,0 @@ -FROM bitnami/minideb:stretch -LABEL maintainer "Bitnami " - -ENV HOME="/" \ - OS_ARCH="amd64" \ - OS_FLAVOUR="debian-9" \ - OS_NAME="linux" - -COPY prebuildfs / -# Install required system packages and dependencies -RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps sudo unzip zlib1g -RUN . ./libcomponent.sh && component_unpack "kong" "1.5.0-0" --checksum bd57fffcd78f4aaa3390f195e8ff1ec0856590cee4fc0a484604d2c3efe28e1d -RUN apt-get update && apt-get upgrade && \ - rm -r /var/lib/apt/lists /var/cache/apt/archives -RUN /build/install-gosu.sh - -COPY rootfs / -RUN /postunpack.sh -ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-9-r2" \ - PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" - -EXPOSE 8000 8001 8443 8444 - -USER 1001 -ENTRYPOINT [ "/entrypoint.sh" ] -CMD [ "/run.sh" ] diff --git a/bitnami/kong/1/debian-9/docker-compose.yml b/bitnami/kong/1/debian-9/docker-compose.yml deleted file mode 100644 index acc2801ac7c0..000000000000 --- a/bitnami/kong/1/debian-9/docker-compose.yml +++ /dev/null @@ -1,22 +0,0 @@ -version: '2' -services: - postgresql: - image: bitnami/postgresql:11 - volumes: - - postgresql_data:/bitnami/postgresql - environment: - - POSTGRESQL_USERNAME=kong - - POSTGRESQL_PASSWORD=bitnami - - POSTGRESQL_DATABASE=kong - kong: - image: bitnami/kong:1 - ports: - - 8000:8000 - - 8443:8443 - environment: - - KONG_MIGRATE=yes - - KONG_PG_HOST=postgresql - - KONG_PG_PASSWORD=bitnami -volumes: - postgresql_data: - driver: local diff --git a/bitnami/kong/1/debian-9/prebuildfs/build/install-gosu.sh b/bitnami/kong/1/debian-9/prebuildfs/build/install-gosu.sh deleted file mode 100755 index 1756700daa89..000000000000 --- a/bitnami/kong/1/debian-9/prebuildfs/build/install-gosu.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash - -VERSION="1.11" -SHA256="0b843df6d86e270c5b0f5cbd3c326a04e18f4b7f9b8457fa497b0454c4b138d7" - -curl --silent -L "https://github.com/tianon/gosu/releases/download/${VERSION}/gosu-amd64" > "/usr/local/bin/gosu" -echo "$SHA256" "/usr/local/bin/gosu" | sha256sum --check -chmod u+x "/usr/local/bin/gosu" -mkdir -p "/opt/bitnami/licenses" -curl --silent -L "https://raw.githubusercontent.com/tianon/gosu/master/LICENSE" > "/opt/bitnami/licenses/gosu-${VERSION}.txt" diff --git a/bitnami/kong/1/debian-9/prebuildfs/libbitnami.sh b/bitnami/kong/1/debian-9/prebuildfs/libbitnami.sh deleted file mode 100644 index 529c3fd4a3e2..000000000000 --- a/bitnami/kong/1/debian-9/prebuildfs/libbitnami.sh +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/bash -# -# Bitnami custom library - -# Load Generic Libraries -. /liblog.sh - -# Constants -BOLD='\033[1m' - -# Functions - -######################## -# Print the welcome page -# Globals: -# DISABLE_WELCOME_MESSAGE -# BITNAMI_APP_NAME -# Arguments: -# None -# Returns: -# None -######################### -print_welcome_page() { - if [[ -z "${DISABLE_WELCOME_MESSAGE:-}" ]]; then - if [[ -n "$BITNAMI_APP_NAME" ]]; then - print_image_welcome_page - fi - fi -} - -######################## -# Print the welcome page for a Bitnami Docker image -# Globals: -# BITNAMI_APP_NAME -# Arguments: -# None -# Returns: -# None -######################### -print_image_welcome_page() { - local github_url="https://github.com/bitnami/bitnami-docker-${BITNAMI_APP_NAME}" - - log "" - log "${BOLD}Welcome to the Bitnami ${BITNAMI_APP_NAME} container${RESET}" - log "Subscribe to project updates by watching ${BOLD}${github_url}${RESET}" - log "Submit issues and feature requests at ${BOLD}${github_url}/issues${RESET}" - log "Send us your feedback at ${BOLD}containers@bitnami.com${RESET}" - log "" -} - diff --git a/bitnami/kong/1/debian-9/prebuildfs/libcomponent.sh b/bitnami/kong/1/debian-9/prebuildfs/libcomponent.sh deleted file mode 100644 index 025288664f69..000000000000 --- a/bitnami/kong/1/debian-9/prebuildfs/libcomponent.sh +++ /dev/null @@ -1,64 +0,0 @@ -#!/bin/bash -# -# Library for managing Bitnami components - -# Constants -CACHE_ROOT="/tmp/bitnami/pkg/cache" -DOWNLOAD_URL="https://downloads.bitnami.com/files/stacksmith" - -# Functions - -######################## -# Download and unpack a Bitnami package -# Globals: -# OS_NAME -# OS_ARCH -# OS_FLAVOUR -# Arguments: -# $1 - component's name -# $2 - component's version -# Returns: -# None -######################### -component_unpack() { - local name="${1:?name is required}" - local version="${2:?version is required}" - local base_name="${name}-${version}-${OS_NAME}-${OS_ARCH}-${OS_FLAVOUR}" - local package_sha256="" - - # Validate arguments - shift 2 - while [ "$#" -gt 0 ]; do - case "$1" in - -c|--checksum) - shift - package_sha256="${1:?missing package checksum}" - ;; - *) - echo "Invalid command line flag $1" >&2 - return 1 - ;; - esac - shift - done - - echo "Downloading $base_name package" - if [ -f "${CACHE_ROOT}/${base_name}.tar.gz" ]; then - echo "${CACHE_ROOT}/${base_name}.tar.gz already exists, skipping download." - cp "${CACHE_ROOT}/${base_name}.tar.gz" . - rm "${CACHE_ROOT}/${base_name}.tar.gz" - if [ -f "${CACHE_ROOT}/${base_name}.tar.gz.sha256" ]; then - echo "Using the local sha256 from ${CACHE_ROOT}/${base_name}.tar.gz.sha256" - package_sha256="$(< "${CACHE_ROOT}/${base_name}.tar.gz.sha256")" - rm "${CACHE_ROOT}/${base_name}.tar.gz.sha256" - fi - else - curl --remote-name --silent "${DOWNLOAD_URL}/${base_name}.tar.gz" - fi - if [ -n "$package_sha256" ]; then - echo "Verifying package integrity" - echo "$package_sha256 ${base_name}.tar.gz" | sha256sum --check - - fi - tar --directory /opt/bitnami --extract --gunzip --file "${base_name}.tar.gz" --no-same-owner --strip-components=2 "${base_name}/files/" - rm "${base_name}.tar.gz" -} diff --git a/bitnami/kong/1/debian-9/prebuildfs/libfile.sh b/bitnami/kong/1/debian-9/prebuildfs/libfile.sh deleted file mode 100644 index 12010f043e49..000000000000 --- a/bitnami/kong/1/debian-9/prebuildfs/libfile.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash -# -# Library for managing files - -# Functions - -######################## -# Ensure a line exists in the file by replacing a matching line. -# Arguments: -# $1 - filename -# $2 - line -# $3 - match -# Returns: -# None -######################### -file_contains_line() { - local filename="${1:?filename is required}" - local line="${2:?line is required}" - local match="${3:?match is required}" - - sed --in-place "s/^$match\$/$line/" "$filename" -} diff --git a/bitnami/kong/1/debian-9/prebuildfs/libfs.sh b/bitnami/kong/1/debian-9/prebuildfs/libfs.sh deleted file mode 100644 index 10a24735c096..000000000000 --- a/bitnami/kong/1/debian-9/prebuildfs/libfs.sh +++ /dev/null @@ -1,129 +0,0 @@ -#!/bin/bash -# -# Library for file system actions - -# Load Generic Libraries -. /liblog.sh - -# Functions - -######################## -# Ensure a file/directory is owned (user and group) but the given user -# Arguments: -# $1 - filepath -# $2 - owner -# Returns: -# None -######################### -owned_by() { - local path="${1:?path is missing}" - local owner="${2:?owner is missing}" - - chown "$owner":"$owner" "$path" -} - -######################## -# Ensure a directory exists and, optionally, is owned by the given user -# Arguments: -# $1 - directory -# $2 - owner -# Returns: -# None -######################### -ensure_dir_exists() { - local dir="${1:?directory is missing}" - local owner="${2:-}" - - mkdir -p "${dir}" - if [[ -n $owner ]]; then - owned_by "$dir" "$owner" - fi -} - -######################## -# Checks whether a directory is empty or not -# Arguments: -# $1 - directory -# Returns: -# Boolean -######################### -is_dir_empty() { - local dir="${1:?missing directory}" - - if [[ ! -e "$dir" ]] || [[ -z "$(ls -A "$dir")" ]]; then - true - else - false - fi -} - -######################## -# Configure permisions and ownership recursively -# Globals: -# None -# Arguments: -# $1 - paths (as a string). -# Flags: -# -f|--file-mode - mode for directories. -# -d|--dir-mode - mode for files. -# -u|--user - user -# -g|--group - group -# Returns: -# None -######################### -configure_permissions_ownership() { - local -r paths="${1:?paths is missing}" - local dir_mode="" - local file_mode="" - local user="" - local group="" - - # Validate arguments - shift 1 - while [ "$#" -gt 0 ]; do - case "$1" in - -f|--file-mode) - shift - file_mode="${1:?missing mode for files}" - ;; - -d|--dir-mode) - shift - dir_mode="${1:?missing mode for directories}" - ;; - -u|--user) - shift - user="${1:?missing user}" - ;; - -g|--group) - shift - group="${1:?missing group}" - ;; - *) - echo "Invalid command line flag $1" >&2 - return 1 - ;; - esac - shift - done - - read -r -a filepaths <<< "$paths" - for p in "${filepaths[@]}"; do - if [[ -e "$p" ]]; then - if [[ -n $dir_mode ]]; then - find -L "$p" -type d -exec chmod "$dir_mode" {} \; - fi - if [[ -n $file_mode ]]; then - find -L "$p" -type f -exec chmod "$file_mode" {} \; - fi - if [[ -n $user ]] && [[ -n $group ]]; then - chown -LR "$user":"$group" "$p" - elif [[ -n $user ]] && [[ -z $group ]]; then - chown -LR "$user" "$p" - elif [[ -z $user ]] && [[ -n $group ]]; then - chgrp -LR "$group" "$p" - fi - else - stderr_print "$p does not exist" - fi - done -} diff --git a/bitnami/kong/1/debian-9/prebuildfs/liblog.sh b/bitnami/kong/1/debian-9/prebuildfs/liblog.sh deleted file mode 100644 index 04118273394a..000000000000 --- a/bitnami/kong/1/debian-9/prebuildfs/liblog.sh +++ /dev/null @@ -1,83 +0,0 @@ -#!/bin/bash -# -# Library for logging functions - -# Constants -RESET='\033[0m' -RED='\033[38;5;1m' -GREEN='\033[38;5;2m' -YELLOW='\033[38;5;3m' -MAGENTA='\033[38;5;5m' -CYAN='\033[38;5;6m' - -# Functions - -######################## -# Print to STDERR -# Arguments: -# Message to print -# Returns: -# None -######################### -stderr_print() { - printf "%b\\n" "${*}" >&2 -} - -######################## -# Log message -# Arguments: -# Message to log -# Returns: -# None -######################### -log() { - stderr_print "${CYAN}${MODULE:-} ${MAGENTA}$(date "+%T.%2N ")${RESET}${*}" -} -######################## -# Log an 'info' message -# Arguments: -# Message to log -# Returns: -# None -######################### -info() { - log "${GREEN}INFO ${RESET} ==> ${*}" -} -######################## -# Log message -# Arguments: -# Message to log -# Returns: -# None -######################### -warn() { - log "${YELLOW}WARN ${RESET} ==> ${*}" -} -######################## -# Log an 'error' message -# Arguments: -# Message to log -# Returns: -# None -######################### -error() { - log "${RED}ERROR${RESET} ==> ${*}" -} -######################## -# Log a 'debug' message -# Globals: -# BITNAMI_DEBUG -# Arguments: -# None -# Returns: -# None -######################### -debug() { - # 'is_boolean_yes' is defined in libvalidations.sh, but depends on this file so we cannot source it - local -r bool="${BITNAMI_DEBUG:-false}" - # comparison is performed without regard to the case of alphabetic characters - shopt -s nocasematch - if [[ "$bool" = 1 || "$bool" =~ ^(yes|true)$ ]]; then - log "${MAGENTA}DEBUG${RESET} ==> ${*}" - fi -} diff --git a/bitnami/kong/1/debian-9/prebuildfs/libnet.sh b/bitnami/kong/1/debian-9/prebuildfs/libnet.sh deleted file mode 100644 index f884b7661fd7..000000000000 --- a/bitnami/kong/1/debian-9/prebuildfs/libnet.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/bash -# -# Library for network functions - -# Functions - -######################## -# Resolve dns -# Arguments: -# $1 - Hostname to resolve -# Returns: -# IP -######################### -dns_lookup() { - local host="${1:?host is missing}" - getent ahosts "$host" | awk '/STREAM/ {print $1 }' -} - -######################## -# Get machine's IP -# Arguments: -# None -# Returns: -# Machine IP -######################### -get_machine_ip() { - dns_lookup "$(hostname)" -} - -######################## -# Check if the provided argument is a resolved hostname -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_hostname_resolved() { - local -r host="${1:?missing value}" - if [[ -n "$(dns_lookup "$host")" ]]; then - true - else - false - fi -} diff --git a/bitnami/kong/1/debian-9/prebuildfs/libos.sh b/bitnami/kong/1/debian-9/prebuildfs/libos.sh deleted file mode 100644 index 1a5ba3bb2a64..000000000000 --- a/bitnami/kong/1/debian-9/prebuildfs/libos.sh +++ /dev/null @@ -1,132 +0,0 @@ -#!/bin/bash -# -# Library for operating system actions - -# Functions - -######################## -# Check if an user exists in the system -# Arguments: -# $1 - user -# Returns: -# Boolean -######################### -user_exists() { - local user="${1:?user is missing}" - id "$user" >/dev/null 2>&1 -} - -######################## -# Check if a group exists in the system -# Arguments: -# $1 - group -# Returns: -# Boolean -######################### -group_exists() { - local group="${1:?group is missing}" - getent group "$group" >/dev/null 2>&1 -} - -######################## -# Create a group in the system if it does not exist already -# Arguments: -# $1 - group -# Returns: -# None -######################### -ensure_group_exists() { - local group="${1:?group is missing}" - - if ! group_exists "$group"; then - groupadd "$group" >/dev/null 2>&1 - fi -} - -######################## -# Create an user in the system if it does not exist already -# Arguments: -# $1 - user -# $2 - group -# Returns: -# None -######################### -ensure_user_exists() { - local user="${1:?user is missing}" - local group="${2:-}" - - if ! user_exists "$user"; then - useradd "$user" >/dev/null 2>&1 - if [[ -n "$group" ]]; then - ensure_group_exists "$group" - usermod -a -G "$group" "$user" >/dev/null 2>&1 - fi - fi -} - -######################## -# Check if the script is currently running as root -# Arguments: -# $1 - user -# $2 - group -# Returns: -# Boolean -######################### -am_i_root() { - if [[ "$(id -u)" = "0" ]]; then - true - else - false - fi -} - -######################## -# Get total memory available -# Arguments: -# None -# Returns: -# Memory in bytes -######################### -get_total_memory() { - echo $(($(grep MemTotal /proc/meminfo | awk '{print $2}') / 1024)) -} - -######################### -# Redirects output to /dev/null if debug mode is disabled -# Globals: -# BITNAMI_DEBUG -# Arguments: -# $@ - Command to execute -# Returns: -# None -######################### -debug_execute() { - if ${BITNAMI_DEBUG:-false}; then - "$@" - else - "$@" >/dev/null 2>&1 - fi -} - -######################## -# Retries a command a given number of times -# Arguments: -# $1 - cmd (as a string) -# $2 - max retries. Default: 12 -# $3 - sleep between retries (in seconds). Default: 5 -# Returns: -# Boolean -######################### -retry_while() { - local -r cmd="${1:?cmd is missing}" - local -r retries="${2:-12}" - local -r sleep_time="${3:-5}" - local return_value=1 - - read -r -a command <<< "$cmd" - for ((i = 1 ; i <= retries ; i+=1 )); do - "${command[@]}" && return_value=0 && break - sleep "$sleep_time" - done - return $return_value -} diff --git a/bitnami/kong/1/debian-9/prebuildfs/libservice.sh b/bitnami/kong/1/debian-9/prebuildfs/libservice.sh deleted file mode 100644 index 0a83cd3d927f..000000000000 --- a/bitnami/kong/1/debian-9/prebuildfs/libservice.sh +++ /dev/null @@ -1,57 +0,0 @@ -#!/bin/bash -# -# Library for managing services - -# Functions - -######################## -# Read the provided pid file and returns a PID -# Arguments: -# $1 - Pid file -# Returns: -# PID -######################### -get_pid_from_file() { - local pid_file="${1:?pid file is missing}" - - if [[ -f "$pid_file" ]]; then - if [[ -n "$(< "$pid_file")" ]] && [[ "$(< "$pid_file")" -gt 0 ]]; then - echo "$(< "$pid_file")" - fi - fi -} - -######################## -# Check if a provided PID corresponds to a running service -# Arguments: -# $1 - PID -# Returns: -# Boolean -######################### -is_service_running() { - local pid="${1:?pid is missing}" - - kill -0 "$pid" 2>/dev/null -} - -######################## -# Stop a service by sending a termination signal to its pid -# Arguments: -# $1 - Pid file -# Returns: -# None -######################### -stop_service_using_pid() { - local pid_file="${1:?pid file is missing}" - local pid - - pid="$(get_pid_from_file "$pid_file")" - [[ -z "$pid" ]] || ! is_service_running "$pid" && return - - kill "$pid" - local counter=10 - while [[ "$counter" -ne 0 ]] && is_service_running "$pid"; do - sleep 1 - counter=$((counter - 1)) - done -} diff --git a/bitnami/kong/1/debian-9/prebuildfs/libvalidations.sh b/bitnami/kong/1/debian-9/prebuildfs/libvalidations.sh deleted file mode 100644 index ef9aaf0cf31f..000000000000 --- a/bitnami/kong/1/debian-9/prebuildfs/libvalidations.sh +++ /dev/null @@ -1,246 +0,0 @@ -#!/bin/bash -# -# Validation functions library - -# Load Generic Libraries -. /liblog.sh - -# Functions - -######################## -# Check if the provided argument is an integer -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_int() { - local -r int="${1:?missing value}" - if [[ "$int" =~ ^-?[0-9]+ ]]; then - true - else - false - fi -} - -######################## -# Check if the provided argument is a positive integer -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_positive_int() { - local -r int="${1:?missing value}" - if is_int "$int" && (( "${int}" >= 0 )); then - true - else - false - fi -} - -######################## -# Check if the provided argument is a boolean or is the string 'yes/true' -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_boolean_yes() { - local -r bool="${1:-}" - # comparison is performed without regard to the case of alphabetic characters - shopt -s nocasematch - if [[ "$bool" = 1 || "$bool" =~ ^(yes|true)$ ]]; then - true - else - false - fi -} - -######################## -# Check if the provided argument is a boolean yes/no value -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_yes_no_value() { - local -r bool="${1:-}" - if [[ "$bool" =~ ^(yes|no)$ ]]; then - true - else - false - fi -} - -######################## -# Check if the provided argument is a boolean true/false value -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_true_false_value() { - local -r bool="${1:-}" - if [[ "$bool" =~ ^(true|false)$ ]]; then - true - else - false - fi -} - -######################## -# Check if the provided argument is an empty string or not defined -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_empty_value() { - local -r val="${1:-}" - if [[ -z "$val" ]]; then - true - else - false - fi -} - -######################## -# Validate if the provided argument is a valid port -# Arguments: -# $1 - Port to validate -# Returns: -# Boolean and error message -######################### -validate_port() { - local value - local unprivileged=0 - - # Parse flags - while [[ "$#" -gt 0 ]]; do - case "$1" in - -unprivileged) - unprivileged=1 - ;; - --) - shift - break - ;; - -*) - stderr_print "unrecognized flag $1" - return 1 - ;; - *) - break - ;; - esac - shift - done - - if [[ "$#" -gt 1 ]]; then - echo "too many arguments provided" - return 2 - elif [[ "$#" -eq 0 ]]; then - stderr_print "missing port argument" - return 1 - else - value=$1 - fi - - if [[ -z "$value" ]]; then - echo "the value is empty" - return 1 - else - if ! is_int "$value"; then - echo "value is not an integer" - return 2 - elif [[ "$value" -lt 0 ]]; then - echo "negative value provided" - return 2 - elif [[ "$value" -gt 65535 ]]; then - echo "requested port is greater than 65535" - return 2 - elif [[ "$unprivileged" = 1 && "$value" -lt 1024 ]]; then - echo "privileged port requested" - return 3 - fi - fi -} - -######################## -# Validate if the provided argument is a valid IPv4 address -# Arguments: -# $1 - IP to validate -# Returns: -# Boolean -######################### -validate_ipv4() { - local ip="${1:?ip is missing}" - local stat=1 - - if [[ $ip =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then - read -r -a ip_array <<< "$(tr '.' ' ' <<< "$ip")" - [[ ${ip_array[0]} -le 255 && ${ip_array[1]} -le 255 \ - && ${ip_array[2]} -le 255 && ${ip_array[3]} -le 255 ]] - stat=$? - fi - return $stat -} - -######################## -# Validate a string format -# Arguments: -# $1 - String to validate -# Returns: -# Boolean -######################### -validate_string() { - local string - local min_length=-1 - local max_length=-1 - - # Parse flags - while [ "$#" -gt 0 ]; do - case "$1" in - -min-length) - shift - min_length=${1:-} - ;; - -max-length) - shift - max_length=${1:-} - ;; - --) - shift - break - ;; - -*) - stderr_print "unrecognized flag $1" - return 1 - ;; - *) - break - ;; - esac - shift - done - - if [ "$#" -gt 1 ]; then - stderr_print "too many arguments provided" - return 2 - elif [ "$#" -eq 0 ]; then - stderr_print "missing string" - return 1 - else - string=$1 - fi - - if [[ "$min_length" -ge 0 ]] && [[ "${#string}" -lt "$min_length" ]]; then - echo "string length is less than $min_length" - return 1 - fi - if [[ "$max_length" -ge 0 ]] && [[ "${#string}" -gt "$max_length" ]]; then - echo "string length is great than $max_length" - return 1 - fi -} diff --git a/bitnami/kong/1/debian-9/prebuildfs/libversion.sh b/bitnami/kong/1/debian-9/prebuildfs/libversion.sh deleted file mode 100644 index b16090cfe1f4..000000000000 --- a/bitnami/kong/1/debian-9/prebuildfs/libversion.sh +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/bash -# -# Library for managing versions strings - -# Load Generic Libraries -. ./liblog.sh - -# Functions -######################## -# Gets semantic version -# Arguments: -# $1 - version: string to extract major.minor.patch -# $2 - section: 1 to extract major, 2 to extract minor, 3 to extract patch -# Returns: -# array with the major, minor and release -######################### -get_sematic_version () { - local version="${1:?version is required}" - local section="${2:?section is required}" - local -a version_sections - - #Regex to parse versions: x.y.z - local -r regex='([0-9]+)(\.([0-9]+)(\.([0-9]+))?)?' - - if [[ "$version" =~ $regex ]]; then - local i=1 - local j=1 - local n=${#BASH_REMATCH[*]} - - while [[ $i -lt $n ]]; do - if [[ -n "${BASH_REMATCH[$i]}" ]] && [[ "${BASH_REMATCH[$i]:0:1}" != '.' ]]; then - version_sections[$j]=${BASH_REMATCH[$i]} - ((j++)) - fi - ((i++)) - done - - local number_regex='^[0-9]+$' - if [[ "$section" =~ $number_regex ]] && (( $section > 0 )) && (( $section <= 3 )); then - echo "${version_sections[$section]}" - return - else - stderr_print "Section allowed values are: 1, 2, and 3" - return 1 - fi - fi -} diff --git a/bitnami/kong/1/debian-9/prebuildfs/opt/bitnami/.exists b/bitnami/kong/1/debian-9/prebuildfs/opt/bitnami/.exists deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/bitnami/kong/1/debian-9/rootfs/entrypoint.sh b/bitnami/kong/1/debian-9/rootfs/entrypoint.sh deleted file mode 100755 index a6f9da9603c8..000000000000 --- a/bitnami/kong/1/debian-9/rootfs/entrypoint.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash - -# shellcheck disable=SC1091 - -set -o errexit -set -o nounset -set -o pipefail -#set -o xtrace # Uncomment this line for debugging purpose - -# Load libraries -. /libbitnami.sh -. /liblog.sh -. /libkong.sh - -eval "$(kong_env)" - -print_welcome_page - -if [[ "$*" = *"/run.sh"* ]]; then - info "** Starting Kong setup **" - /setup.sh - info "** Kong setup finished! **" -fi - -echo "" -exec "$@" diff --git a/bitnami/kong/1/debian-9/rootfs/libkong.sh b/bitnami/kong/1/debian-9/rootfs/libkong.sh deleted file mode 100644 index e93fad1818ba..000000000000 --- a/bitnami/kong/1/debian-9/rootfs/libkong.sh +++ /dev/null @@ -1,251 +0,0 @@ -#!/bin/bash -# -# Bitnami Kong library - -# shellcheck disable=SC1090 -# shellcheck disable=SC1091 - -# Load generic libraries -. /libfs.sh -. /liblog.sh -. /libnet.sh -. /libos.sh -. /libservice.sh -. /libvalidations.sh - -######################## -# Load global variables used for Kong configuration. -# Globals: -# KONG_* -# Arguments: -# None -# Returns: -# Series of exports to be used as 'eval' arguments -######################### -kong_env() { - # Avoid environment settings getting overridden twice - if [[ -n "${MODULE:-}" ]]; then - return - fi - - cat <<"EOF" -# Bitnami debug -export MODULE=kong -export BITNAMI_DEBUG="${BITNAMI_DEBUG:-false}" - -# Paths -export KONG_BASE_DIR="/opt/bitnami/kong" -export KONG_CONF_DIR="${KONG_BASE_DIR}/conf" -export KONG_SERVER_DIR="${KONG_BASE_DIR}/server" - -export KONG_CONF_FILE="${KONG_CONF_DIR}/kong.conf" -export KONG_DEFAULT_CONF_FILE="${KONG_CONF_DIR}/kong.conf.default" - -# Users -export KONG_DAEMON_USER="${KONG_DAEMON_USER:-kong}" -export KONG_DAEMON_GROUP="${KONG_DAEMON_GROUP:-kong}" - -# Cluster settings -export KONG_MIGRATE="${KONG_MIGRATE:-no}" - -# Port and service bind configurations for KONG_PROXY_LISTEN and KONG_ADMIN_LISTEN -# By setting these separately, we are consistent with other Bitnami solutions -# However it is still possible to directly set KONG_PROXY_LISTEN and KONG_ADMIN_LISTEN -export KONG_PROXY_LISTEN_ADDRESS="${KONG_PROXY_LISTEN_ADDRESS:-0.0.0.0}" -export KONG_PROXY_HTTP_PORT_NUMBER="${KONG_PROXY_HTTP_PORT_NUMBER:-8000}" -export KONG_PROXY_HTTPS_PORT_NUMBER="${KONG_PROXY_HTTPS_PORT_NUMBER:-8443}" -export KONG_ADMIN_LISTEN_ADDRESS="${KONG_ADMIN_LISTEN_ADDRESS:-127.0.0.1}" -export KONG_ADMIN_HTTP_PORT_NUMBER="${KONG_ADMIN_HTTP_PORT_NUMBER:-8001}" -export KONG_ADMIN_HTTPS_PORT_NUMBER="${KONG_ADMIN_HTTPS_PORT_NUMBER:-8444}" - -# Kong configuration -# These environment variables are used by Kong and allow overriding values in its configuration file -export KONG_NGINX_DAEMON="off" -EOF - - if am_i_root; then - cat <<"EOF" -export KONG_NGINX_USER="${KONG_DAEMON_USER} ${KONG_DAEMON_GROUP}" -EOF - fi - - if [[ -f "${KONG_CASSANDRA_PASSWORD_FILE:-}" ]]; then - cat <<"EOF" -export KONG_CASSANDRA_PASSWORD="$(< "${KONG_CASSANDRA_PASSWORD_FILE}")" -EOF - fi - - if [[ -f "${KONG_POSTGRESQL_PASSWORD_FILE:-}" ]]; then - cat <<"EOF" -export KONG_PG_PASSWORD="$(< "${KONG_POSTGRESQL_PASSWORD_FILE}")" -EOF - fi - - # Compound environment variables that form a single Kong configuration entry - if [[ -n "${KONG_PROXY_LISTEN:-}" ]]; then - cat <<"EOF" -export KONG_PROXY_LISTEN_OVERRIDE="yes" -EOF - else - cat <<"EOF" -export KONG_PROXY_LISTEN="${KONG_PROXY_LISTEN_ADDRESS}:${KONG_PROXY_HTTP_PORT_NUMBER}, ${KONG_PROXY_LISTEN_ADDRESS}:${KONG_PROXY_HTTPS_PORT_NUMBER} ssl" -export KONG_PROXY_LISTEN_OVERRIDE="no" -EOF - fi - if [[ -n "${KONG_ADMIN_LISTEN:-}" ]]; then - cat <<"EOF" -export KONG_ADMIN_LISTEN_OVERRIDE="yes" -EOF - else - cat <<"EOF" -export KONG_ADMIN_LISTEN="${KONG_ADMIN_LISTEN_ADDRESS}:${KONG_ADMIN_HTTP_PORT_NUMBER}, ${KONG_ADMIN_LISTEN_ADDRESS}:${KONG_ADMIN_HTTPS_PORT_NUMBER} ssl" -export KONG_ADMIN_LISTEN_OVERRIDE="no" -EOF - fi -} - -######################## -# Validate settings in KONG_* environment variables -# Globals: -# KONG_* -# Arguments: -# None -# Returns: -# None -######################### -kong_validate() { - info "Validating settings in KONG_* env vars" - local error_code=0 - - # Auxiliary functions - - print_validation_error() { - error "$1" - error_code="1" - } - - check_yes_no_value() { - if ! is_yes_no_value "${!1}"; then - print_validation_error "The allowed values for ${1} are [yes, no]" - fi - } - - check_password_file() { - if [[ -n "${!1:-}" ]] && ! [[ -f "${!1:-}" ]]; then - print_validation_error "The variable ${1} is defined but the file ${!1} is not accessible or does not exist" - fi - } - - check_resolved_hostname() { - if ! is_hostname_resolved "$1"; then - warn "Hostname ${1} could not be resolved, this could lead to connection issues" - fi - } - - check_allowed_port() { - local validate_port_args=() - ! am_i_root && validate_port_args+=("-unprivileged") - if ! err="$(validate_port "${validate_port_args[@]}" "${!1}")"; then - print_validation_error "An invalid port was specified in the environment variable ${1}: ${err}" - fi - } - - check_conflicting_ports() { - local -r total="$#" - for i in $(seq 1 "$((total - 1))"); do - for j in $(seq "$((i + 1))" "$total"); do - if (( "${!i}" == "${!j}" )); then - print_validation_error "${!i} and ${!j} are bound to the same port" - fi - done - done - } - - check_yes_no_value KONG_MIGRATE - - # Validate some of the supported environment variables used by Kong - - # Database setting validations - if [[ "${KONG_DATABASE:-postgres}" = "postgres" ]]; then - # PostgreSQL is the default database type - check_password_file KONG_POSTGRESQL_PASSWORD_FILE - [[ -n "${KONG_PG_HOST:-}" ]] && check_resolved_hostname "${KONG_PG_HOST:-}" - if [[ -n "${!KONG_CASSANDRA_@}" ]]; then - warn "KONG_DATABASE is empty or set to 'postgres', so the following environment variables will be ignored: ${!KONG_CASSANDRA_@}" - fi - elif [[ "${KONG_DATABASE:-}" = "cassandra" ]]; then - check_password_file KONG_CASSANDRA_PASSWORD_FILE - for cassandra_contact_point in $(echo "${CASSANDRA_CONTACT_POINTS:-}" | sed -r 's/[, ]+/\n/'); do - check_resolved_hostname "${cassandra_contact_point}" - done - if [[ -n "${!KONG_PG_@}" ]]; then - warn "KONG_DATABASE is set to 'cassandra', so the following environment variables will be ignored: ${!KONG_PG_@}" - fi - elif [[ "${KONG_DATABASE:-}" = "off" ]]; then - warn "KONG_DATABASE is set to 'off', Kong will run but data will not be persisted" - else - print_validation_error "Wrong value '${KONG_DATABASE}' passed to KONG_DATABASE. Valid values: 'off', 'cassandra', 'postgres'" - fi - - # Listen addresses and port validations - used_ports=() - if is_boolean_yes "$KONG_PROXY_LISTEN_OVERRIDE"; then - warn "KONG_PROXY_LISTEN was set, it will not be validated and the environment variables KONG_PROXY_LISTEN_ADDRESS, KONG_PROXY_HTTP_PORT_NUMBER and KONG_PROXY_HTTPS_PORT_NUMBER will be ignored" - else - used_ports+=(KONG_PROXY_HTTP_PORT_NUMBER KONG_PROXY_HTTPS_PORT_NUMBER) - if [[ "$KONG_PROXY_LISTEN_ADDRESS" != "0.0.0.0" && "$KONG_PROXY_LISTEN_ADDRESS" != "127.0.0.1" ]]; then - warn "Kong Proxy is set to listen at ${KONG_PROXY_LISTEN_ADDRESS} instead of 0.0.0.0 or 127.0.0.1, this could make Kong inaccessible" - fi - fi - if is_boolean_yes "$KONG_ADMIN_LISTEN_OVERRIDE"; then - warn "KONG_ADMIN_LISTEN was set, it will not be validated and the environment variables KONG_ADMIN_LISTEN_ADDRESS, KONG_ADMIN_HTTP_PORT_NUMBER and KONG_ADMIN_HTTPS_PORT_NUMBER will be ignored" - else - used_ports+=(KONG_ADMIN_HTTP_PORT_NUMBER KONG_ADMIN_HTTPS_PORT_NUMBER) - if [[ "$KONG_ADMIN_LISTEN_ADDRESS" != "127.0.0.1" ]]; then - warn "Kong Admin is set to listen at ${KONG_ADMIN_LISTEN_ADDRESS} instead of 127.0.0.1, opening it to the outside could make it insecure" - fi - fi - for port in "${used_ports[@]}"; do - check_allowed_port "${port}" - done - if [[ "${#used_ports[@]}" -ne 0 ]]; then - check_conflicting_ports "${used_ports[@]}" - fi - - # Quit if any failures occurred - [[ "$error_code" -eq 0 ]] || exit "$error_code" -} - -######################## -# Ensure Kong is initialized -# Globals: -# KONG_* -# Arguments: -# None -# Returns: -# None -######################### -kong_initialize() { - info "Initializing Kong" - - info "Waiting for database connection to succeed" - - while ! kong_migrations_list_output="$(kong migrations list 2>&1)"; do - if is_boolean_yes "$KONG_MIGRATE" && [[ "$kong_migrations_list_output" =~ "Database needs bootstrapping"* ]]; then - break - fi - debug "$kong_migrations_list_output" - debug "Database is still not ready, will retry" - sleep 1 - done - - if is_boolean_yes "$KONG_MIGRATE"; then - info "Migrating database" - kong migrations bootstrap - while ! kong migrations list; do - debug "Error during the initial bootstrap for the database, will retry" - kong migrations up - kong migrations finish - done - fi -} diff --git a/bitnami/kong/1/debian-9/rootfs/licenses/licenses.txt b/bitnami/kong/1/debian-9/rootfs/licenses/licenses.txt deleted file mode 100644 index c76ba31f3b8a..000000000000 --- a/bitnami/kong/1/debian-9/rootfs/licenses/licenses.txt +++ /dev/null @@ -1,3 +0,0 @@ -Bitnami containers ship with software bundles. You can find the licenses under: -/opt/bitnami/nami/COPYING -/opt/bitnami/[name-of-bundle]/licenses/[bundle-version].txt diff --git a/bitnami/kong/1/debian-9/rootfs/postunpack.sh b/bitnami/kong/1/debian-9/rootfs/postunpack.sh deleted file mode 100755 index f19e435173e2..000000000000 --- a/bitnami/kong/1/debian-9/rootfs/postunpack.sh +++ /dev/null @@ -1,70 +0,0 @@ -#!/bin/bash - -# shellcheck disable=SC1091 - -set -o errexit -set -o nounset -set -o pipefail -# set -o xtrace # Uncomment this line for debugging purpose - -. /libfs.sh -. /libos.sh -. /libkong.sh - -# Auxiliar functions - -######################## -# Set a configuration to Kong's configuration file -# Globals: -# KONG_CONF_FILE -# Arguments: -# $1 - key -# $2 - value -# Returns: -# None -######################### -kong_conf_set() { - local -r key="${1:?missing key}" - local -r value="${2:-}" - - # Check if the value was commented or set before - if grep -q "^#*${key}\s*=[^#]*" "$KONG_CONF_FILE"; then - debug "Updating entry for property '${key}' in configuration file" - # Update the existing key (leave trailing space for comments) - sed -ri "s|^(#*${key}\s*=)[^#]*|\1 ${value} |" "$KONG_CONF_FILE" - else - debug "Adding new entry for property '${key}' in configuration file" - # Add a new key - printf '%s = %s\n' "$key" "$value" >>"$KONG_CONF_FILE" - fi -} - -######################## -# Uncomment non-empty entries in Kong configuration -# Globals: -# KONG_CONF_FILE -# Arguments: -# None -# Returns: -# None -######################### -kong_configure_non_empty_values() { - # Uncomment all non-empty keys in the main Kong configuration file - sed -ri 's/^#+([a-z_ ]+)=(\s*[^# ]+)/\1=\2 /' "$KONG_CONF_FILE" -} - -# Load Kong environment variables -eval "$(kong_env)" - -# Ensure users and groups used by Kong exist -ensure_user_exists "$KONG_DAEMON_USER" "$KONG_DAEMON_GROUP" -# Ensure directories used by Kong exist and have proper permissions -ensure_dir_exists "$KONG_SERVER_DIR" -chmod -R g+rwX "$KONG_SERVER_DIR" "$KONG_CONF_DIR" -# Copy configuration file and set default values -cp "$KONG_DEFAULT_CONF_FILE" "$KONG_CONF_FILE" -kong_conf_set prefix "$KONG_SERVER_DIR" -kong_conf_set nginx_daemon off -kong_conf_set lua_package_path -kong_conf_set nginx_user -kong_configure_non_empty_values diff --git a/bitnami/kong/1/debian-9/rootfs/run.sh b/bitnami/kong/1/debian-9/rootfs/run.sh deleted file mode 100755 index e1a409e62410..000000000000 --- a/bitnami/kong/1/debian-9/rootfs/run.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -# shellcheck disable=SC1091 - -set -o errexit -set -o nounset -set -o pipefail -# set -o xtrace # Uncomment this line for debugging purpose - -# Load libraries -. /liblog.sh -. /libos.sh -. /libkong.sh - -# Load Kong environment variables -eval "$(kong_env)" - -info "** Starting Kong **" - -exec kong start diff --git a/bitnami/kong/1/debian-9/rootfs/setup.sh b/bitnami/kong/1/debian-9/rootfs/setup.sh deleted file mode 100755 index 97a3f821c294..000000000000 --- a/bitnami/kong/1/debian-9/rootfs/setup.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -# shellcheck disable=SC1091 - -set -o errexit -set -o nounset -set -o pipefail -# set -o xtrace # Uncomment this line for debugging purpose - -# Load libraries -. /libos.sh -. /libkong.sh - -# Load Kong environment variables -eval "$(kong_env)" - -# Ensure Kong environment variables are valid -kong_validate -# Ensure file ownership is correct -am_i_root && chown -R "$KONG_DAEMON_USER":"$KONG_DAEMON_GROUP" "$KONG_SERVER_DIR" "$KONG_CONF_DIR" -# Ensure Kong is initialized -kong_initialize From e6ecbf8e3da4cae6c44107abf333939b234f2787 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 24 Jan 2020 17:28:07 +0000 Subject: [PATCH 243/950] 1.5.0-ol-7-r2 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index d4c600b548e2..dc271206c69b 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.5.0-ol-7-r1" \ + BITNAMI_IMAGE_VERSION="1.5.0-ol-7-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 525ce5a6c1ab..d40827b61fc5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.5.0-ol-7-r1` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r1/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.5.0-ol-7-r2` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r2/1/ol-7/Dockerfile) * [`1-debian-10`, `1.5.0-debian-10-r0`, `1`, `1.5.0`, `1.5.0-r0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r0/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c7708f2654500454e04db9ba425bc6ab69d6dcaf Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 25 Jan 2020 01:27:39 +0000 Subject: [PATCH 244/950] 1.5.0-debian-10-r1 release --- bitnami/kong/1/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-10/Dockerfile b/bitnami/kong/1/debian-10/Dockerfile index 1e9cf03ad792..cdea23f8e815 100644 --- a/bitnami/kong/1/debian-10/Dockerfile +++ b/bitnami/kong/1/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d40827b61fc5..0047afe0f581 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.5.0-ol-7-r2` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r2/1/ol-7/Dockerfile) -* [`1-debian-10`, `1.5.0-debian-10-r0`, `1`, `1.5.0`, `1.5.0-r0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r0/1/debian-10/Dockerfile) +* [`1-debian-10`, `1.5.0-debian-10-r1`, `1`, `1.5.0`, `1.5.0-r1`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r1/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 345b772b33301b6b29104b0913a9021f71647124 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 25 Jan 2020 23:35:39 +0000 Subject: [PATCH 245/950] 1.5.0-ol-7-r3 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index dc271206c69b..2f1a75b206d9 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.5.0-ol-7-r2" \ + BITNAMI_IMAGE_VERSION="1.5.0-ol-7-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0047afe0f581..3c6d33ce099e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.5.0-ol-7-r2` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r2/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.5.0-ol-7-r3` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r3/1/ol-7/Dockerfile) * [`1-debian-10`, `1.5.0-debian-10-r1`, `1`, `1.5.0`, `1.5.0-r1`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r1/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b1ce926707342d8c16b2e200b0d4cf7368f0d13b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 26 Jan 2020 08:11:03 +0000 Subject: [PATCH 246/950] 1.5.0-debian-10-r2 release --- bitnami/kong/1/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-10/Dockerfile b/bitnami/kong/1/debian-10/Dockerfile index cdea23f8e815..a314df75ed1e 100644 --- a/bitnami/kong/1/debian-10/Dockerfile +++ b/bitnami/kong/1/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 3c6d33ce099e..60c5514ed418 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.5.0-ol-7-r3` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r3/1/ol-7/Dockerfile) -* [`1-debian-10`, `1.5.0-debian-10-r1`, `1`, `1.5.0`, `1.5.0-r1`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r1/1/debian-10/Dockerfile) +* [`1-debian-10`, `1.5.0-debian-10-r2`, `1`, `1.5.0`, `1.5.0-r2`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r2/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e6dae42280de8101972d768652fa27f13ef6e495 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 27 Jan 2020 05:43:07 +0000 Subject: [PATCH 247/950] 1.5.0-ol-7-r4 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 2f1a75b206d9..1f4d8eebe262 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.5.0-ol-7-r3" \ + BITNAMI_IMAGE_VERSION="1.5.0-ol-7-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 60c5514ed418..2955c90428ad 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.5.0-ol-7-r3` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r3/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.5.0-ol-7-r4` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r4/1/ol-7/Dockerfile) * [`1-debian-10`, `1.5.0-debian-10-r2`, `1`, `1.5.0`, `1.5.0-r2`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r2/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9ac1689a55fd3f81dd0460173e42b6a0a723a20b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 27 Jan 2020 14:20:42 +0000 Subject: [PATCH 248/950] 1.5.0-debian-10-r3 release --- bitnami/kong/1/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-10/Dockerfile b/bitnami/kong/1/debian-10/Dockerfile index a314df75ed1e..b795da88108e 100644 --- a/bitnami/kong/1/debian-10/Dockerfile +++ b/bitnami/kong/1/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2955c90428ad..43b43d8b6103 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.5.0-ol-7-r4` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r4/1/ol-7/Dockerfile) -* [`1-debian-10`, `1.5.0-debian-10-r2`, `1`, `1.5.0`, `1.5.0-r2`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r2/1/debian-10/Dockerfile) +* [`1-debian-10`, `1.5.0-debian-10-r3`, `1`, `1.5.0`, `1.5.0-r3`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r3/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 6bd9cad3a80bdb2832c3378728eb92312d8fe4af Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 28 Jan 2020 11:52:31 +0000 Subject: [PATCH 249/950] 1.5.0-ol-7-r5 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 1f4d8eebe262..c6bcd767b360 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.5.0-ol-7-r4" \ + BITNAMI_IMAGE_VERSION="1.5.0-ol-7-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 43b43d8b6103..c47ad214db15 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,8 +51,8 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.5.0-ol-7-r4` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r4/1/ol-7/Dockerfile) -* [`1-debian-10`, `1.5.0-debian-10-r3`, `1`, `1.5.0`, `1.5.0-r3`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r3/1/debian-10/Dockerfile) +* [`1-ol-7`, `1.5.0-ol-7-r5` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r5/1/ol-7/Dockerfile) +* [`1-debian-10`, `1.5.0-debian-10-r3`, `1`, `1.5.0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r3/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 72d4fc77e6a9c0a164a9a05fb4785c16d962fb98 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 28 Jan 2020 20:29:17 +0000 Subject: [PATCH 250/950] 1.5.0-debian-10-r4 release --- bitnami/kong/1/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-10/Dockerfile b/bitnami/kong/1/debian-10/Dockerfile index b795da88108e..796027e94602 100644 --- a/bitnami/kong/1/debian-10/Dockerfile +++ b/bitnami/kong/1/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c47ad214db15..717379afefa2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.5.0-ol-7-r5` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r5/1/ol-7/Dockerfile) -* [`1-debian-10`, `1.5.0-debian-10-r3`, `1`, `1.5.0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r3/1/debian-10/Dockerfile) +* [`1-debian-10`, `1.5.0-debian-10-r4`, `1`, `1.5.0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r4/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ce509b31315f998c6cd031f96f2bf764e094fd76 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 29 Jan 2020 19:48:12 +0000 Subject: [PATCH 251/950] 1.5.0-ol-7-r6 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index c6bcd767b360..aa5a278a4608 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.5.0-ol-7-r5" \ + BITNAMI_IMAGE_VERSION="1.5.0-ol-7-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 717379afefa2..5fcfe64bc26f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.5.0-ol-7-r5` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r5/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.5.0-ol-7-r6` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r6/1/ol-7/Dockerfile) * [`1-debian-10`, `1.5.0-debian-10-r4`, `1`, `1.5.0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r4/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c44c833827e5f36d6a469ea508eebaf184e2dc9a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 30 Jan 2020 02:38:38 +0000 Subject: [PATCH 252/950] 1.5.0-debian-10-r5 release --- bitnami/kong/1/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-10/Dockerfile b/bitnami/kong/1/debian-10/Dockerfile index 796027e94602..524ca90f12fc 100644 --- a/bitnami/kong/1/debian-10/Dockerfile +++ b/bitnami/kong/1/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 5fcfe64bc26f..edc7c758879c 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.5.0-ol-7-r6` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r6/1/ol-7/Dockerfile) -* [`1-debian-10`, `1.5.0-debian-10-r4`, `1`, `1.5.0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r4/1/debian-10/Dockerfile) +* [`1-debian-10`, `1.5.0-debian-10-r5`, `1`, `1.5.0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r5/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d59b0a7b7b084f68d7efd48a1565a5b5c2bb15a2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 31 Jan 2020 01:59:54 +0000 Subject: [PATCH 253/950] 1.5.0-ol-7-r7 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index aa5a278a4608..eacab7116779 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.5.0-ol-7-r6" \ + BITNAMI_IMAGE_VERSION="1.5.0-ol-7-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index edc7c758879c..854e35a5464a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.5.0-ol-7-r6` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r6/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.5.0-ol-7-r7` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r7/1/ol-7/Dockerfile) * [`1-debian-10`, `1.5.0-debian-10-r5`, `1`, `1.5.0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r5/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From da11512b3496285a47fb95fa604fcb8235bac9e5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 31 Jan 2020 08:48:41 +0000 Subject: [PATCH 254/950] 1.5.0-debian-10-r6 release --- bitnami/kong/1/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-10/Dockerfile b/bitnami/kong/1/debian-10/Dockerfile index 524ca90f12fc..c836b7f5c21c 100644 --- a/bitnami/kong/1/debian-10/Dockerfile +++ b/bitnami/kong/1/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 854e35a5464a..f9adcae684f6 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.5.0-ol-7-r7` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r7/1/ol-7/Dockerfile) -* [`1-debian-10`, `1.5.0-debian-10-r5`, `1`, `1.5.0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r5/1/debian-10/Dockerfile) +* [`1-debian-10`, `1.5.0-debian-10-r6`, `1`, `1.5.0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r6/1/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 3af7a97731f06c368b24217e50842bdf75154cd6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 1 Feb 2020 08:09:56 +0000 Subject: [PATCH 255/950] 1.5.0-ol-7-r8 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index eacab7116779..492f31e1fb8f 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.5.0-ol-7-r7" \ + BITNAMI_IMAGE_VERSION="1.5.0-ol-7-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f9adcae684f6..15a1d77348c3 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,8 +51,10 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.5.0-ol-7-r7` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r7/1/ol-7/Dockerfile) -* [`1-debian-10`, `1.5.0-debian-10-r6`, `1`, `1.5.0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r6/1/debian-10/Dockerfile) +* [`1-ol-7`, `1.5.0-ol-7-r8` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r8/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.5.0-ol-7-r0` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r0/2/ol-7/Dockerfile) +* [`1-debian-10`, `1.5.0-debian-10-r6`, `1`, `1.5.0` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r6/1/debian-10/Dockerfile) +* [`1-debian-10`, `1.5.0-debian-10-r0`, `1`, `1.5.0` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). @@ -73,7 +75,7 @@ $ docker pull bitnami/kong:[TAG] If you wish, you can also build the image yourself. ```bash -$ docker build -t bitnami/kong:latest 'https://github.com/bitnami/bitnami-docker-kong.git#master:1/debian-10' + ``` # Connecting to other containers From 767891fb6f86c472bef4176b6104b6026710ac69 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 1 Feb 2020 14:57:28 +0000 Subject: [PATCH 256/950] 1.5.0-debian-10-r7 release --- bitnami/kong/1/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-10/Dockerfile b/bitnami/kong/1/debian-10/Dockerfile index c836b7f5c21c..ec82259c9ad7 100644 --- a/bitnami/kong/1/debian-10/Dockerfile +++ b/bitnami/kong/1/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 15a1d77348c3..90d9e7a81d87 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -53,7 +53,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.5.0-ol-7-r8` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r8/1/ol-7/Dockerfile) * [`1-ol-7`, `1.5.0-ol-7-r0` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r0/2/ol-7/Dockerfile) -* [`1-debian-10`, `1.5.0-debian-10-r6`, `1`, `1.5.0` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r6/1/debian-10/Dockerfile) +* [`1-debian-10`, `1.5.0-debian-10-r7`, `1`, `1.5.0` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r7/1/debian-10/Dockerfile) * [`1-debian-10`, `1.5.0-debian-10-r0`, `1`, `1.5.0` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 1294a2603e05be0fa25ce7582097d29463332555 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 2 Feb 2020 14:18:09 +0000 Subject: [PATCH 257/950] 1.5.0-ol-7-r9 release --- bitnami/kong/1/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile index 492f31e1fb8f..5510e40ea76c 100644 --- a/bitnami/kong/1/ol-7/Dockerfile +++ b/bitnami/kong/1/ol-7/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.5.0-ol-7-r8" \ + BITNAMI_IMAGE_VERSION="1.5.0-ol-7-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 90d9e7a81d87..20c3d29d7312 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.5.0-ol-7-r8` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r8/1/ol-7/Dockerfile) +* [`1-ol-7`, `1.5.0-ol-7-r9` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r9/1/ol-7/Dockerfile) * [`1-ol-7`, `1.5.0-ol-7-r0` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r0/2/ol-7/Dockerfile) * [`1-debian-10`, `1.5.0-debian-10-r7`, `1`, `1.5.0` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r7/1/debian-10/Dockerfile) * [`1-debian-10`, `1.5.0-debian-10-r0`, `1`, `1.5.0` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r0/2/debian-10/Dockerfile) From 0343e9ba7a9ee98a1f097deb805ba7cf159522c7 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 2 Feb 2020 21:05:08 +0000 Subject: [PATCH 258/950] 1.5.0-debian-10-r8 release --- bitnami/kong/1/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/1/debian-10/Dockerfile b/bitnami/kong/1/debian-10/Dockerfile index ec82259c9ad7..096f59f6bb22 100644 --- a/bitnami/kong/1/debian-10/Dockerfile +++ b/bitnami/kong/1/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 20c3d29d7312..1c641fa3a695 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -53,7 +53,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`1-ol-7`, `1.5.0-ol-7-r9` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r9/1/ol-7/Dockerfile) * [`1-ol-7`, `1.5.0-ol-7-r0` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r0/2/ol-7/Dockerfile) -* [`1-debian-10`, `1.5.0-debian-10-r7`, `1`, `1.5.0` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r7/1/debian-10/Dockerfile) +* [`1-debian-10`, `1.5.0-debian-10-r8`, `1`, `1.5.0` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r8/1/debian-10/Dockerfile) * [`1-debian-10`, `1.5.0-debian-10-r0`, `1`, `1.5.0` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 23406778598081e361813557bfa987454d20c92e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 3 Feb 2020 17:29:59 +0000 Subject: [PATCH 259/950] 2.0.0-debian-10-r0 release --- bitnami/kong/2/debian-10/Dockerfile | 27 ++ bitnami/kong/2/debian-10/docker-compose.yml | 22 ++ .../prebuildfs/build/install-gosu.sh | 10 + .../kong/2/debian-10/prebuildfs/libbitnami.sh | 50 ++++ .../2/debian-10/prebuildfs/libcomponent.sh | 64 +++++ .../kong/2/debian-10/prebuildfs/libfile.sh | 22 ++ bitnami/kong/2/debian-10/prebuildfs/libfs.sh | 129 +++++++++ bitnami/kong/2/debian-10/prebuildfs/liblog.sh | 83 ++++++ bitnami/kong/2/debian-10/prebuildfs/libnet.sh | 44 +++ bitnami/kong/2/debian-10/prebuildfs/libos.sh | 132 +++++++++ .../kong/2/debian-10/prebuildfs/libservice.sh | 57 ++++ .../2/debian-10/prebuildfs/libvalidations.sh | 246 +++++++++++++++++ .../kong/2/debian-10/prebuildfs/libversion.sh | 47 ++++ .../debian-10/prebuildfs/opt/bitnami/.exists | 0 bitnami/kong/2/debian-10/rootfs/entrypoint.sh | 26 ++ bitnami/kong/2/debian-10/rootfs/libkong.sh | 251 ++++++++++++++++++ .../2/debian-10/rootfs/licenses/licenses.txt | 3 + bitnami/kong/2/debian-10/rootfs/postunpack.sh | 70 +++++ bitnami/kong/2/debian-10/rootfs/run.sh | 20 ++ bitnami/kong/2/debian-10/rootfs/setup.sh | 22 ++ bitnami/kong/README.md | 8 +- bitnami/kong/docker-compose.yml | 2 +- 22 files changed, 1329 insertions(+), 6 deletions(-) create mode 100644 bitnami/kong/2/debian-10/Dockerfile create mode 100644 bitnami/kong/2/debian-10/docker-compose.yml create mode 100755 bitnami/kong/2/debian-10/prebuildfs/build/install-gosu.sh create mode 100644 bitnami/kong/2/debian-10/prebuildfs/libbitnami.sh create mode 100644 bitnami/kong/2/debian-10/prebuildfs/libcomponent.sh create mode 100644 bitnami/kong/2/debian-10/prebuildfs/libfile.sh create mode 100644 bitnami/kong/2/debian-10/prebuildfs/libfs.sh create mode 100644 bitnami/kong/2/debian-10/prebuildfs/liblog.sh create mode 100644 bitnami/kong/2/debian-10/prebuildfs/libnet.sh create mode 100644 bitnami/kong/2/debian-10/prebuildfs/libos.sh create mode 100644 bitnami/kong/2/debian-10/prebuildfs/libservice.sh create mode 100644 bitnami/kong/2/debian-10/prebuildfs/libvalidations.sh create mode 100644 bitnami/kong/2/debian-10/prebuildfs/libversion.sh create mode 100644 bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.exists create mode 100755 bitnami/kong/2/debian-10/rootfs/entrypoint.sh create mode 100644 bitnami/kong/2/debian-10/rootfs/libkong.sh create mode 100644 bitnami/kong/2/debian-10/rootfs/licenses/licenses.txt create mode 100755 bitnami/kong/2/debian-10/rootfs/postunpack.sh create mode 100755 bitnami/kong/2/debian-10/rootfs/run.sh create mode 100755 bitnami/kong/2/debian-10/rootfs/setup.sh diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile new file mode 100644 index 000000000000..2ab96fb2842c --- /dev/null +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -0,0 +1,27 @@ +FROM bitnami/minideb:buster +LABEL maintainer "Bitnami " + +ENV HOME="/" \ + OS_ARCH="amd64" \ + OS_FLAVOUR="debian-10" \ + OS_NAME="linux" + +COPY prebuildfs / +# Install required system packages and dependencies +RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps sudo unzip zlib1g +RUN . ./libcomponent.sh && component_unpack "kong" "2.0.0-0" --checksum 8c2ce230a991ffe822de8f451add6dfa6c4fbedd6d01f8bce94898ce1d821dc0 +RUN apt-get update && apt-get upgrade && \ + rm -r /var/lib/apt/lists /var/cache/apt/archives +RUN /build/install-gosu.sh + +COPY rootfs / +RUN /postunpack.sh +ENV BITNAMI_APP_NAME="kong" \ + BITNAMI_IMAGE_VERSION="2.0.0-debian-10-r0" \ + PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" + +EXPOSE 8000 8001 8443 8444 + +USER 1001 +ENTRYPOINT [ "/entrypoint.sh" ] +CMD [ "/run.sh" ] diff --git a/bitnami/kong/2/debian-10/docker-compose.yml b/bitnami/kong/2/debian-10/docker-compose.yml new file mode 100644 index 000000000000..c1c4b2c620ad --- /dev/null +++ b/bitnami/kong/2/debian-10/docker-compose.yml @@ -0,0 +1,22 @@ +version: '2' +services: + postgresql: + image: bitnami/postgresql:11 + volumes: + - postgresql_data:/bitnami/postgresql + environment: + - POSTGRESQL_USERNAME=kong + - POSTGRESQL_PASSWORD=bitnami + - POSTGRESQL_DATABASE=kong + kong: + image: bitnami/kong:2 + ports: + - 8000:8000 + - 8443:8443 + environment: + - KONG_MIGRATE=yes + - KONG_PG_HOST=postgresql + - KONG_PG_PASSWORD=bitnami +volumes: + postgresql_data: + driver: local diff --git a/bitnami/kong/2/debian-10/prebuildfs/build/install-gosu.sh b/bitnami/kong/2/debian-10/prebuildfs/build/install-gosu.sh new file mode 100755 index 000000000000..1756700daa89 --- /dev/null +++ b/bitnami/kong/2/debian-10/prebuildfs/build/install-gosu.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +VERSION="1.11" +SHA256="0b843df6d86e270c5b0f5cbd3c326a04e18f4b7f9b8457fa497b0454c4b138d7" + +curl --silent -L "https://github.com/tianon/gosu/releases/download/${VERSION}/gosu-amd64" > "/usr/local/bin/gosu" +echo "$SHA256" "/usr/local/bin/gosu" | sha256sum --check +chmod u+x "/usr/local/bin/gosu" +mkdir -p "/opt/bitnami/licenses" +curl --silent -L "https://raw.githubusercontent.com/tianon/gosu/master/LICENSE" > "/opt/bitnami/licenses/gosu-${VERSION}.txt" diff --git a/bitnami/kong/2/debian-10/prebuildfs/libbitnami.sh b/bitnami/kong/2/debian-10/prebuildfs/libbitnami.sh new file mode 100644 index 000000000000..529c3fd4a3e2 --- /dev/null +++ b/bitnami/kong/2/debian-10/prebuildfs/libbitnami.sh @@ -0,0 +1,50 @@ +#!/bin/bash +# +# Bitnami custom library + +# Load Generic Libraries +. /liblog.sh + +# Constants +BOLD='\033[1m' + +# Functions + +######################## +# Print the welcome page +# Globals: +# DISABLE_WELCOME_MESSAGE +# BITNAMI_APP_NAME +# Arguments: +# None +# Returns: +# None +######################### +print_welcome_page() { + if [[ -z "${DISABLE_WELCOME_MESSAGE:-}" ]]; then + if [[ -n "$BITNAMI_APP_NAME" ]]; then + print_image_welcome_page + fi + fi +} + +######################## +# Print the welcome page for a Bitnami Docker image +# Globals: +# BITNAMI_APP_NAME +# Arguments: +# None +# Returns: +# None +######################### +print_image_welcome_page() { + local github_url="https://github.com/bitnami/bitnami-docker-${BITNAMI_APP_NAME}" + + log "" + log "${BOLD}Welcome to the Bitnami ${BITNAMI_APP_NAME} container${RESET}" + log "Subscribe to project updates by watching ${BOLD}${github_url}${RESET}" + log "Submit issues and feature requests at ${BOLD}${github_url}/issues${RESET}" + log "Send us your feedback at ${BOLD}containers@bitnami.com${RESET}" + log "" +} + diff --git a/bitnami/kong/2/debian-10/prebuildfs/libcomponent.sh b/bitnami/kong/2/debian-10/prebuildfs/libcomponent.sh new file mode 100644 index 000000000000..025288664f69 --- /dev/null +++ b/bitnami/kong/2/debian-10/prebuildfs/libcomponent.sh @@ -0,0 +1,64 @@ +#!/bin/bash +# +# Library for managing Bitnami components + +# Constants +CACHE_ROOT="/tmp/bitnami/pkg/cache" +DOWNLOAD_URL="https://downloads.bitnami.com/files/stacksmith" + +# Functions + +######################## +# Download and unpack a Bitnami package +# Globals: +# OS_NAME +# OS_ARCH +# OS_FLAVOUR +# Arguments: +# $1 - component's name +# $2 - component's version +# Returns: +# None +######################### +component_unpack() { + local name="${1:?name is required}" + local version="${2:?version is required}" + local base_name="${name}-${version}-${OS_NAME}-${OS_ARCH}-${OS_FLAVOUR}" + local package_sha256="" + + # Validate arguments + shift 2 + while [ "$#" -gt 0 ]; do + case "$1" in + -c|--checksum) + shift + package_sha256="${1:?missing package checksum}" + ;; + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; + esac + shift + done + + echo "Downloading $base_name package" + if [ -f "${CACHE_ROOT}/${base_name}.tar.gz" ]; then + echo "${CACHE_ROOT}/${base_name}.tar.gz already exists, skipping download." + cp "${CACHE_ROOT}/${base_name}.tar.gz" . + rm "${CACHE_ROOT}/${base_name}.tar.gz" + if [ -f "${CACHE_ROOT}/${base_name}.tar.gz.sha256" ]; then + echo "Using the local sha256 from ${CACHE_ROOT}/${base_name}.tar.gz.sha256" + package_sha256="$(< "${CACHE_ROOT}/${base_name}.tar.gz.sha256")" + rm "${CACHE_ROOT}/${base_name}.tar.gz.sha256" + fi + else + curl --remote-name --silent "${DOWNLOAD_URL}/${base_name}.tar.gz" + fi + if [ -n "$package_sha256" ]; then + echo "Verifying package integrity" + echo "$package_sha256 ${base_name}.tar.gz" | sha256sum --check - + fi + tar --directory /opt/bitnami --extract --gunzip --file "${base_name}.tar.gz" --no-same-owner --strip-components=2 "${base_name}/files/" + rm "${base_name}.tar.gz" +} diff --git a/bitnami/kong/2/debian-10/prebuildfs/libfile.sh b/bitnami/kong/2/debian-10/prebuildfs/libfile.sh new file mode 100644 index 000000000000..12010f043e49 --- /dev/null +++ b/bitnami/kong/2/debian-10/prebuildfs/libfile.sh @@ -0,0 +1,22 @@ +#!/bin/bash +# +# Library for managing files + +# Functions + +######################## +# Ensure a line exists in the file by replacing a matching line. +# Arguments: +# $1 - filename +# $2 - line +# $3 - match +# Returns: +# None +######################### +file_contains_line() { + local filename="${1:?filename is required}" + local line="${2:?line is required}" + local match="${3:?match is required}" + + sed --in-place "s/^$match\$/$line/" "$filename" +} diff --git a/bitnami/kong/2/debian-10/prebuildfs/libfs.sh b/bitnami/kong/2/debian-10/prebuildfs/libfs.sh new file mode 100644 index 000000000000..10a24735c096 --- /dev/null +++ b/bitnami/kong/2/debian-10/prebuildfs/libfs.sh @@ -0,0 +1,129 @@ +#!/bin/bash +# +# Library for file system actions + +# Load Generic Libraries +. /liblog.sh + +# Functions + +######################## +# Ensure a file/directory is owned (user and group) but the given user +# Arguments: +# $1 - filepath +# $2 - owner +# Returns: +# None +######################### +owned_by() { + local path="${1:?path is missing}" + local owner="${2:?owner is missing}" + + chown "$owner":"$owner" "$path" +} + +######################## +# Ensure a directory exists and, optionally, is owned by the given user +# Arguments: +# $1 - directory +# $2 - owner +# Returns: +# None +######################### +ensure_dir_exists() { + local dir="${1:?directory is missing}" + local owner="${2:-}" + + mkdir -p "${dir}" + if [[ -n $owner ]]; then + owned_by "$dir" "$owner" + fi +} + +######################## +# Checks whether a directory is empty or not +# Arguments: +# $1 - directory +# Returns: +# Boolean +######################### +is_dir_empty() { + local dir="${1:?missing directory}" + + if [[ ! -e "$dir" ]] || [[ -z "$(ls -A "$dir")" ]]; then + true + else + false + fi +} + +######################## +# Configure permisions and ownership recursively +# Globals: +# None +# Arguments: +# $1 - paths (as a string). +# Flags: +# -f|--file-mode - mode for directories. +# -d|--dir-mode - mode for files. +# -u|--user - user +# -g|--group - group +# Returns: +# None +######################### +configure_permissions_ownership() { + local -r paths="${1:?paths is missing}" + local dir_mode="" + local file_mode="" + local user="" + local group="" + + # Validate arguments + shift 1 + while [ "$#" -gt 0 ]; do + case "$1" in + -f|--file-mode) + shift + file_mode="${1:?missing mode for files}" + ;; + -d|--dir-mode) + shift + dir_mode="${1:?missing mode for directories}" + ;; + -u|--user) + shift + user="${1:?missing user}" + ;; + -g|--group) + shift + group="${1:?missing group}" + ;; + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; + esac + shift + done + + read -r -a filepaths <<< "$paths" + for p in "${filepaths[@]}"; do + if [[ -e "$p" ]]; then + if [[ -n $dir_mode ]]; then + find -L "$p" -type d -exec chmod "$dir_mode" {} \; + fi + if [[ -n $file_mode ]]; then + find -L "$p" -type f -exec chmod "$file_mode" {} \; + fi + if [[ -n $user ]] && [[ -n $group ]]; then + chown -LR "$user":"$group" "$p" + elif [[ -n $user ]] && [[ -z $group ]]; then + chown -LR "$user" "$p" + elif [[ -z $user ]] && [[ -n $group ]]; then + chgrp -LR "$group" "$p" + fi + else + stderr_print "$p does not exist" + fi + done +} diff --git a/bitnami/kong/2/debian-10/prebuildfs/liblog.sh b/bitnami/kong/2/debian-10/prebuildfs/liblog.sh new file mode 100644 index 000000000000..04118273394a --- /dev/null +++ b/bitnami/kong/2/debian-10/prebuildfs/liblog.sh @@ -0,0 +1,83 @@ +#!/bin/bash +# +# Library for logging functions + +# Constants +RESET='\033[0m' +RED='\033[38;5;1m' +GREEN='\033[38;5;2m' +YELLOW='\033[38;5;3m' +MAGENTA='\033[38;5;5m' +CYAN='\033[38;5;6m' + +# Functions + +######################## +# Print to STDERR +# Arguments: +# Message to print +# Returns: +# None +######################### +stderr_print() { + printf "%b\\n" "${*}" >&2 +} + +######################## +# Log message +# Arguments: +# Message to log +# Returns: +# None +######################### +log() { + stderr_print "${CYAN}${MODULE:-} ${MAGENTA}$(date "+%T.%2N ")${RESET}${*}" +} +######################## +# Log an 'info' message +# Arguments: +# Message to log +# Returns: +# None +######################### +info() { + log "${GREEN}INFO ${RESET} ==> ${*}" +} +######################## +# Log message +# Arguments: +# Message to log +# Returns: +# None +######################### +warn() { + log "${YELLOW}WARN ${RESET} ==> ${*}" +} +######################## +# Log an 'error' message +# Arguments: +# Message to log +# Returns: +# None +######################### +error() { + log "${RED}ERROR${RESET} ==> ${*}" +} +######################## +# Log a 'debug' message +# Globals: +# BITNAMI_DEBUG +# Arguments: +# None +# Returns: +# None +######################### +debug() { + # 'is_boolean_yes' is defined in libvalidations.sh, but depends on this file so we cannot source it + local -r bool="${BITNAMI_DEBUG:-false}" + # comparison is performed without regard to the case of alphabetic characters + shopt -s nocasematch + if [[ "$bool" = 1 || "$bool" =~ ^(yes|true)$ ]]; then + log "${MAGENTA}DEBUG${RESET} ==> ${*}" + fi +} diff --git a/bitnami/kong/2/debian-10/prebuildfs/libnet.sh b/bitnami/kong/2/debian-10/prebuildfs/libnet.sh new file mode 100644 index 000000000000..f884b7661fd7 --- /dev/null +++ b/bitnami/kong/2/debian-10/prebuildfs/libnet.sh @@ -0,0 +1,44 @@ +#!/bin/bash +# +# Library for network functions + +# Functions + +######################## +# Resolve dns +# Arguments: +# $1 - Hostname to resolve +# Returns: +# IP +######################### +dns_lookup() { + local host="${1:?host is missing}" + getent ahosts "$host" | awk '/STREAM/ {print $1 }' +} + +######################## +# Get machine's IP +# Arguments: +# None +# Returns: +# Machine IP +######################### +get_machine_ip() { + dns_lookup "$(hostname)" +} + +######################## +# Check if the provided argument is a resolved hostname +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_hostname_resolved() { + local -r host="${1:?missing value}" + if [[ -n "$(dns_lookup "$host")" ]]; then + true + else + false + fi +} diff --git a/bitnami/kong/2/debian-10/prebuildfs/libos.sh b/bitnami/kong/2/debian-10/prebuildfs/libos.sh new file mode 100644 index 000000000000..1a5ba3bb2a64 --- /dev/null +++ b/bitnami/kong/2/debian-10/prebuildfs/libos.sh @@ -0,0 +1,132 @@ +#!/bin/bash +# +# Library for operating system actions + +# Functions + +######################## +# Check if an user exists in the system +# Arguments: +# $1 - user +# Returns: +# Boolean +######################### +user_exists() { + local user="${1:?user is missing}" + id "$user" >/dev/null 2>&1 +} + +######################## +# Check if a group exists in the system +# Arguments: +# $1 - group +# Returns: +# Boolean +######################### +group_exists() { + local group="${1:?group is missing}" + getent group "$group" >/dev/null 2>&1 +} + +######################## +# Create a group in the system if it does not exist already +# Arguments: +# $1 - group +# Returns: +# None +######################### +ensure_group_exists() { + local group="${1:?group is missing}" + + if ! group_exists "$group"; then + groupadd "$group" >/dev/null 2>&1 + fi +} + +######################## +# Create an user in the system if it does not exist already +# Arguments: +# $1 - user +# $2 - group +# Returns: +# None +######################### +ensure_user_exists() { + local user="${1:?user is missing}" + local group="${2:-}" + + if ! user_exists "$user"; then + useradd "$user" >/dev/null 2>&1 + if [[ -n "$group" ]]; then + ensure_group_exists "$group" + usermod -a -G "$group" "$user" >/dev/null 2>&1 + fi + fi +} + +######################## +# Check if the script is currently running as root +# Arguments: +# $1 - user +# $2 - group +# Returns: +# Boolean +######################### +am_i_root() { + if [[ "$(id -u)" = "0" ]]; then + true + else + false + fi +} + +######################## +# Get total memory available +# Arguments: +# None +# Returns: +# Memory in bytes +######################### +get_total_memory() { + echo $(($(grep MemTotal /proc/meminfo | awk '{print $2}') / 1024)) +} + +######################### +# Redirects output to /dev/null if debug mode is disabled +# Globals: +# BITNAMI_DEBUG +# Arguments: +# $@ - Command to execute +# Returns: +# None +######################### +debug_execute() { + if ${BITNAMI_DEBUG:-false}; then + "$@" + else + "$@" >/dev/null 2>&1 + fi +} + +######################## +# Retries a command a given number of times +# Arguments: +# $1 - cmd (as a string) +# $2 - max retries. Default: 12 +# $3 - sleep between retries (in seconds). Default: 5 +# Returns: +# Boolean +######################### +retry_while() { + local -r cmd="${1:?cmd is missing}" + local -r retries="${2:-12}" + local -r sleep_time="${3:-5}" + local return_value=1 + + read -r -a command <<< "$cmd" + for ((i = 1 ; i <= retries ; i+=1 )); do + "${command[@]}" && return_value=0 && break + sleep "$sleep_time" + done + return $return_value +} diff --git a/bitnami/kong/2/debian-10/prebuildfs/libservice.sh b/bitnami/kong/2/debian-10/prebuildfs/libservice.sh new file mode 100644 index 000000000000..0a83cd3d927f --- /dev/null +++ b/bitnami/kong/2/debian-10/prebuildfs/libservice.sh @@ -0,0 +1,57 @@ +#!/bin/bash +# +# Library for managing services + +# Functions + +######################## +# Read the provided pid file and returns a PID +# Arguments: +# $1 - Pid file +# Returns: +# PID +######################### +get_pid_from_file() { + local pid_file="${1:?pid file is missing}" + + if [[ -f "$pid_file" ]]; then + if [[ -n "$(< "$pid_file")" ]] && [[ "$(< "$pid_file")" -gt 0 ]]; then + echo "$(< "$pid_file")" + fi + fi +} + +######################## +# Check if a provided PID corresponds to a running service +# Arguments: +# $1 - PID +# Returns: +# Boolean +######################### +is_service_running() { + local pid="${1:?pid is missing}" + + kill -0 "$pid" 2>/dev/null +} + +######################## +# Stop a service by sending a termination signal to its pid +# Arguments: +# $1 - Pid file +# Returns: +# None +######################### +stop_service_using_pid() { + local pid_file="${1:?pid file is missing}" + local pid + + pid="$(get_pid_from_file "$pid_file")" + [[ -z "$pid" ]] || ! is_service_running "$pid" && return + + kill "$pid" + local counter=10 + while [[ "$counter" -ne 0 ]] && is_service_running "$pid"; do + sleep 1 + counter=$((counter - 1)) + done +} diff --git a/bitnami/kong/2/debian-10/prebuildfs/libvalidations.sh b/bitnami/kong/2/debian-10/prebuildfs/libvalidations.sh new file mode 100644 index 000000000000..ef9aaf0cf31f --- /dev/null +++ b/bitnami/kong/2/debian-10/prebuildfs/libvalidations.sh @@ -0,0 +1,246 @@ +#!/bin/bash +# +# Validation functions library + +# Load Generic Libraries +. /liblog.sh + +# Functions + +######################## +# Check if the provided argument is an integer +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_int() { + local -r int="${1:?missing value}" + if [[ "$int" =~ ^-?[0-9]+ ]]; then + true + else + false + fi +} + +######################## +# Check if the provided argument is a positive integer +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_positive_int() { + local -r int="${1:?missing value}" + if is_int "$int" && (( "${int}" >= 0 )); then + true + else + false + fi +} + +######################## +# Check if the provided argument is a boolean or is the string 'yes/true' +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_boolean_yes() { + local -r bool="${1:-}" + # comparison is performed without regard to the case of alphabetic characters + shopt -s nocasematch + if [[ "$bool" = 1 || "$bool" =~ ^(yes|true)$ ]]; then + true + else + false + fi +} + +######################## +# Check if the provided argument is a boolean yes/no value +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_yes_no_value() { + local -r bool="${1:-}" + if [[ "$bool" =~ ^(yes|no)$ ]]; then + true + else + false + fi +} + +######################## +# Check if the provided argument is a boolean true/false value +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_true_false_value() { + local -r bool="${1:-}" + if [[ "$bool" =~ ^(true|false)$ ]]; then + true + else + false + fi +} + +######################## +# Check if the provided argument is an empty string or not defined +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_empty_value() { + local -r val="${1:-}" + if [[ -z "$val" ]]; then + true + else + false + fi +} + +######################## +# Validate if the provided argument is a valid port +# Arguments: +# $1 - Port to validate +# Returns: +# Boolean and error message +######################### +validate_port() { + local value + local unprivileged=0 + + # Parse flags + while [[ "$#" -gt 0 ]]; do + case "$1" in + -unprivileged) + unprivileged=1 + ;; + --) + shift + break + ;; + -*) + stderr_print "unrecognized flag $1" + return 1 + ;; + *) + break + ;; + esac + shift + done + + if [[ "$#" -gt 1 ]]; then + echo "too many arguments provided" + return 2 + elif [[ "$#" -eq 0 ]]; then + stderr_print "missing port argument" + return 1 + else + value=$1 + fi + + if [[ -z "$value" ]]; then + echo "the value is empty" + return 1 + else + if ! is_int "$value"; then + echo "value is not an integer" + return 2 + elif [[ "$value" -lt 0 ]]; then + echo "negative value provided" + return 2 + elif [[ "$value" -gt 65535 ]]; then + echo "requested port is greater than 65535" + return 2 + elif [[ "$unprivileged" = 1 && "$value" -lt 1024 ]]; then + echo "privileged port requested" + return 3 + fi + fi +} + +######################## +# Validate if the provided argument is a valid IPv4 address +# Arguments: +# $1 - IP to validate +# Returns: +# Boolean +######################### +validate_ipv4() { + local ip="${1:?ip is missing}" + local stat=1 + + if [[ $ip =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then + read -r -a ip_array <<< "$(tr '.' ' ' <<< "$ip")" + [[ ${ip_array[0]} -le 255 && ${ip_array[1]} -le 255 \ + && ${ip_array[2]} -le 255 && ${ip_array[3]} -le 255 ]] + stat=$? + fi + return $stat +} + +######################## +# Validate a string format +# Arguments: +# $1 - String to validate +# Returns: +# Boolean +######################### +validate_string() { + local string + local min_length=-1 + local max_length=-1 + + # Parse flags + while [ "$#" -gt 0 ]; do + case "$1" in + -min-length) + shift + min_length=${1:-} + ;; + -max-length) + shift + max_length=${1:-} + ;; + --) + shift + break + ;; + -*) + stderr_print "unrecognized flag $1" + return 1 + ;; + *) + break + ;; + esac + shift + done + + if [ "$#" -gt 1 ]; then + stderr_print "too many arguments provided" + return 2 + elif [ "$#" -eq 0 ]; then + stderr_print "missing string" + return 1 + else + string=$1 + fi + + if [[ "$min_length" -ge 0 ]] && [[ "${#string}" -lt "$min_length" ]]; then + echo "string length is less than $min_length" + return 1 + fi + if [[ "$max_length" -ge 0 ]] && [[ "${#string}" -gt "$max_length" ]]; then + echo "string length is great than $max_length" + return 1 + fi +} diff --git a/bitnami/kong/2/debian-10/prebuildfs/libversion.sh b/bitnami/kong/2/debian-10/prebuildfs/libversion.sh new file mode 100644 index 000000000000..b16090cfe1f4 --- /dev/null +++ b/bitnami/kong/2/debian-10/prebuildfs/libversion.sh @@ -0,0 +1,47 @@ +#!/bin/bash +# +# Library for managing versions strings + +# Load Generic Libraries +. ./liblog.sh + +# Functions +######################## +# Gets semantic version +# Arguments: +# $1 - version: string to extract major.minor.patch +# $2 - section: 1 to extract major, 2 to extract minor, 3 to extract patch +# Returns: +# array with the major, minor and release +######################### +get_sematic_version () { + local version="${1:?version is required}" + local section="${2:?section is required}" + local -a version_sections + + #Regex to parse versions: x.y.z + local -r regex='([0-9]+)(\.([0-9]+)(\.([0-9]+))?)?' + + if [[ "$version" =~ $regex ]]; then + local i=1 + local j=1 + local n=${#BASH_REMATCH[*]} + + while [[ $i -lt $n ]]; do + if [[ -n "${BASH_REMATCH[$i]}" ]] && [[ "${BASH_REMATCH[$i]:0:1}" != '.' ]]; then + version_sections[$j]=${BASH_REMATCH[$i]} + ((j++)) + fi + ((i++)) + done + + local number_regex='^[0-9]+$' + if [[ "$section" =~ $number_regex ]] && (( $section > 0 )) && (( $section <= 3 )); then + echo "${version_sections[$section]}" + return + else + stderr_print "Section allowed values are: 1, 2, and 3" + return 1 + fi + fi +} diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.exists b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.exists new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/bitnami/kong/2/debian-10/rootfs/entrypoint.sh b/bitnami/kong/2/debian-10/rootfs/entrypoint.sh new file mode 100755 index 000000000000..a6f9da9603c8 --- /dev/null +++ b/bitnami/kong/2/debian-10/rootfs/entrypoint.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +# shellcheck disable=SC1091 + +set -o errexit +set -o nounset +set -o pipefail +#set -o xtrace # Uncomment this line for debugging purpose + +# Load libraries +. /libbitnami.sh +. /liblog.sh +. /libkong.sh + +eval "$(kong_env)" + +print_welcome_page + +if [[ "$*" = *"/run.sh"* ]]; then + info "** Starting Kong setup **" + /setup.sh + info "** Kong setup finished! **" +fi + +echo "" +exec "$@" diff --git a/bitnami/kong/2/debian-10/rootfs/libkong.sh b/bitnami/kong/2/debian-10/rootfs/libkong.sh new file mode 100644 index 000000000000..e93fad1818ba --- /dev/null +++ b/bitnami/kong/2/debian-10/rootfs/libkong.sh @@ -0,0 +1,251 @@ +#!/bin/bash +# +# Bitnami Kong library + +# shellcheck disable=SC1090 +# shellcheck disable=SC1091 + +# Load generic libraries +. /libfs.sh +. /liblog.sh +. /libnet.sh +. /libos.sh +. /libservice.sh +. /libvalidations.sh + +######################## +# Load global variables used for Kong configuration. +# Globals: +# KONG_* +# Arguments: +# None +# Returns: +# Series of exports to be used as 'eval' arguments +######################### +kong_env() { + # Avoid environment settings getting overridden twice + if [[ -n "${MODULE:-}" ]]; then + return + fi + + cat <<"EOF" +# Bitnami debug +export MODULE=kong +export BITNAMI_DEBUG="${BITNAMI_DEBUG:-false}" + +# Paths +export KONG_BASE_DIR="/opt/bitnami/kong" +export KONG_CONF_DIR="${KONG_BASE_DIR}/conf" +export KONG_SERVER_DIR="${KONG_BASE_DIR}/server" + +export KONG_CONF_FILE="${KONG_CONF_DIR}/kong.conf" +export KONG_DEFAULT_CONF_FILE="${KONG_CONF_DIR}/kong.conf.default" + +# Users +export KONG_DAEMON_USER="${KONG_DAEMON_USER:-kong}" +export KONG_DAEMON_GROUP="${KONG_DAEMON_GROUP:-kong}" + +# Cluster settings +export KONG_MIGRATE="${KONG_MIGRATE:-no}" + +# Port and service bind configurations for KONG_PROXY_LISTEN and KONG_ADMIN_LISTEN +# By setting these separately, we are consistent with other Bitnami solutions +# However it is still possible to directly set KONG_PROXY_LISTEN and KONG_ADMIN_LISTEN +export KONG_PROXY_LISTEN_ADDRESS="${KONG_PROXY_LISTEN_ADDRESS:-0.0.0.0}" +export KONG_PROXY_HTTP_PORT_NUMBER="${KONG_PROXY_HTTP_PORT_NUMBER:-8000}" +export KONG_PROXY_HTTPS_PORT_NUMBER="${KONG_PROXY_HTTPS_PORT_NUMBER:-8443}" +export KONG_ADMIN_LISTEN_ADDRESS="${KONG_ADMIN_LISTEN_ADDRESS:-127.0.0.1}" +export KONG_ADMIN_HTTP_PORT_NUMBER="${KONG_ADMIN_HTTP_PORT_NUMBER:-8001}" +export KONG_ADMIN_HTTPS_PORT_NUMBER="${KONG_ADMIN_HTTPS_PORT_NUMBER:-8444}" + +# Kong configuration +# These environment variables are used by Kong and allow overriding values in its configuration file +export KONG_NGINX_DAEMON="off" +EOF + + if am_i_root; then + cat <<"EOF" +export KONG_NGINX_USER="${KONG_DAEMON_USER} ${KONG_DAEMON_GROUP}" +EOF + fi + + if [[ -f "${KONG_CASSANDRA_PASSWORD_FILE:-}" ]]; then + cat <<"EOF" +export KONG_CASSANDRA_PASSWORD="$(< "${KONG_CASSANDRA_PASSWORD_FILE}")" +EOF + fi + + if [[ -f "${KONG_POSTGRESQL_PASSWORD_FILE:-}" ]]; then + cat <<"EOF" +export KONG_PG_PASSWORD="$(< "${KONG_POSTGRESQL_PASSWORD_FILE}")" +EOF + fi + + # Compound environment variables that form a single Kong configuration entry + if [[ -n "${KONG_PROXY_LISTEN:-}" ]]; then + cat <<"EOF" +export KONG_PROXY_LISTEN_OVERRIDE="yes" +EOF + else + cat <<"EOF" +export KONG_PROXY_LISTEN="${KONG_PROXY_LISTEN_ADDRESS}:${KONG_PROXY_HTTP_PORT_NUMBER}, ${KONG_PROXY_LISTEN_ADDRESS}:${KONG_PROXY_HTTPS_PORT_NUMBER} ssl" +export KONG_PROXY_LISTEN_OVERRIDE="no" +EOF + fi + if [[ -n "${KONG_ADMIN_LISTEN:-}" ]]; then + cat <<"EOF" +export KONG_ADMIN_LISTEN_OVERRIDE="yes" +EOF + else + cat <<"EOF" +export KONG_ADMIN_LISTEN="${KONG_ADMIN_LISTEN_ADDRESS}:${KONG_ADMIN_HTTP_PORT_NUMBER}, ${KONG_ADMIN_LISTEN_ADDRESS}:${KONG_ADMIN_HTTPS_PORT_NUMBER} ssl" +export KONG_ADMIN_LISTEN_OVERRIDE="no" +EOF + fi +} + +######################## +# Validate settings in KONG_* environment variables +# Globals: +# KONG_* +# Arguments: +# None +# Returns: +# None +######################### +kong_validate() { + info "Validating settings in KONG_* env vars" + local error_code=0 + + # Auxiliary functions + + print_validation_error() { + error "$1" + error_code="1" + } + + check_yes_no_value() { + if ! is_yes_no_value "${!1}"; then + print_validation_error "The allowed values for ${1} are [yes, no]" + fi + } + + check_password_file() { + if [[ -n "${!1:-}" ]] && ! [[ -f "${!1:-}" ]]; then + print_validation_error "The variable ${1} is defined but the file ${!1} is not accessible or does not exist" + fi + } + + check_resolved_hostname() { + if ! is_hostname_resolved "$1"; then + warn "Hostname ${1} could not be resolved, this could lead to connection issues" + fi + } + + check_allowed_port() { + local validate_port_args=() + ! am_i_root && validate_port_args+=("-unprivileged") + if ! err="$(validate_port "${validate_port_args[@]}" "${!1}")"; then + print_validation_error "An invalid port was specified in the environment variable ${1}: ${err}" + fi + } + + check_conflicting_ports() { + local -r total="$#" + for i in $(seq 1 "$((total - 1))"); do + for j in $(seq "$((i + 1))" "$total"); do + if (( "${!i}" == "${!j}" )); then + print_validation_error "${!i} and ${!j} are bound to the same port" + fi + done + done + } + + check_yes_no_value KONG_MIGRATE + + # Validate some of the supported environment variables used by Kong + + # Database setting validations + if [[ "${KONG_DATABASE:-postgres}" = "postgres" ]]; then + # PostgreSQL is the default database type + check_password_file KONG_POSTGRESQL_PASSWORD_FILE + [[ -n "${KONG_PG_HOST:-}" ]] && check_resolved_hostname "${KONG_PG_HOST:-}" + if [[ -n "${!KONG_CASSANDRA_@}" ]]; then + warn "KONG_DATABASE is empty or set to 'postgres', so the following environment variables will be ignored: ${!KONG_CASSANDRA_@}" + fi + elif [[ "${KONG_DATABASE:-}" = "cassandra" ]]; then + check_password_file KONG_CASSANDRA_PASSWORD_FILE + for cassandra_contact_point in $(echo "${CASSANDRA_CONTACT_POINTS:-}" | sed -r 's/[, ]+/\n/'); do + check_resolved_hostname "${cassandra_contact_point}" + done + if [[ -n "${!KONG_PG_@}" ]]; then + warn "KONG_DATABASE is set to 'cassandra', so the following environment variables will be ignored: ${!KONG_PG_@}" + fi + elif [[ "${KONG_DATABASE:-}" = "off" ]]; then + warn "KONG_DATABASE is set to 'off', Kong will run but data will not be persisted" + else + print_validation_error "Wrong value '${KONG_DATABASE}' passed to KONG_DATABASE. Valid values: 'off', 'cassandra', 'postgres'" + fi + + # Listen addresses and port validations + used_ports=() + if is_boolean_yes "$KONG_PROXY_LISTEN_OVERRIDE"; then + warn "KONG_PROXY_LISTEN was set, it will not be validated and the environment variables KONG_PROXY_LISTEN_ADDRESS, KONG_PROXY_HTTP_PORT_NUMBER and KONG_PROXY_HTTPS_PORT_NUMBER will be ignored" + else + used_ports+=(KONG_PROXY_HTTP_PORT_NUMBER KONG_PROXY_HTTPS_PORT_NUMBER) + if [[ "$KONG_PROXY_LISTEN_ADDRESS" != "0.0.0.0" && "$KONG_PROXY_LISTEN_ADDRESS" != "127.0.0.1" ]]; then + warn "Kong Proxy is set to listen at ${KONG_PROXY_LISTEN_ADDRESS} instead of 0.0.0.0 or 127.0.0.1, this could make Kong inaccessible" + fi + fi + if is_boolean_yes "$KONG_ADMIN_LISTEN_OVERRIDE"; then + warn "KONG_ADMIN_LISTEN was set, it will not be validated and the environment variables KONG_ADMIN_LISTEN_ADDRESS, KONG_ADMIN_HTTP_PORT_NUMBER and KONG_ADMIN_HTTPS_PORT_NUMBER will be ignored" + else + used_ports+=(KONG_ADMIN_HTTP_PORT_NUMBER KONG_ADMIN_HTTPS_PORT_NUMBER) + if [[ "$KONG_ADMIN_LISTEN_ADDRESS" != "127.0.0.1" ]]; then + warn "Kong Admin is set to listen at ${KONG_ADMIN_LISTEN_ADDRESS} instead of 127.0.0.1, opening it to the outside could make it insecure" + fi + fi + for port in "${used_ports[@]}"; do + check_allowed_port "${port}" + done + if [[ "${#used_ports[@]}" -ne 0 ]]; then + check_conflicting_ports "${used_ports[@]}" + fi + + # Quit if any failures occurred + [[ "$error_code" -eq 0 ]] || exit "$error_code" +} + +######################## +# Ensure Kong is initialized +# Globals: +# KONG_* +# Arguments: +# None +# Returns: +# None +######################### +kong_initialize() { + info "Initializing Kong" + + info "Waiting for database connection to succeed" + + while ! kong_migrations_list_output="$(kong migrations list 2>&1)"; do + if is_boolean_yes "$KONG_MIGRATE" && [[ "$kong_migrations_list_output" =~ "Database needs bootstrapping"* ]]; then + break + fi + debug "$kong_migrations_list_output" + debug "Database is still not ready, will retry" + sleep 1 + done + + if is_boolean_yes "$KONG_MIGRATE"; then + info "Migrating database" + kong migrations bootstrap + while ! kong migrations list; do + debug "Error during the initial bootstrap for the database, will retry" + kong migrations up + kong migrations finish + done + fi +} diff --git a/bitnami/kong/2/debian-10/rootfs/licenses/licenses.txt b/bitnami/kong/2/debian-10/rootfs/licenses/licenses.txt new file mode 100644 index 000000000000..c76ba31f3b8a --- /dev/null +++ b/bitnami/kong/2/debian-10/rootfs/licenses/licenses.txt @@ -0,0 +1,3 @@ +Bitnami containers ship with software bundles. You can find the licenses under: +/opt/bitnami/nami/COPYING +/opt/bitnami/[name-of-bundle]/licenses/[bundle-version].txt diff --git a/bitnami/kong/2/debian-10/rootfs/postunpack.sh b/bitnami/kong/2/debian-10/rootfs/postunpack.sh new file mode 100755 index 000000000000..f19e435173e2 --- /dev/null +++ b/bitnami/kong/2/debian-10/rootfs/postunpack.sh @@ -0,0 +1,70 @@ +#!/bin/bash + +# shellcheck disable=SC1091 + +set -o errexit +set -o nounset +set -o pipefail +# set -o xtrace # Uncomment this line for debugging purpose + +. /libfs.sh +. /libos.sh +. /libkong.sh + +# Auxiliar functions + +######################## +# Set a configuration to Kong's configuration file +# Globals: +# KONG_CONF_FILE +# Arguments: +# $1 - key +# $2 - value +# Returns: +# None +######################### +kong_conf_set() { + local -r key="${1:?missing key}" + local -r value="${2:-}" + + # Check if the value was commented or set before + if grep -q "^#*${key}\s*=[^#]*" "$KONG_CONF_FILE"; then + debug "Updating entry for property '${key}' in configuration file" + # Update the existing key (leave trailing space for comments) + sed -ri "s|^(#*${key}\s*=)[^#]*|\1 ${value} |" "$KONG_CONF_FILE" + else + debug "Adding new entry for property '${key}' in configuration file" + # Add a new key + printf '%s = %s\n' "$key" "$value" >>"$KONG_CONF_FILE" + fi +} + +######################## +# Uncomment non-empty entries in Kong configuration +# Globals: +# KONG_CONF_FILE +# Arguments: +# None +# Returns: +# None +######################### +kong_configure_non_empty_values() { + # Uncomment all non-empty keys in the main Kong configuration file + sed -ri 's/^#+([a-z_ ]+)=(\s*[^# ]+)/\1=\2 /' "$KONG_CONF_FILE" +} + +# Load Kong environment variables +eval "$(kong_env)" + +# Ensure users and groups used by Kong exist +ensure_user_exists "$KONG_DAEMON_USER" "$KONG_DAEMON_GROUP" +# Ensure directories used by Kong exist and have proper permissions +ensure_dir_exists "$KONG_SERVER_DIR" +chmod -R g+rwX "$KONG_SERVER_DIR" "$KONG_CONF_DIR" +# Copy configuration file and set default values +cp "$KONG_DEFAULT_CONF_FILE" "$KONG_CONF_FILE" +kong_conf_set prefix "$KONG_SERVER_DIR" +kong_conf_set nginx_daemon off +kong_conf_set lua_package_path +kong_conf_set nginx_user +kong_configure_non_empty_values diff --git a/bitnami/kong/2/debian-10/rootfs/run.sh b/bitnami/kong/2/debian-10/rootfs/run.sh new file mode 100755 index 000000000000..e1a409e62410 --- /dev/null +++ b/bitnami/kong/2/debian-10/rootfs/run.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +# shellcheck disable=SC1091 + +set -o errexit +set -o nounset +set -o pipefail +# set -o xtrace # Uncomment this line for debugging purpose + +# Load libraries +. /liblog.sh +. /libos.sh +. /libkong.sh + +# Load Kong environment variables +eval "$(kong_env)" + +info "** Starting Kong **" + +exec kong start diff --git a/bitnami/kong/2/debian-10/rootfs/setup.sh b/bitnami/kong/2/debian-10/rootfs/setup.sh new file mode 100755 index 000000000000..97a3f821c294 --- /dev/null +++ b/bitnami/kong/2/debian-10/rootfs/setup.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +# shellcheck disable=SC1091 + +set -o errexit +set -o nounset +set -o pipefail +# set -o xtrace # Uncomment this line for debugging purpose + +# Load libraries +. /libos.sh +. /libkong.sh + +# Load Kong environment variables +eval "$(kong_env)" + +# Ensure Kong environment variables are valid +kong_validate +# Ensure file ownership is correct +am_i_root && chown -R "$KONG_DAEMON_USER":"$KONG_DAEMON_GROUP" "$KONG_SERVER_DIR" "$KONG_CONF_DIR" +# Ensure Kong is initialized +kong_initialize diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1c641fa3a695..03a795976ef2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,10 +51,8 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`1-ol-7`, `1.5.0-ol-7-r9` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r9/1/ol-7/Dockerfile) -* [`1-ol-7`, `1.5.0-ol-7-r0` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-ol-7-r0/2/ol-7/Dockerfile) -* [`1-debian-10`, `1.5.0-debian-10-r8`, `1`, `1.5.0` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r8/1/debian-10/Dockerfile) -* [`1-debian-10`, `1.5.0-debian-10-r0`, `1`, `1.5.0` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/1.5.0-debian-10-r0/2/debian-10/Dockerfile) +* [`2-ol-7`, `2.0.0-ol-7-r0` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.0-ol-7-r0/2/ol-7/Dockerfile) +* [`2-debian-10`, `2.0.0-debian-10-r0`, `2`, `2.0.0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.0-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). @@ -75,7 +73,7 @@ $ docker pull bitnami/kong:[TAG] If you wish, you can also build the image yourself. ```bash - +$ docker build -t bitnami/kong:latest 'https://github.com/bitnami/bitnami-docker-kong.git#master:2/debian-10' ``` # Connecting to other containers diff --git a/bitnami/kong/docker-compose.yml b/bitnami/kong/docker-compose.yml index acc2801ac7c0..c1c4b2c620ad 100644 --- a/bitnami/kong/docker-compose.yml +++ b/bitnami/kong/docker-compose.yml @@ -9,7 +9,7 @@ services: - POSTGRESQL_PASSWORD=bitnami - POSTGRESQL_DATABASE=kong kong: - image: bitnami/kong:1 + image: bitnami/kong:2 ports: - 8000:8000 - 8443:8443 From 77f561bb80b2e0631920b9347c9edf6555f7c1f6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 3 Feb 2020 17:36:54 +0000 Subject: [PATCH 260/950] 2.0.0-ol-7-r0 release --- bitnami/kong/2/ol-7/Dockerfile | 27 ++ bitnami/kong/2/ol-7/docker-compose.yml | 22 ++ .../2/ol-7/prebuildfs/build/install-gosu.sh | 10 + bitnami/kong/2/ol-7/prebuildfs/libbitnami.sh | 50 ++++ .../kong/2/ol-7/prebuildfs/libcomponent.sh | 64 +++++ bitnami/kong/2/ol-7/prebuildfs/libfile.sh | 22 ++ bitnami/kong/2/ol-7/prebuildfs/libfs.sh | 129 +++++++++ bitnami/kong/2/ol-7/prebuildfs/liblog.sh | 83 ++++++ bitnami/kong/2/ol-7/prebuildfs/libnet.sh | 44 +++ bitnami/kong/2/ol-7/prebuildfs/libos.sh | 132 +++++++++ bitnami/kong/2/ol-7/prebuildfs/libservice.sh | 57 ++++ .../kong/2/ol-7/prebuildfs/libvalidations.sh | 246 +++++++++++++++++ bitnami/kong/2/ol-7/prebuildfs/libversion.sh | 47 ++++ .../2/ol-7/prebuildfs/opt/bitnami/.exists | 0 .../prebuildfs/usr/local/bin/install_packages | 29 ++ bitnami/kong/2/ol-7/rootfs/entrypoint.sh | 26 ++ bitnami/kong/2/ol-7/rootfs/libkong.sh | 251 ++++++++++++++++++ .../kong/2/ol-7/rootfs/licenses/licenses.txt | 3 + bitnami/kong/2/ol-7/rootfs/postunpack.sh | 70 +++++ bitnami/kong/2/ol-7/rootfs/run.sh | 20 ++ bitnami/kong/2/ol-7/rootfs/setup.sh | 22 ++ 21 files changed, 1354 insertions(+) create mode 100644 bitnami/kong/2/ol-7/Dockerfile create mode 100644 bitnami/kong/2/ol-7/docker-compose.yml create mode 100755 bitnami/kong/2/ol-7/prebuildfs/build/install-gosu.sh create mode 100644 bitnami/kong/2/ol-7/prebuildfs/libbitnami.sh create mode 100644 bitnami/kong/2/ol-7/prebuildfs/libcomponent.sh create mode 100644 bitnami/kong/2/ol-7/prebuildfs/libfile.sh create mode 100644 bitnami/kong/2/ol-7/prebuildfs/libfs.sh create mode 100644 bitnami/kong/2/ol-7/prebuildfs/liblog.sh create mode 100644 bitnami/kong/2/ol-7/prebuildfs/libnet.sh create mode 100644 bitnami/kong/2/ol-7/prebuildfs/libos.sh create mode 100644 bitnami/kong/2/ol-7/prebuildfs/libservice.sh create mode 100644 bitnami/kong/2/ol-7/prebuildfs/libvalidations.sh create mode 100644 bitnami/kong/2/ol-7/prebuildfs/libversion.sh create mode 100644 bitnami/kong/2/ol-7/prebuildfs/opt/bitnami/.exists create mode 100755 bitnami/kong/2/ol-7/prebuildfs/usr/local/bin/install_packages create mode 100755 bitnami/kong/2/ol-7/rootfs/entrypoint.sh create mode 100644 bitnami/kong/2/ol-7/rootfs/libkong.sh create mode 100644 bitnami/kong/2/ol-7/rootfs/licenses/licenses.txt create mode 100755 bitnami/kong/2/ol-7/rootfs/postunpack.sh create mode 100755 bitnami/kong/2/ol-7/rootfs/run.sh create mode 100755 bitnami/kong/2/ol-7/rootfs/setup.sh diff --git a/bitnami/kong/2/ol-7/Dockerfile b/bitnami/kong/2/ol-7/Dockerfile new file mode 100644 index 000000000000..72c5c80235e1 --- /dev/null +++ b/bitnami/kong/2/ol-7/Dockerfile @@ -0,0 +1,27 @@ +FROM oraclelinux:7-slim +LABEL maintainer "Bitnami " + +ENV HOME="/" \ + OS_ARCH="x86_64" \ + OS_FLAVOUR="ol-7" \ + OS_NAME="linux" + +COPY prebuildfs / +# Install required system packages and dependencies +RUN install_packages ca-certificates curl glibc gzip hostname keyutils-libs krb5-libs libaio-devel libcom_err libgcc libselinux libyaml nss-softokn-freebl openssl-libs pcre perl procps-ng sudo tar which zlib +RUN . ./libcomponent.sh && component_unpack "kong" "2.0.0-0" --checksum 1a3ed93155b3fa4175804d2aa39461a762fc0f4a13957b5e198c9329f42c94e8 +RUN yum upgrade -y && \ + rm -r /var/cache/yum +RUN /build/install-gosu.sh + +COPY rootfs / +RUN /postunpack.sh +ENV BITNAMI_APP_NAME="kong" \ + BITNAMI_IMAGE_VERSION="2.0.0-ol-7-r0" \ + PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" + +EXPOSE 8000 8001 8443 8444 + +USER 1001 +ENTRYPOINT [ "/entrypoint.sh" ] +CMD [ "/run.sh" ] diff --git a/bitnami/kong/2/ol-7/docker-compose.yml b/bitnami/kong/2/ol-7/docker-compose.yml new file mode 100644 index 000000000000..fa2ea2ab57cb --- /dev/null +++ b/bitnami/kong/2/ol-7/docker-compose.yml @@ -0,0 +1,22 @@ +version: '2' +services: + postgresql: + image: bitnami/postgresql:11-ol-7 + volumes: + - postgresql_data:/bitnami/postgresql + environment: + - POSTGRESQL_USERNAME=kong + - POSTGRESQL_PASSWORD=bitnami + - POSTGRESQL_DATABASE=kong + kong: + image: bitnami/kong:2-ol-7 + ports: + - 8000:8000 + - 8443:8443 + environment: + - KONG_MIGRATE=yes + - KONG_PG_HOST=postgresql + - KONG_PG_PASSWORD=bitnami +volumes: + postgresql_data: + driver: local diff --git a/bitnami/kong/2/ol-7/prebuildfs/build/install-gosu.sh b/bitnami/kong/2/ol-7/prebuildfs/build/install-gosu.sh new file mode 100755 index 000000000000..1756700daa89 --- /dev/null +++ b/bitnami/kong/2/ol-7/prebuildfs/build/install-gosu.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +VERSION="1.11" +SHA256="0b843df6d86e270c5b0f5cbd3c326a04e18f4b7f9b8457fa497b0454c4b138d7" + +curl --silent -L "https://github.com/tianon/gosu/releases/download/${VERSION}/gosu-amd64" > "/usr/local/bin/gosu" +echo "$SHA256" "/usr/local/bin/gosu" | sha256sum --check +chmod u+x "/usr/local/bin/gosu" +mkdir -p "/opt/bitnami/licenses" +curl --silent -L "https://raw.githubusercontent.com/tianon/gosu/master/LICENSE" > "/opt/bitnami/licenses/gosu-${VERSION}.txt" diff --git a/bitnami/kong/2/ol-7/prebuildfs/libbitnami.sh b/bitnami/kong/2/ol-7/prebuildfs/libbitnami.sh new file mode 100644 index 000000000000..529c3fd4a3e2 --- /dev/null +++ b/bitnami/kong/2/ol-7/prebuildfs/libbitnami.sh @@ -0,0 +1,50 @@ +#!/bin/bash +# +# Bitnami custom library + +# Load Generic Libraries +. /liblog.sh + +# Constants +BOLD='\033[1m' + +# Functions + +######################## +# Print the welcome page +# Globals: +# DISABLE_WELCOME_MESSAGE +# BITNAMI_APP_NAME +# Arguments: +# None +# Returns: +# None +######################### +print_welcome_page() { + if [[ -z "${DISABLE_WELCOME_MESSAGE:-}" ]]; then + if [[ -n "$BITNAMI_APP_NAME" ]]; then + print_image_welcome_page + fi + fi +} + +######################## +# Print the welcome page for a Bitnami Docker image +# Globals: +# BITNAMI_APP_NAME +# Arguments: +# None +# Returns: +# None +######################### +print_image_welcome_page() { + local github_url="https://github.com/bitnami/bitnami-docker-${BITNAMI_APP_NAME}" + + log "" + log "${BOLD}Welcome to the Bitnami ${BITNAMI_APP_NAME} container${RESET}" + log "Subscribe to project updates by watching ${BOLD}${github_url}${RESET}" + log "Submit issues and feature requests at ${BOLD}${github_url}/issues${RESET}" + log "Send us your feedback at ${BOLD}containers@bitnami.com${RESET}" + log "" +} + diff --git a/bitnami/kong/2/ol-7/prebuildfs/libcomponent.sh b/bitnami/kong/2/ol-7/prebuildfs/libcomponent.sh new file mode 100644 index 000000000000..025288664f69 --- /dev/null +++ b/bitnami/kong/2/ol-7/prebuildfs/libcomponent.sh @@ -0,0 +1,64 @@ +#!/bin/bash +# +# Library for managing Bitnami components + +# Constants +CACHE_ROOT="/tmp/bitnami/pkg/cache" +DOWNLOAD_URL="https://downloads.bitnami.com/files/stacksmith" + +# Functions + +######################## +# Download and unpack a Bitnami package +# Globals: +# OS_NAME +# OS_ARCH +# OS_FLAVOUR +# Arguments: +# $1 - component's name +# $2 - component's version +# Returns: +# None +######################### +component_unpack() { + local name="${1:?name is required}" + local version="${2:?version is required}" + local base_name="${name}-${version}-${OS_NAME}-${OS_ARCH}-${OS_FLAVOUR}" + local package_sha256="" + + # Validate arguments + shift 2 + while [ "$#" -gt 0 ]; do + case "$1" in + -c|--checksum) + shift + package_sha256="${1:?missing package checksum}" + ;; + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; + esac + shift + done + + echo "Downloading $base_name package" + if [ -f "${CACHE_ROOT}/${base_name}.tar.gz" ]; then + echo "${CACHE_ROOT}/${base_name}.tar.gz already exists, skipping download." + cp "${CACHE_ROOT}/${base_name}.tar.gz" . + rm "${CACHE_ROOT}/${base_name}.tar.gz" + if [ -f "${CACHE_ROOT}/${base_name}.tar.gz.sha256" ]; then + echo "Using the local sha256 from ${CACHE_ROOT}/${base_name}.tar.gz.sha256" + package_sha256="$(< "${CACHE_ROOT}/${base_name}.tar.gz.sha256")" + rm "${CACHE_ROOT}/${base_name}.tar.gz.sha256" + fi + else + curl --remote-name --silent "${DOWNLOAD_URL}/${base_name}.tar.gz" + fi + if [ -n "$package_sha256" ]; then + echo "Verifying package integrity" + echo "$package_sha256 ${base_name}.tar.gz" | sha256sum --check - + fi + tar --directory /opt/bitnami --extract --gunzip --file "${base_name}.tar.gz" --no-same-owner --strip-components=2 "${base_name}/files/" + rm "${base_name}.tar.gz" +} diff --git a/bitnami/kong/2/ol-7/prebuildfs/libfile.sh b/bitnami/kong/2/ol-7/prebuildfs/libfile.sh new file mode 100644 index 000000000000..12010f043e49 --- /dev/null +++ b/bitnami/kong/2/ol-7/prebuildfs/libfile.sh @@ -0,0 +1,22 @@ +#!/bin/bash +# +# Library for managing files + +# Functions + +######################## +# Ensure a line exists in the file by replacing a matching line. +# Arguments: +# $1 - filename +# $2 - line +# $3 - match +# Returns: +# None +######################### +file_contains_line() { + local filename="${1:?filename is required}" + local line="${2:?line is required}" + local match="${3:?match is required}" + + sed --in-place "s/^$match\$/$line/" "$filename" +} diff --git a/bitnami/kong/2/ol-7/prebuildfs/libfs.sh b/bitnami/kong/2/ol-7/prebuildfs/libfs.sh new file mode 100644 index 000000000000..10a24735c096 --- /dev/null +++ b/bitnami/kong/2/ol-7/prebuildfs/libfs.sh @@ -0,0 +1,129 @@ +#!/bin/bash +# +# Library for file system actions + +# Load Generic Libraries +. /liblog.sh + +# Functions + +######################## +# Ensure a file/directory is owned (user and group) but the given user +# Arguments: +# $1 - filepath +# $2 - owner +# Returns: +# None +######################### +owned_by() { + local path="${1:?path is missing}" + local owner="${2:?owner is missing}" + + chown "$owner":"$owner" "$path" +} + +######################## +# Ensure a directory exists and, optionally, is owned by the given user +# Arguments: +# $1 - directory +# $2 - owner +# Returns: +# None +######################### +ensure_dir_exists() { + local dir="${1:?directory is missing}" + local owner="${2:-}" + + mkdir -p "${dir}" + if [[ -n $owner ]]; then + owned_by "$dir" "$owner" + fi +} + +######################## +# Checks whether a directory is empty or not +# Arguments: +# $1 - directory +# Returns: +# Boolean +######################### +is_dir_empty() { + local dir="${1:?missing directory}" + + if [[ ! -e "$dir" ]] || [[ -z "$(ls -A "$dir")" ]]; then + true + else + false + fi +} + +######################## +# Configure permisions and ownership recursively +# Globals: +# None +# Arguments: +# $1 - paths (as a string). +# Flags: +# -f|--file-mode - mode for directories. +# -d|--dir-mode - mode for files. +# -u|--user - user +# -g|--group - group +# Returns: +# None +######################### +configure_permissions_ownership() { + local -r paths="${1:?paths is missing}" + local dir_mode="" + local file_mode="" + local user="" + local group="" + + # Validate arguments + shift 1 + while [ "$#" -gt 0 ]; do + case "$1" in + -f|--file-mode) + shift + file_mode="${1:?missing mode for files}" + ;; + -d|--dir-mode) + shift + dir_mode="${1:?missing mode for directories}" + ;; + -u|--user) + shift + user="${1:?missing user}" + ;; + -g|--group) + shift + group="${1:?missing group}" + ;; + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; + esac + shift + done + + read -r -a filepaths <<< "$paths" + for p in "${filepaths[@]}"; do + if [[ -e "$p" ]]; then + if [[ -n $dir_mode ]]; then + find -L "$p" -type d -exec chmod "$dir_mode" {} \; + fi + if [[ -n $file_mode ]]; then + find -L "$p" -type f -exec chmod "$file_mode" {} \; + fi + if [[ -n $user ]] && [[ -n $group ]]; then + chown -LR "$user":"$group" "$p" + elif [[ -n $user ]] && [[ -z $group ]]; then + chown -LR "$user" "$p" + elif [[ -z $user ]] && [[ -n $group ]]; then + chgrp -LR "$group" "$p" + fi + else + stderr_print "$p does not exist" + fi + done +} diff --git a/bitnami/kong/2/ol-7/prebuildfs/liblog.sh b/bitnami/kong/2/ol-7/prebuildfs/liblog.sh new file mode 100644 index 000000000000..04118273394a --- /dev/null +++ b/bitnami/kong/2/ol-7/prebuildfs/liblog.sh @@ -0,0 +1,83 @@ +#!/bin/bash +# +# Library for logging functions + +# Constants +RESET='\033[0m' +RED='\033[38;5;1m' +GREEN='\033[38;5;2m' +YELLOW='\033[38;5;3m' +MAGENTA='\033[38;5;5m' +CYAN='\033[38;5;6m' + +# Functions + +######################## +# Print to STDERR +# Arguments: +# Message to print +# Returns: +# None +######################### +stderr_print() { + printf "%b\\n" "${*}" >&2 +} + +######################## +# Log message +# Arguments: +# Message to log +# Returns: +# None +######################### +log() { + stderr_print "${CYAN}${MODULE:-} ${MAGENTA}$(date "+%T.%2N ")${RESET}${*}" +} +######################## +# Log an 'info' message +# Arguments: +# Message to log +# Returns: +# None +######################### +info() { + log "${GREEN}INFO ${RESET} ==> ${*}" +} +######################## +# Log message +# Arguments: +# Message to log +# Returns: +# None +######################### +warn() { + log "${YELLOW}WARN ${RESET} ==> ${*}" +} +######################## +# Log an 'error' message +# Arguments: +# Message to log +# Returns: +# None +######################### +error() { + log "${RED}ERROR${RESET} ==> ${*}" +} +######################## +# Log a 'debug' message +# Globals: +# BITNAMI_DEBUG +# Arguments: +# None +# Returns: +# None +######################### +debug() { + # 'is_boolean_yes' is defined in libvalidations.sh, but depends on this file so we cannot source it + local -r bool="${BITNAMI_DEBUG:-false}" + # comparison is performed without regard to the case of alphabetic characters + shopt -s nocasematch + if [[ "$bool" = 1 || "$bool" =~ ^(yes|true)$ ]]; then + log "${MAGENTA}DEBUG${RESET} ==> ${*}" + fi +} diff --git a/bitnami/kong/2/ol-7/prebuildfs/libnet.sh b/bitnami/kong/2/ol-7/prebuildfs/libnet.sh new file mode 100644 index 000000000000..f884b7661fd7 --- /dev/null +++ b/bitnami/kong/2/ol-7/prebuildfs/libnet.sh @@ -0,0 +1,44 @@ +#!/bin/bash +# +# Library for network functions + +# Functions + +######################## +# Resolve dns +# Arguments: +# $1 - Hostname to resolve +# Returns: +# IP +######################### +dns_lookup() { + local host="${1:?host is missing}" + getent ahosts "$host" | awk '/STREAM/ {print $1 }' +} + +######################## +# Get machine's IP +# Arguments: +# None +# Returns: +# Machine IP +######################### +get_machine_ip() { + dns_lookup "$(hostname)" +} + +######################## +# Check if the provided argument is a resolved hostname +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_hostname_resolved() { + local -r host="${1:?missing value}" + if [[ -n "$(dns_lookup "$host")" ]]; then + true + else + false + fi +} diff --git a/bitnami/kong/2/ol-7/prebuildfs/libos.sh b/bitnami/kong/2/ol-7/prebuildfs/libos.sh new file mode 100644 index 000000000000..1a5ba3bb2a64 --- /dev/null +++ b/bitnami/kong/2/ol-7/prebuildfs/libos.sh @@ -0,0 +1,132 @@ +#!/bin/bash +# +# Library for operating system actions + +# Functions + +######################## +# Check if an user exists in the system +# Arguments: +# $1 - user +# Returns: +# Boolean +######################### +user_exists() { + local user="${1:?user is missing}" + id "$user" >/dev/null 2>&1 +} + +######################## +# Check if a group exists in the system +# Arguments: +# $1 - group +# Returns: +# Boolean +######################### +group_exists() { + local group="${1:?group is missing}" + getent group "$group" >/dev/null 2>&1 +} + +######################## +# Create a group in the system if it does not exist already +# Arguments: +# $1 - group +# Returns: +# None +######################### +ensure_group_exists() { + local group="${1:?group is missing}" + + if ! group_exists "$group"; then + groupadd "$group" >/dev/null 2>&1 + fi +} + +######################## +# Create an user in the system if it does not exist already +# Arguments: +# $1 - user +# $2 - group +# Returns: +# None +######################### +ensure_user_exists() { + local user="${1:?user is missing}" + local group="${2:-}" + + if ! user_exists "$user"; then + useradd "$user" >/dev/null 2>&1 + if [[ -n "$group" ]]; then + ensure_group_exists "$group" + usermod -a -G "$group" "$user" >/dev/null 2>&1 + fi + fi +} + +######################## +# Check if the script is currently running as root +# Arguments: +# $1 - user +# $2 - group +# Returns: +# Boolean +######################### +am_i_root() { + if [[ "$(id -u)" = "0" ]]; then + true + else + false + fi +} + +######################## +# Get total memory available +# Arguments: +# None +# Returns: +# Memory in bytes +######################### +get_total_memory() { + echo $(($(grep MemTotal /proc/meminfo | awk '{print $2}') / 1024)) +} + +######################### +# Redirects output to /dev/null if debug mode is disabled +# Globals: +# BITNAMI_DEBUG +# Arguments: +# $@ - Command to execute +# Returns: +# None +######################### +debug_execute() { + if ${BITNAMI_DEBUG:-false}; then + "$@" + else + "$@" >/dev/null 2>&1 + fi +} + +######################## +# Retries a command a given number of times +# Arguments: +# $1 - cmd (as a string) +# $2 - max retries. Default: 12 +# $3 - sleep between retries (in seconds). Default: 5 +# Returns: +# Boolean +######################### +retry_while() { + local -r cmd="${1:?cmd is missing}" + local -r retries="${2:-12}" + local -r sleep_time="${3:-5}" + local return_value=1 + + read -r -a command <<< "$cmd" + for ((i = 1 ; i <= retries ; i+=1 )); do + "${command[@]}" && return_value=0 && break + sleep "$sleep_time" + done + return $return_value +} diff --git a/bitnami/kong/2/ol-7/prebuildfs/libservice.sh b/bitnami/kong/2/ol-7/prebuildfs/libservice.sh new file mode 100644 index 000000000000..0a83cd3d927f --- /dev/null +++ b/bitnami/kong/2/ol-7/prebuildfs/libservice.sh @@ -0,0 +1,57 @@ +#!/bin/bash +# +# Library for managing services + +# Functions + +######################## +# Read the provided pid file and returns a PID +# Arguments: +# $1 - Pid file +# Returns: +# PID +######################### +get_pid_from_file() { + local pid_file="${1:?pid file is missing}" + + if [[ -f "$pid_file" ]]; then + if [[ -n "$(< "$pid_file")" ]] && [[ "$(< "$pid_file")" -gt 0 ]]; then + echo "$(< "$pid_file")" + fi + fi +} + +######################## +# Check if a provided PID corresponds to a running service +# Arguments: +# $1 - PID +# Returns: +# Boolean +######################### +is_service_running() { + local pid="${1:?pid is missing}" + + kill -0 "$pid" 2>/dev/null +} + +######################## +# Stop a service by sending a termination signal to its pid +# Arguments: +# $1 - Pid file +# Returns: +# None +######################### +stop_service_using_pid() { + local pid_file="${1:?pid file is missing}" + local pid + + pid="$(get_pid_from_file "$pid_file")" + [[ -z "$pid" ]] || ! is_service_running "$pid" && return + + kill "$pid" + local counter=10 + while [[ "$counter" -ne 0 ]] && is_service_running "$pid"; do + sleep 1 + counter=$((counter - 1)) + done +} diff --git a/bitnami/kong/2/ol-7/prebuildfs/libvalidations.sh b/bitnami/kong/2/ol-7/prebuildfs/libvalidations.sh new file mode 100644 index 000000000000..ef9aaf0cf31f --- /dev/null +++ b/bitnami/kong/2/ol-7/prebuildfs/libvalidations.sh @@ -0,0 +1,246 @@ +#!/bin/bash +# +# Validation functions library + +# Load Generic Libraries +. /liblog.sh + +# Functions + +######################## +# Check if the provided argument is an integer +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_int() { + local -r int="${1:?missing value}" + if [[ "$int" =~ ^-?[0-9]+ ]]; then + true + else + false + fi +} + +######################## +# Check if the provided argument is a positive integer +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_positive_int() { + local -r int="${1:?missing value}" + if is_int "$int" && (( "${int}" >= 0 )); then + true + else + false + fi +} + +######################## +# Check if the provided argument is a boolean or is the string 'yes/true' +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_boolean_yes() { + local -r bool="${1:-}" + # comparison is performed without regard to the case of alphabetic characters + shopt -s nocasematch + if [[ "$bool" = 1 || "$bool" =~ ^(yes|true)$ ]]; then + true + else + false + fi +} + +######################## +# Check if the provided argument is a boolean yes/no value +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_yes_no_value() { + local -r bool="${1:-}" + if [[ "$bool" =~ ^(yes|no)$ ]]; then + true + else + false + fi +} + +######################## +# Check if the provided argument is a boolean true/false value +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_true_false_value() { + local -r bool="${1:-}" + if [[ "$bool" =~ ^(true|false)$ ]]; then + true + else + false + fi +} + +######################## +# Check if the provided argument is an empty string or not defined +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_empty_value() { + local -r val="${1:-}" + if [[ -z "$val" ]]; then + true + else + false + fi +} + +######################## +# Validate if the provided argument is a valid port +# Arguments: +# $1 - Port to validate +# Returns: +# Boolean and error message +######################### +validate_port() { + local value + local unprivileged=0 + + # Parse flags + while [[ "$#" -gt 0 ]]; do + case "$1" in + -unprivileged) + unprivileged=1 + ;; + --) + shift + break + ;; + -*) + stderr_print "unrecognized flag $1" + return 1 + ;; + *) + break + ;; + esac + shift + done + + if [[ "$#" -gt 1 ]]; then + echo "too many arguments provided" + return 2 + elif [[ "$#" -eq 0 ]]; then + stderr_print "missing port argument" + return 1 + else + value=$1 + fi + + if [[ -z "$value" ]]; then + echo "the value is empty" + return 1 + else + if ! is_int "$value"; then + echo "value is not an integer" + return 2 + elif [[ "$value" -lt 0 ]]; then + echo "negative value provided" + return 2 + elif [[ "$value" -gt 65535 ]]; then + echo "requested port is greater than 65535" + return 2 + elif [[ "$unprivileged" = 1 && "$value" -lt 1024 ]]; then + echo "privileged port requested" + return 3 + fi + fi +} + +######################## +# Validate if the provided argument is a valid IPv4 address +# Arguments: +# $1 - IP to validate +# Returns: +# Boolean +######################### +validate_ipv4() { + local ip="${1:?ip is missing}" + local stat=1 + + if [[ $ip =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then + read -r -a ip_array <<< "$(tr '.' ' ' <<< "$ip")" + [[ ${ip_array[0]} -le 255 && ${ip_array[1]} -le 255 \ + && ${ip_array[2]} -le 255 && ${ip_array[3]} -le 255 ]] + stat=$? + fi + return $stat +} + +######################## +# Validate a string format +# Arguments: +# $1 - String to validate +# Returns: +# Boolean +######################### +validate_string() { + local string + local min_length=-1 + local max_length=-1 + + # Parse flags + while [ "$#" -gt 0 ]; do + case "$1" in + -min-length) + shift + min_length=${1:-} + ;; + -max-length) + shift + max_length=${1:-} + ;; + --) + shift + break + ;; + -*) + stderr_print "unrecognized flag $1" + return 1 + ;; + *) + break + ;; + esac + shift + done + + if [ "$#" -gt 1 ]; then + stderr_print "too many arguments provided" + return 2 + elif [ "$#" -eq 0 ]; then + stderr_print "missing string" + return 1 + else + string=$1 + fi + + if [[ "$min_length" -ge 0 ]] && [[ "${#string}" -lt "$min_length" ]]; then + echo "string length is less than $min_length" + return 1 + fi + if [[ "$max_length" -ge 0 ]] && [[ "${#string}" -gt "$max_length" ]]; then + echo "string length is great than $max_length" + return 1 + fi +} diff --git a/bitnami/kong/2/ol-7/prebuildfs/libversion.sh b/bitnami/kong/2/ol-7/prebuildfs/libversion.sh new file mode 100644 index 000000000000..b16090cfe1f4 --- /dev/null +++ b/bitnami/kong/2/ol-7/prebuildfs/libversion.sh @@ -0,0 +1,47 @@ +#!/bin/bash +# +# Library for managing versions strings + +# Load Generic Libraries +. ./liblog.sh + +# Functions +######################## +# Gets semantic version +# Arguments: +# $1 - version: string to extract major.minor.patch +# $2 - section: 1 to extract major, 2 to extract minor, 3 to extract patch +# Returns: +# array with the major, minor and release +######################### +get_sematic_version () { + local version="${1:?version is required}" + local section="${2:?section is required}" + local -a version_sections + + #Regex to parse versions: x.y.z + local -r regex='([0-9]+)(\.([0-9]+)(\.([0-9]+))?)?' + + if [[ "$version" =~ $regex ]]; then + local i=1 + local j=1 + local n=${#BASH_REMATCH[*]} + + while [[ $i -lt $n ]]; do + if [[ -n "${BASH_REMATCH[$i]}" ]] && [[ "${BASH_REMATCH[$i]:0:1}" != '.' ]]; then + version_sections[$j]=${BASH_REMATCH[$i]} + ((j++)) + fi + ((i++)) + done + + local number_regex='^[0-9]+$' + if [[ "$section" =~ $number_regex ]] && (( $section > 0 )) && (( $section <= 3 )); then + echo "${version_sections[$section]}" + return + else + stderr_print "Section allowed values are: 1, 2, and 3" + return 1 + fi + fi +} diff --git a/bitnami/kong/2/ol-7/prebuildfs/opt/bitnami/.exists b/bitnami/kong/2/ol-7/prebuildfs/opt/bitnami/.exists new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/bitnami/kong/2/ol-7/prebuildfs/usr/local/bin/install_packages b/bitnami/kong/2/ol-7/prebuildfs/usr/local/bin/install_packages new file mode 100755 index 000000000000..370f3516f403 --- /dev/null +++ b/bitnami/kong/2/ol-7/prebuildfs/usr/local/bin/install_packages @@ -0,0 +1,29 @@ +#!/bin/sh +set -eu + +if [[ -n "oracle-epel-release-el7" ]]; then + if ! yum list installed oracle-epel-release-el7 >/dev/null 2>&1; then + yum -y install oracle-epel-release-el7 >/dev/null 2>&1 + CODE=$? + if (( $CODE != 0 )); then + echo "EPEL repository installation failed" + exit $CODE + fi + fi +fi + +max=2 +for ((n = 1 ; n <= max ; n+=1 )); do + set +e + yum --enablerepo base,updates,ol7_developer_EPEL,ol7_optional_latest install -y "$@" + CODE=$? + set -e + if (( $CODE == 0 )); then + break + fi + if (( $n == $max )); then + exit $CODE + fi + echo "yum failed, retrying" +done +rm -r /var/cache/yum diff --git a/bitnami/kong/2/ol-7/rootfs/entrypoint.sh b/bitnami/kong/2/ol-7/rootfs/entrypoint.sh new file mode 100755 index 000000000000..a6f9da9603c8 --- /dev/null +++ b/bitnami/kong/2/ol-7/rootfs/entrypoint.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +# shellcheck disable=SC1091 + +set -o errexit +set -o nounset +set -o pipefail +#set -o xtrace # Uncomment this line for debugging purpose + +# Load libraries +. /libbitnami.sh +. /liblog.sh +. /libkong.sh + +eval "$(kong_env)" + +print_welcome_page + +if [[ "$*" = *"/run.sh"* ]]; then + info "** Starting Kong setup **" + /setup.sh + info "** Kong setup finished! **" +fi + +echo "" +exec "$@" diff --git a/bitnami/kong/2/ol-7/rootfs/libkong.sh b/bitnami/kong/2/ol-7/rootfs/libkong.sh new file mode 100644 index 000000000000..e93fad1818ba --- /dev/null +++ b/bitnami/kong/2/ol-7/rootfs/libkong.sh @@ -0,0 +1,251 @@ +#!/bin/bash +# +# Bitnami Kong library + +# shellcheck disable=SC1090 +# shellcheck disable=SC1091 + +# Load generic libraries +. /libfs.sh +. /liblog.sh +. /libnet.sh +. /libos.sh +. /libservice.sh +. /libvalidations.sh + +######################## +# Load global variables used for Kong configuration. +# Globals: +# KONG_* +# Arguments: +# None +# Returns: +# Series of exports to be used as 'eval' arguments +######################### +kong_env() { + # Avoid environment settings getting overridden twice + if [[ -n "${MODULE:-}" ]]; then + return + fi + + cat <<"EOF" +# Bitnami debug +export MODULE=kong +export BITNAMI_DEBUG="${BITNAMI_DEBUG:-false}" + +# Paths +export KONG_BASE_DIR="/opt/bitnami/kong" +export KONG_CONF_DIR="${KONG_BASE_DIR}/conf" +export KONG_SERVER_DIR="${KONG_BASE_DIR}/server" + +export KONG_CONF_FILE="${KONG_CONF_DIR}/kong.conf" +export KONG_DEFAULT_CONF_FILE="${KONG_CONF_DIR}/kong.conf.default" + +# Users +export KONG_DAEMON_USER="${KONG_DAEMON_USER:-kong}" +export KONG_DAEMON_GROUP="${KONG_DAEMON_GROUP:-kong}" + +# Cluster settings +export KONG_MIGRATE="${KONG_MIGRATE:-no}" + +# Port and service bind configurations for KONG_PROXY_LISTEN and KONG_ADMIN_LISTEN +# By setting these separately, we are consistent with other Bitnami solutions +# However it is still possible to directly set KONG_PROXY_LISTEN and KONG_ADMIN_LISTEN +export KONG_PROXY_LISTEN_ADDRESS="${KONG_PROXY_LISTEN_ADDRESS:-0.0.0.0}" +export KONG_PROXY_HTTP_PORT_NUMBER="${KONG_PROXY_HTTP_PORT_NUMBER:-8000}" +export KONG_PROXY_HTTPS_PORT_NUMBER="${KONG_PROXY_HTTPS_PORT_NUMBER:-8443}" +export KONG_ADMIN_LISTEN_ADDRESS="${KONG_ADMIN_LISTEN_ADDRESS:-127.0.0.1}" +export KONG_ADMIN_HTTP_PORT_NUMBER="${KONG_ADMIN_HTTP_PORT_NUMBER:-8001}" +export KONG_ADMIN_HTTPS_PORT_NUMBER="${KONG_ADMIN_HTTPS_PORT_NUMBER:-8444}" + +# Kong configuration +# These environment variables are used by Kong and allow overriding values in its configuration file +export KONG_NGINX_DAEMON="off" +EOF + + if am_i_root; then + cat <<"EOF" +export KONG_NGINX_USER="${KONG_DAEMON_USER} ${KONG_DAEMON_GROUP}" +EOF + fi + + if [[ -f "${KONG_CASSANDRA_PASSWORD_FILE:-}" ]]; then + cat <<"EOF" +export KONG_CASSANDRA_PASSWORD="$(< "${KONG_CASSANDRA_PASSWORD_FILE}")" +EOF + fi + + if [[ -f "${KONG_POSTGRESQL_PASSWORD_FILE:-}" ]]; then + cat <<"EOF" +export KONG_PG_PASSWORD="$(< "${KONG_POSTGRESQL_PASSWORD_FILE}")" +EOF + fi + + # Compound environment variables that form a single Kong configuration entry + if [[ -n "${KONG_PROXY_LISTEN:-}" ]]; then + cat <<"EOF" +export KONG_PROXY_LISTEN_OVERRIDE="yes" +EOF + else + cat <<"EOF" +export KONG_PROXY_LISTEN="${KONG_PROXY_LISTEN_ADDRESS}:${KONG_PROXY_HTTP_PORT_NUMBER}, ${KONG_PROXY_LISTEN_ADDRESS}:${KONG_PROXY_HTTPS_PORT_NUMBER} ssl" +export KONG_PROXY_LISTEN_OVERRIDE="no" +EOF + fi + if [[ -n "${KONG_ADMIN_LISTEN:-}" ]]; then + cat <<"EOF" +export KONG_ADMIN_LISTEN_OVERRIDE="yes" +EOF + else + cat <<"EOF" +export KONG_ADMIN_LISTEN="${KONG_ADMIN_LISTEN_ADDRESS}:${KONG_ADMIN_HTTP_PORT_NUMBER}, ${KONG_ADMIN_LISTEN_ADDRESS}:${KONG_ADMIN_HTTPS_PORT_NUMBER} ssl" +export KONG_ADMIN_LISTEN_OVERRIDE="no" +EOF + fi +} + +######################## +# Validate settings in KONG_* environment variables +# Globals: +# KONG_* +# Arguments: +# None +# Returns: +# None +######################### +kong_validate() { + info "Validating settings in KONG_* env vars" + local error_code=0 + + # Auxiliary functions + + print_validation_error() { + error "$1" + error_code="1" + } + + check_yes_no_value() { + if ! is_yes_no_value "${!1}"; then + print_validation_error "The allowed values for ${1} are [yes, no]" + fi + } + + check_password_file() { + if [[ -n "${!1:-}" ]] && ! [[ -f "${!1:-}" ]]; then + print_validation_error "The variable ${1} is defined but the file ${!1} is not accessible or does not exist" + fi + } + + check_resolved_hostname() { + if ! is_hostname_resolved "$1"; then + warn "Hostname ${1} could not be resolved, this could lead to connection issues" + fi + } + + check_allowed_port() { + local validate_port_args=() + ! am_i_root && validate_port_args+=("-unprivileged") + if ! err="$(validate_port "${validate_port_args[@]}" "${!1}")"; then + print_validation_error "An invalid port was specified in the environment variable ${1}: ${err}" + fi + } + + check_conflicting_ports() { + local -r total="$#" + for i in $(seq 1 "$((total - 1))"); do + for j in $(seq "$((i + 1))" "$total"); do + if (( "${!i}" == "${!j}" )); then + print_validation_error "${!i} and ${!j} are bound to the same port" + fi + done + done + } + + check_yes_no_value KONG_MIGRATE + + # Validate some of the supported environment variables used by Kong + + # Database setting validations + if [[ "${KONG_DATABASE:-postgres}" = "postgres" ]]; then + # PostgreSQL is the default database type + check_password_file KONG_POSTGRESQL_PASSWORD_FILE + [[ -n "${KONG_PG_HOST:-}" ]] && check_resolved_hostname "${KONG_PG_HOST:-}" + if [[ -n "${!KONG_CASSANDRA_@}" ]]; then + warn "KONG_DATABASE is empty or set to 'postgres', so the following environment variables will be ignored: ${!KONG_CASSANDRA_@}" + fi + elif [[ "${KONG_DATABASE:-}" = "cassandra" ]]; then + check_password_file KONG_CASSANDRA_PASSWORD_FILE + for cassandra_contact_point in $(echo "${CASSANDRA_CONTACT_POINTS:-}" | sed -r 's/[, ]+/\n/'); do + check_resolved_hostname "${cassandra_contact_point}" + done + if [[ -n "${!KONG_PG_@}" ]]; then + warn "KONG_DATABASE is set to 'cassandra', so the following environment variables will be ignored: ${!KONG_PG_@}" + fi + elif [[ "${KONG_DATABASE:-}" = "off" ]]; then + warn "KONG_DATABASE is set to 'off', Kong will run but data will not be persisted" + else + print_validation_error "Wrong value '${KONG_DATABASE}' passed to KONG_DATABASE. Valid values: 'off', 'cassandra', 'postgres'" + fi + + # Listen addresses and port validations + used_ports=() + if is_boolean_yes "$KONG_PROXY_LISTEN_OVERRIDE"; then + warn "KONG_PROXY_LISTEN was set, it will not be validated and the environment variables KONG_PROXY_LISTEN_ADDRESS, KONG_PROXY_HTTP_PORT_NUMBER and KONG_PROXY_HTTPS_PORT_NUMBER will be ignored" + else + used_ports+=(KONG_PROXY_HTTP_PORT_NUMBER KONG_PROXY_HTTPS_PORT_NUMBER) + if [[ "$KONG_PROXY_LISTEN_ADDRESS" != "0.0.0.0" && "$KONG_PROXY_LISTEN_ADDRESS" != "127.0.0.1" ]]; then + warn "Kong Proxy is set to listen at ${KONG_PROXY_LISTEN_ADDRESS} instead of 0.0.0.0 or 127.0.0.1, this could make Kong inaccessible" + fi + fi + if is_boolean_yes "$KONG_ADMIN_LISTEN_OVERRIDE"; then + warn "KONG_ADMIN_LISTEN was set, it will not be validated and the environment variables KONG_ADMIN_LISTEN_ADDRESS, KONG_ADMIN_HTTP_PORT_NUMBER and KONG_ADMIN_HTTPS_PORT_NUMBER will be ignored" + else + used_ports+=(KONG_ADMIN_HTTP_PORT_NUMBER KONG_ADMIN_HTTPS_PORT_NUMBER) + if [[ "$KONG_ADMIN_LISTEN_ADDRESS" != "127.0.0.1" ]]; then + warn "Kong Admin is set to listen at ${KONG_ADMIN_LISTEN_ADDRESS} instead of 127.0.0.1, opening it to the outside could make it insecure" + fi + fi + for port in "${used_ports[@]}"; do + check_allowed_port "${port}" + done + if [[ "${#used_ports[@]}" -ne 0 ]]; then + check_conflicting_ports "${used_ports[@]}" + fi + + # Quit if any failures occurred + [[ "$error_code" -eq 0 ]] || exit "$error_code" +} + +######################## +# Ensure Kong is initialized +# Globals: +# KONG_* +# Arguments: +# None +# Returns: +# None +######################### +kong_initialize() { + info "Initializing Kong" + + info "Waiting for database connection to succeed" + + while ! kong_migrations_list_output="$(kong migrations list 2>&1)"; do + if is_boolean_yes "$KONG_MIGRATE" && [[ "$kong_migrations_list_output" =~ "Database needs bootstrapping"* ]]; then + break + fi + debug "$kong_migrations_list_output" + debug "Database is still not ready, will retry" + sleep 1 + done + + if is_boolean_yes "$KONG_MIGRATE"; then + info "Migrating database" + kong migrations bootstrap + while ! kong migrations list; do + debug "Error during the initial bootstrap for the database, will retry" + kong migrations up + kong migrations finish + done + fi +} diff --git a/bitnami/kong/2/ol-7/rootfs/licenses/licenses.txt b/bitnami/kong/2/ol-7/rootfs/licenses/licenses.txt new file mode 100644 index 000000000000..c76ba31f3b8a --- /dev/null +++ b/bitnami/kong/2/ol-7/rootfs/licenses/licenses.txt @@ -0,0 +1,3 @@ +Bitnami containers ship with software bundles. You can find the licenses under: +/opt/bitnami/nami/COPYING +/opt/bitnami/[name-of-bundle]/licenses/[bundle-version].txt diff --git a/bitnami/kong/2/ol-7/rootfs/postunpack.sh b/bitnami/kong/2/ol-7/rootfs/postunpack.sh new file mode 100755 index 000000000000..f19e435173e2 --- /dev/null +++ b/bitnami/kong/2/ol-7/rootfs/postunpack.sh @@ -0,0 +1,70 @@ +#!/bin/bash + +# shellcheck disable=SC1091 + +set -o errexit +set -o nounset +set -o pipefail +# set -o xtrace # Uncomment this line for debugging purpose + +. /libfs.sh +. /libos.sh +. /libkong.sh + +# Auxiliar functions + +######################## +# Set a configuration to Kong's configuration file +# Globals: +# KONG_CONF_FILE +# Arguments: +# $1 - key +# $2 - value +# Returns: +# None +######################### +kong_conf_set() { + local -r key="${1:?missing key}" + local -r value="${2:-}" + + # Check if the value was commented or set before + if grep -q "^#*${key}\s*=[^#]*" "$KONG_CONF_FILE"; then + debug "Updating entry for property '${key}' in configuration file" + # Update the existing key (leave trailing space for comments) + sed -ri "s|^(#*${key}\s*=)[^#]*|\1 ${value} |" "$KONG_CONF_FILE" + else + debug "Adding new entry for property '${key}' in configuration file" + # Add a new key + printf '%s = %s\n' "$key" "$value" >>"$KONG_CONF_FILE" + fi +} + +######################## +# Uncomment non-empty entries in Kong configuration +# Globals: +# KONG_CONF_FILE +# Arguments: +# None +# Returns: +# None +######################### +kong_configure_non_empty_values() { + # Uncomment all non-empty keys in the main Kong configuration file + sed -ri 's/^#+([a-z_ ]+)=(\s*[^# ]+)/\1=\2 /' "$KONG_CONF_FILE" +} + +# Load Kong environment variables +eval "$(kong_env)" + +# Ensure users and groups used by Kong exist +ensure_user_exists "$KONG_DAEMON_USER" "$KONG_DAEMON_GROUP" +# Ensure directories used by Kong exist and have proper permissions +ensure_dir_exists "$KONG_SERVER_DIR" +chmod -R g+rwX "$KONG_SERVER_DIR" "$KONG_CONF_DIR" +# Copy configuration file and set default values +cp "$KONG_DEFAULT_CONF_FILE" "$KONG_CONF_FILE" +kong_conf_set prefix "$KONG_SERVER_DIR" +kong_conf_set nginx_daemon off +kong_conf_set lua_package_path +kong_conf_set nginx_user +kong_configure_non_empty_values diff --git a/bitnami/kong/2/ol-7/rootfs/run.sh b/bitnami/kong/2/ol-7/rootfs/run.sh new file mode 100755 index 000000000000..e1a409e62410 --- /dev/null +++ b/bitnami/kong/2/ol-7/rootfs/run.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +# shellcheck disable=SC1091 + +set -o errexit +set -o nounset +set -o pipefail +# set -o xtrace # Uncomment this line for debugging purpose + +# Load libraries +. /liblog.sh +. /libos.sh +. /libkong.sh + +# Load Kong environment variables +eval "$(kong_env)" + +info "** Starting Kong **" + +exec kong start diff --git a/bitnami/kong/2/ol-7/rootfs/setup.sh b/bitnami/kong/2/ol-7/rootfs/setup.sh new file mode 100755 index 000000000000..97a3f821c294 --- /dev/null +++ b/bitnami/kong/2/ol-7/rootfs/setup.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +# shellcheck disable=SC1091 + +set -o errexit +set -o nounset +set -o pipefail +# set -o xtrace # Uncomment this line for debugging purpose + +# Load libraries +. /libos.sh +. /libkong.sh + +# Load Kong environment variables +eval "$(kong_env)" + +# Ensure Kong environment variables are valid +kong_validate +# Ensure file ownership is correct +am_i_root && chown -R "$KONG_DAEMON_USER":"$KONG_DAEMON_GROUP" "$KONG_SERVER_DIR" "$KONG_CONF_DIR" +# Ensure Kong is initialized +kong_initialize From 4ece4da30da7da87f6d51801593f4e2a04f2a497 Mon Sep 17 00:00:00 2001 From: jotamartos Date: Tue, 4 Feb 2020 13:24:13 +0100 Subject: [PATCH 261/950] Remove unsupported branch 1 --- bitnami/kong/1/debian-10/Dockerfile | 27 -- bitnami/kong/1/debian-10/docker-compose.yml | 22 -- .../prebuildfs/build/install-gosu.sh | 10 - .../kong/1/debian-10/prebuildfs/libbitnami.sh | 50 ---- .../1/debian-10/prebuildfs/libcomponent.sh | 64 ----- .../kong/1/debian-10/prebuildfs/libfile.sh | 22 -- bitnami/kong/1/debian-10/prebuildfs/libfs.sh | 129 --------- bitnami/kong/1/debian-10/prebuildfs/liblog.sh | 83 ------ bitnami/kong/1/debian-10/prebuildfs/libnet.sh | 44 --- bitnami/kong/1/debian-10/prebuildfs/libos.sh | 132 --------- .../kong/1/debian-10/prebuildfs/libservice.sh | 57 ---- .../1/debian-10/prebuildfs/libvalidations.sh | 246 ----------------- .../kong/1/debian-10/prebuildfs/libversion.sh | 47 ---- .../debian-10/prebuildfs/opt/bitnami/.exists | 0 bitnami/kong/1/debian-10/rootfs/entrypoint.sh | 26 -- bitnami/kong/1/debian-10/rootfs/libkong.sh | 251 ------------------ .../1/debian-10/rootfs/licenses/licenses.txt | 3 - bitnami/kong/1/debian-10/rootfs/postunpack.sh | 70 ----- bitnami/kong/1/debian-10/rootfs/run.sh | 20 -- bitnami/kong/1/debian-10/rootfs/setup.sh | 22 -- bitnami/kong/1/ol-7/Dockerfile | 27 -- bitnami/kong/1/ol-7/docker-compose.yml | 22 -- .../1/ol-7/prebuildfs/build/install-gosu.sh | 10 - bitnami/kong/1/ol-7/prebuildfs/libbitnami.sh | 50 ---- .../kong/1/ol-7/prebuildfs/libcomponent.sh | 64 ----- bitnami/kong/1/ol-7/prebuildfs/libfile.sh | 22 -- bitnami/kong/1/ol-7/prebuildfs/libfs.sh | 129 --------- bitnami/kong/1/ol-7/prebuildfs/liblog.sh | 83 ------ bitnami/kong/1/ol-7/prebuildfs/libnet.sh | 44 --- bitnami/kong/1/ol-7/prebuildfs/libos.sh | 132 --------- bitnami/kong/1/ol-7/prebuildfs/libservice.sh | 57 ---- .../kong/1/ol-7/prebuildfs/libvalidations.sh | 246 ----------------- bitnami/kong/1/ol-7/prebuildfs/libversion.sh | 47 ---- .../1/ol-7/prebuildfs/opt/bitnami/.exists | 0 .../prebuildfs/usr/local/bin/install_packages | 29 -- bitnami/kong/1/ol-7/rootfs/entrypoint.sh | 26 -- bitnami/kong/1/ol-7/rootfs/libkong.sh | 251 ------------------ .../kong/1/ol-7/rootfs/licenses/licenses.txt | 3 - bitnami/kong/1/ol-7/rootfs/postunpack.sh | 70 ----- bitnami/kong/1/ol-7/rootfs/run.sh | 20 -- bitnami/kong/1/ol-7/rootfs/setup.sh | 22 -- 41 files changed, 2679 deletions(-) delete mode 100644 bitnami/kong/1/debian-10/Dockerfile delete mode 100644 bitnami/kong/1/debian-10/docker-compose.yml delete mode 100755 bitnami/kong/1/debian-10/prebuildfs/build/install-gosu.sh delete mode 100644 bitnami/kong/1/debian-10/prebuildfs/libbitnami.sh delete mode 100644 bitnami/kong/1/debian-10/prebuildfs/libcomponent.sh delete mode 100644 bitnami/kong/1/debian-10/prebuildfs/libfile.sh delete mode 100644 bitnami/kong/1/debian-10/prebuildfs/libfs.sh delete mode 100644 bitnami/kong/1/debian-10/prebuildfs/liblog.sh delete mode 100644 bitnami/kong/1/debian-10/prebuildfs/libnet.sh delete mode 100644 bitnami/kong/1/debian-10/prebuildfs/libos.sh delete mode 100644 bitnami/kong/1/debian-10/prebuildfs/libservice.sh delete mode 100644 bitnami/kong/1/debian-10/prebuildfs/libvalidations.sh delete mode 100644 bitnami/kong/1/debian-10/prebuildfs/libversion.sh delete mode 100644 bitnami/kong/1/debian-10/prebuildfs/opt/bitnami/.exists delete mode 100755 bitnami/kong/1/debian-10/rootfs/entrypoint.sh delete mode 100644 bitnami/kong/1/debian-10/rootfs/libkong.sh delete mode 100644 bitnami/kong/1/debian-10/rootfs/licenses/licenses.txt delete mode 100755 bitnami/kong/1/debian-10/rootfs/postunpack.sh delete mode 100755 bitnami/kong/1/debian-10/rootfs/run.sh delete mode 100755 bitnami/kong/1/debian-10/rootfs/setup.sh delete mode 100644 bitnami/kong/1/ol-7/Dockerfile delete mode 100644 bitnami/kong/1/ol-7/docker-compose.yml delete mode 100755 bitnami/kong/1/ol-7/prebuildfs/build/install-gosu.sh delete mode 100644 bitnami/kong/1/ol-7/prebuildfs/libbitnami.sh delete mode 100644 bitnami/kong/1/ol-7/prebuildfs/libcomponent.sh delete mode 100644 bitnami/kong/1/ol-7/prebuildfs/libfile.sh delete mode 100644 bitnami/kong/1/ol-7/prebuildfs/libfs.sh delete mode 100644 bitnami/kong/1/ol-7/prebuildfs/liblog.sh delete mode 100644 bitnami/kong/1/ol-7/prebuildfs/libnet.sh delete mode 100644 bitnami/kong/1/ol-7/prebuildfs/libos.sh delete mode 100644 bitnami/kong/1/ol-7/prebuildfs/libservice.sh delete mode 100644 bitnami/kong/1/ol-7/prebuildfs/libvalidations.sh delete mode 100644 bitnami/kong/1/ol-7/prebuildfs/libversion.sh delete mode 100644 bitnami/kong/1/ol-7/prebuildfs/opt/bitnami/.exists delete mode 100755 bitnami/kong/1/ol-7/prebuildfs/usr/local/bin/install_packages delete mode 100755 bitnami/kong/1/ol-7/rootfs/entrypoint.sh delete mode 100644 bitnami/kong/1/ol-7/rootfs/libkong.sh delete mode 100644 bitnami/kong/1/ol-7/rootfs/licenses/licenses.txt delete mode 100755 bitnami/kong/1/ol-7/rootfs/postunpack.sh delete mode 100755 bitnami/kong/1/ol-7/rootfs/run.sh delete mode 100755 bitnami/kong/1/ol-7/rootfs/setup.sh diff --git a/bitnami/kong/1/debian-10/Dockerfile b/bitnami/kong/1/debian-10/Dockerfile deleted file mode 100644 index 096f59f6bb22..000000000000 --- a/bitnami/kong/1/debian-10/Dockerfile +++ /dev/null @@ -1,27 +0,0 @@ -FROM bitnami/minideb:buster -LABEL maintainer "Bitnami " - -ENV HOME="/" \ - OS_ARCH="amd64" \ - OS_FLAVOUR="debian-10" \ - OS_NAME="linux" - -COPY prebuildfs / -# Install required system packages and dependencies -RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps sudo unzip zlib1g -RUN . ./libcomponent.sh && component_unpack "kong" "1.5.0-0" --checksum b1964ab6733c515095693a37ab2240390cd5e6e25fe5ef5b1a8702e2dad0bc6d -RUN apt-get update && apt-get upgrade && \ - rm -r /var/lib/apt/lists /var/cache/apt/archives -RUN /build/install-gosu.sh - -COPY rootfs / -RUN /postunpack.sh -ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.5.0-debian-10-r8" \ - PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" - -EXPOSE 8000 8001 8443 8444 - -USER 1001 -ENTRYPOINT [ "/entrypoint.sh" ] -CMD [ "/run.sh" ] diff --git a/bitnami/kong/1/debian-10/docker-compose.yml b/bitnami/kong/1/debian-10/docker-compose.yml deleted file mode 100644 index acc2801ac7c0..000000000000 --- a/bitnami/kong/1/debian-10/docker-compose.yml +++ /dev/null @@ -1,22 +0,0 @@ -version: '2' -services: - postgresql: - image: bitnami/postgresql:11 - volumes: - - postgresql_data:/bitnami/postgresql - environment: - - POSTGRESQL_USERNAME=kong - - POSTGRESQL_PASSWORD=bitnami - - POSTGRESQL_DATABASE=kong - kong: - image: bitnami/kong:1 - ports: - - 8000:8000 - - 8443:8443 - environment: - - KONG_MIGRATE=yes - - KONG_PG_HOST=postgresql - - KONG_PG_PASSWORD=bitnami -volumes: - postgresql_data: - driver: local diff --git a/bitnami/kong/1/debian-10/prebuildfs/build/install-gosu.sh b/bitnami/kong/1/debian-10/prebuildfs/build/install-gosu.sh deleted file mode 100755 index 1756700daa89..000000000000 --- a/bitnami/kong/1/debian-10/prebuildfs/build/install-gosu.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash - -VERSION="1.11" -SHA256="0b843df6d86e270c5b0f5cbd3c326a04e18f4b7f9b8457fa497b0454c4b138d7" - -curl --silent -L "https://github.com/tianon/gosu/releases/download/${VERSION}/gosu-amd64" > "/usr/local/bin/gosu" -echo "$SHA256" "/usr/local/bin/gosu" | sha256sum --check -chmod u+x "/usr/local/bin/gosu" -mkdir -p "/opt/bitnami/licenses" -curl --silent -L "https://raw.githubusercontent.com/tianon/gosu/master/LICENSE" > "/opt/bitnami/licenses/gosu-${VERSION}.txt" diff --git a/bitnami/kong/1/debian-10/prebuildfs/libbitnami.sh b/bitnami/kong/1/debian-10/prebuildfs/libbitnami.sh deleted file mode 100644 index 529c3fd4a3e2..000000000000 --- a/bitnami/kong/1/debian-10/prebuildfs/libbitnami.sh +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/bash -# -# Bitnami custom library - -# Load Generic Libraries -. /liblog.sh - -# Constants -BOLD='\033[1m' - -# Functions - -######################## -# Print the welcome page -# Globals: -# DISABLE_WELCOME_MESSAGE -# BITNAMI_APP_NAME -# Arguments: -# None -# Returns: -# None -######################### -print_welcome_page() { - if [[ -z "${DISABLE_WELCOME_MESSAGE:-}" ]]; then - if [[ -n "$BITNAMI_APP_NAME" ]]; then - print_image_welcome_page - fi - fi -} - -######################## -# Print the welcome page for a Bitnami Docker image -# Globals: -# BITNAMI_APP_NAME -# Arguments: -# None -# Returns: -# None -######################### -print_image_welcome_page() { - local github_url="https://github.com/bitnami/bitnami-docker-${BITNAMI_APP_NAME}" - - log "" - log "${BOLD}Welcome to the Bitnami ${BITNAMI_APP_NAME} container${RESET}" - log "Subscribe to project updates by watching ${BOLD}${github_url}${RESET}" - log "Submit issues and feature requests at ${BOLD}${github_url}/issues${RESET}" - log "Send us your feedback at ${BOLD}containers@bitnami.com${RESET}" - log "" -} - diff --git a/bitnami/kong/1/debian-10/prebuildfs/libcomponent.sh b/bitnami/kong/1/debian-10/prebuildfs/libcomponent.sh deleted file mode 100644 index 025288664f69..000000000000 --- a/bitnami/kong/1/debian-10/prebuildfs/libcomponent.sh +++ /dev/null @@ -1,64 +0,0 @@ -#!/bin/bash -# -# Library for managing Bitnami components - -# Constants -CACHE_ROOT="/tmp/bitnami/pkg/cache" -DOWNLOAD_URL="https://downloads.bitnami.com/files/stacksmith" - -# Functions - -######################## -# Download and unpack a Bitnami package -# Globals: -# OS_NAME -# OS_ARCH -# OS_FLAVOUR -# Arguments: -# $1 - component's name -# $2 - component's version -# Returns: -# None -######################### -component_unpack() { - local name="${1:?name is required}" - local version="${2:?version is required}" - local base_name="${name}-${version}-${OS_NAME}-${OS_ARCH}-${OS_FLAVOUR}" - local package_sha256="" - - # Validate arguments - shift 2 - while [ "$#" -gt 0 ]; do - case "$1" in - -c|--checksum) - shift - package_sha256="${1:?missing package checksum}" - ;; - *) - echo "Invalid command line flag $1" >&2 - return 1 - ;; - esac - shift - done - - echo "Downloading $base_name package" - if [ -f "${CACHE_ROOT}/${base_name}.tar.gz" ]; then - echo "${CACHE_ROOT}/${base_name}.tar.gz already exists, skipping download." - cp "${CACHE_ROOT}/${base_name}.tar.gz" . - rm "${CACHE_ROOT}/${base_name}.tar.gz" - if [ -f "${CACHE_ROOT}/${base_name}.tar.gz.sha256" ]; then - echo "Using the local sha256 from ${CACHE_ROOT}/${base_name}.tar.gz.sha256" - package_sha256="$(< "${CACHE_ROOT}/${base_name}.tar.gz.sha256")" - rm "${CACHE_ROOT}/${base_name}.tar.gz.sha256" - fi - else - curl --remote-name --silent "${DOWNLOAD_URL}/${base_name}.tar.gz" - fi - if [ -n "$package_sha256" ]; then - echo "Verifying package integrity" - echo "$package_sha256 ${base_name}.tar.gz" | sha256sum --check - - fi - tar --directory /opt/bitnami --extract --gunzip --file "${base_name}.tar.gz" --no-same-owner --strip-components=2 "${base_name}/files/" - rm "${base_name}.tar.gz" -} diff --git a/bitnami/kong/1/debian-10/prebuildfs/libfile.sh b/bitnami/kong/1/debian-10/prebuildfs/libfile.sh deleted file mode 100644 index 12010f043e49..000000000000 --- a/bitnami/kong/1/debian-10/prebuildfs/libfile.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash -# -# Library for managing files - -# Functions - -######################## -# Ensure a line exists in the file by replacing a matching line. -# Arguments: -# $1 - filename -# $2 - line -# $3 - match -# Returns: -# None -######################### -file_contains_line() { - local filename="${1:?filename is required}" - local line="${2:?line is required}" - local match="${3:?match is required}" - - sed --in-place "s/^$match\$/$line/" "$filename" -} diff --git a/bitnami/kong/1/debian-10/prebuildfs/libfs.sh b/bitnami/kong/1/debian-10/prebuildfs/libfs.sh deleted file mode 100644 index 10a24735c096..000000000000 --- a/bitnami/kong/1/debian-10/prebuildfs/libfs.sh +++ /dev/null @@ -1,129 +0,0 @@ -#!/bin/bash -# -# Library for file system actions - -# Load Generic Libraries -. /liblog.sh - -# Functions - -######################## -# Ensure a file/directory is owned (user and group) but the given user -# Arguments: -# $1 - filepath -# $2 - owner -# Returns: -# None -######################### -owned_by() { - local path="${1:?path is missing}" - local owner="${2:?owner is missing}" - - chown "$owner":"$owner" "$path" -} - -######################## -# Ensure a directory exists and, optionally, is owned by the given user -# Arguments: -# $1 - directory -# $2 - owner -# Returns: -# None -######################### -ensure_dir_exists() { - local dir="${1:?directory is missing}" - local owner="${2:-}" - - mkdir -p "${dir}" - if [[ -n $owner ]]; then - owned_by "$dir" "$owner" - fi -} - -######################## -# Checks whether a directory is empty or not -# Arguments: -# $1 - directory -# Returns: -# Boolean -######################### -is_dir_empty() { - local dir="${1:?missing directory}" - - if [[ ! -e "$dir" ]] || [[ -z "$(ls -A "$dir")" ]]; then - true - else - false - fi -} - -######################## -# Configure permisions and ownership recursively -# Globals: -# None -# Arguments: -# $1 - paths (as a string). -# Flags: -# -f|--file-mode - mode for directories. -# -d|--dir-mode - mode for files. -# -u|--user - user -# -g|--group - group -# Returns: -# None -######################### -configure_permissions_ownership() { - local -r paths="${1:?paths is missing}" - local dir_mode="" - local file_mode="" - local user="" - local group="" - - # Validate arguments - shift 1 - while [ "$#" -gt 0 ]; do - case "$1" in - -f|--file-mode) - shift - file_mode="${1:?missing mode for files}" - ;; - -d|--dir-mode) - shift - dir_mode="${1:?missing mode for directories}" - ;; - -u|--user) - shift - user="${1:?missing user}" - ;; - -g|--group) - shift - group="${1:?missing group}" - ;; - *) - echo "Invalid command line flag $1" >&2 - return 1 - ;; - esac - shift - done - - read -r -a filepaths <<< "$paths" - for p in "${filepaths[@]}"; do - if [[ -e "$p" ]]; then - if [[ -n $dir_mode ]]; then - find -L "$p" -type d -exec chmod "$dir_mode" {} \; - fi - if [[ -n $file_mode ]]; then - find -L "$p" -type f -exec chmod "$file_mode" {} \; - fi - if [[ -n $user ]] && [[ -n $group ]]; then - chown -LR "$user":"$group" "$p" - elif [[ -n $user ]] && [[ -z $group ]]; then - chown -LR "$user" "$p" - elif [[ -z $user ]] && [[ -n $group ]]; then - chgrp -LR "$group" "$p" - fi - else - stderr_print "$p does not exist" - fi - done -} diff --git a/bitnami/kong/1/debian-10/prebuildfs/liblog.sh b/bitnami/kong/1/debian-10/prebuildfs/liblog.sh deleted file mode 100644 index 04118273394a..000000000000 --- a/bitnami/kong/1/debian-10/prebuildfs/liblog.sh +++ /dev/null @@ -1,83 +0,0 @@ -#!/bin/bash -# -# Library for logging functions - -# Constants -RESET='\033[0m' -RED='\033[38;5;1m' -GREEN='\033[38;5;2m' -YELLOW='\033[38;5;3m' -MAGENTA='\033[38;5;5m' -CYAN='\033[38;5;6m' - -# Functions - -######################## -# Print to STDERR -# Arguments: -# Message to print -# Returns: -# None -######################### -stderr_print() { - printf "%b\\n" "${*}" >&2 -} - -######################## -# Log message -# Arguments: -# Message to log -# Returns: -# None -######################### -log() { - stderr_print "${CYAN}${MODULE:-} ${MAGENTA}$(date "+%T.%2N ")${RESET}${*}" -} -######################## -# Log an 'info' message -# Arguments: -# Message to log -# Returns: -# None -######################### -info() { - log "${GREEN}INFO ${RESET} ==> ${*}" -} -######################## -# Log message -# Arguments: -# Message to log -# Returns: -# None -######################### -warn() { - log "${YELLOW}WARN ${RESET} ==> ${*}" -} -######################## -# Log an 'error' message -# Arguments: -# Message to log -# Returns: -# None -######################### -error() { - log "${RED}ERROR${RESET} ==> ${*}" -} -######################## -# Log a 'debug' message -# Globals: -# BITNAMI_DEBUG -# Arguments: -# None -# Returns: -# None -######################### -debug() { - # 'is_boolean_yes' is defined in libvalidations.sh, but depends on this file so we cannot source it - local -r bool="${BITNAMI_DEBUG:-false}" - # comparison is performed without regard to the case of alphabetic characters - shopt -s nocasematch - if [[ "$bool" = 1 || "$bool" =~ ^(yes|true)$ ]]; then - log "${MAGENTA}DEBUG${RESET} ==> ${*}" - fi -} diff --git a/bitnami/kong/1/debian-10/prebuildfs/libnet.sh b/bitnami/kong/1/debian-10/prebuildfs/libnet.sh deleted file mode 100644 index f884b7661fd7..000000000000 --- a/bitnami/kong/1/debian-10/prebuildfs/libnet.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/bash -# -# Library for network functions - -# Functions - -######################## -# Resolve dns -# Arguments: -# $1 - Hostname to resolve -# Returns: -# IP -######################### -dns_lookup() { - local host="${1:?host is missing}" - getent ahosts "$host" | awk '/STREAM/ {print $1 }' -} - -######################## -# Get machine's IP -# Arguments: -# None -# Returns: -# Machine IP -######################### -get_machine_ip() { - dns_lookup "$(hostname)" -} - -######################## -# Check if the provided argument is a resolved hostname -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_hostname_resolved() { - local -r host="${1:?missing value}" - if [[ -n "$(dns_lookup "$host")" ]]; then - true - else - false - fi -} diff --git a/bitnami/kong/1/debian-10/prebuildfs/libos.sh b/bitnami/kong/1/debian-10/prebuildfs/libos.sh deleted file mode 100644 index 1a5ba3bb2a64..000000000000 --- a/bitnami/kong/1/debian-10/prebuildfs/libos.sh +++ /dev/null @@ -1,132 +0,0 @@ -#!/bin/bash -# -# Library for operating system actions - -# Functions - -######################## -# Check if an user exists in the system -# Arguments: -# $1 - user -# Returns: -# Boolean -######################### -user_exists() { - local user="${1:?user is missing}" - id "$user" >/dev/null 2>&1 -} - -######################## -# Check if a group exists in the system -# Arguments: -# $1 - group -# Returns: -# Boolean -######################### -group_exists() { - local group="${1:?group is missing}" - getent group "$group" >/dev/null 2>&1 -} - -######################## -# Create a group in the system if it does not exist already -# Arguments: -# $1 - group -# Returns: -# None -######################### -ensure_group_exists() { - local group="${1:?group is missing}" - - if ! group_exists "$group"; then - groupadd "$group" >/dev/null 2>&1 - fi -} - -######################## -# Create an user in the system if it does not exist already -# Arguments: -# $1 - user -# $2 - group -# Returns: -# None -######################### -ensure_user_exists() { - local user="${1:?user is missing}" - local group="${2:-}" - - if ! user_exists "$user"; then - useradd "$user" >/dev/null 2>&1 - if [[ -n "$group" ]]; then - ensure_group_exists "$group" - usermod -a -G "$group" "$user" >/dev/null 2>&1 - fi - fi -} - -######################## -# Check if the script is currently running as root -# Arguments: -# $1 - user -# $2 - group -# Returns: -# Boolean -######################### -am_i_root() { - if [[ "$(id -u)" = "0" ]]; then - true - else - false - fi -} - -######################## -# Get total memory available -# Arguments: -# None -# Returns: -# Memory in bytes -######################### -get_total_memory() { - echo $(($(grep MemTotal /proc/meminfo | awk '{print $2}') / 1024)) -} - -######################### -# Redirects output to /dev/null if debug mode is disabled -# Globals: -# BITNAMI_DEBUG -# Arguments: -# $@ - Command to execute -# Returns: -# None -######################### -debug_execute() { - if ${BITNAMI_DEBUG:-false}; then - "$@" - else - "$@" >/dev/null 2>&1 - fi -} - -######################## -# Retries a command a given number of times -# Arguments: -# $1 - cmd (as a string) -# $2 - max retries. Default: 12 -# $3 - sleep between retries (in seconds). Default: 5 -# Returns: -# Boolean -######################### -retry_while() { - local -r cmd="${1:?cmd is missing}" - local -r retries="${2:-12}" - local -r sleep_time="${3:-5}" - local return_value=1 - - read -r -a command <<< "$cmd" - for ((i = 1 ; i <= retries ; i+=1 )); do - "${command[@]}" && return_value=0 && break - sleep "$sleep_time" - done - return $return_value -} diff --git a/bitnami/kong/1/debian-10/prebuildfs/libservice.sh b/bitnami/kong/1/debian-10/prebuildfs/libservice.sh deleted file mode 100644 index 0a83cd3d927f..000000000000 --- a/bitnami/kong/1/debian-10/prebuildfs/libservice.sh +++ /dev/null @@ -1,57 +0,0 @@ -#!/bin/bash -# -# Library for managing services - -# Functions - -######################## -# Read the provided pid file and returns a PID -# Arguments: -# $1 - Pid file -# Returns: -# PID -######################### -get_pid_from_file() { - local pid_file="${1:?pid file is missing}" - - if [[ -f "$pid_file" ]]; then - if [[ -n "$(< "$pid_file")" ]] && [[ "$(< "$pid_file")" -gt 0 ]]; then - echo "$(< "$pid_file")" - fi - fi -} - -######################## -# Check if a provided PID corresponds to a running service -# Arguments: -# $1 - PID -# Returns: -# Boolean -######################### -is_service_running() { - local pid="${1:?pid is missing}" - - kill -0 "$pid" 2>/dev/null -} - -######################## -# Stop a service by sending a termination signal to its pid -# Arguments: -# $1 - Pid file -# Returns: -# None -######################### -stop_service_using_pid() { - local pid_file="${1:?pid file is missing}" - local pid - - pid="$(get_pid_from_file "$pid_file")" - [[ -z "$pid" ]] || ! is_service_running "$pid" && return - - kill "$pid" - local counter=10 - while [[ "$counter" -ne 0 ]] && is_service_running "$pid"; do - sleep 1 - counter=$((counter - 1)) - done -} diff --git a/bitnami/kong/1/debian-10/prebuildfs/libvalidations.sh b/bitnami/kong/1/debian-10/prebuildfs/libvalidations.sh deleted file mode 100644 index ef9aaf0cf31f..000000000000 --- a/bitnami/kong/1/debian-10/prebuildfs/libvalidations.sh +++ /dev/null @@ -1,246 +0,0 @@ -#!/bin/bash -# -# Validation functions library - -# Load Generic Libraries -. /liblog.sh - -# Functions - -######################## -# Check if the provided argument is an integer -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_int() { - local -r int="${1:?missing value}" - if [[ "$int" =~ ^-?[0-9]+ ]]; then - true - else - false - fi -} - -######################## -# Check if the provided argument is a positive integer -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_positive_int() { - local -r int="${1:?missing value}" - if is_int "$int" && (( "${int}" >= 0 )); then - true - else - false - fi -} - -######################## -# Check if the provided argument is a boolean or is the string 'yes/true' -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_boolean_yes() { - local -r bool="${1:-}" - # comparison is performed without regard to the case of alphabetic characters - shopt -s nocasematch - if [[ "$bool" = 1 || "$bool" =~ ^(yes|true)$ ]]; then - true - else - false - fi -} - -######################## -# Check if the provided argument is a boolean yes/no value -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_yes_no_value() { - local -r bool="${1:-}" - if [[ "$bool" =~ ^(yes|no)$ ]]; then - true - else - false - fi -} - -######################## -# Check if the provided argument is a boolean true/false value -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_true_false_value() { - local -r bool="${1:-}" - if [[ "$bool" =~ ^(true|false)$ ]]; then - true - else - false - fi -} - -######################## -# Check if the provided argument is an empty string or not defined -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_empty_value() { - local -r val="${1:-}" - if [[ -z "$val" ]]; then - true - else - false - fi -} - -######################## -# Validate if the provided argument is a valid port -# Arguments: -# $1 - Port to validate -# Returns: -# Boolean and error message -######################### -validate_port() { - local value - local unprivileged=0 - - # Parse flags - while [[ "$#" -gt 0 ]]; do - case "$1" in - -unprivileged) - unprivileged=1 - ;; - --) - shift - break - ;; - -*) - stderr_print "unrecognized flag $1" - return 1 - ;; - *) - break - ;; - esac - shift - done - - if [[ "$#" -gt 1 ]]; then - echo "too many arguments provided" - return 2 - elif [[ "$#" -eq 0 ]]; then - stderr_print "missing port argument" - return 1 - else - value=$1 - fi - - if [[ -z "$value" ]]; then - echo "the value is empty" - return 1 - else - if ! is_int "$value"; then - echo "value is not an integer" - return 2 - elif [[ "$value" -lt 0 ]]; then - echo "negative value provided" - return 2 - elif [[ "$value" -gt 65535 ]]; then - echo "requested port is greater than 65535" - return 2 - elif [[ "$unprivileged" = 1 && "$value" -lt 1024 ]]; then - echo "privileged port requested" - return 3 - fi - fi -} - -######################## -# Validate if the provided argument is a valid IPv4 address -# Arguments: -# $1 - IP to validate -# Returns: -# Boolean -######################### -validate_ipv4() { - local ip="${1:?ip is missing}" - local stat=1 - - if [[ $ip =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then - read -r -a ip_array <<< "$(tr '.' ' ' <<< "$ip")" - [[ ${ip_array[0]} -le 255 && ${ip_array[1]} -le 255 \ - && ${ip_array[2]} -le 255 && ${ip_array[3]} -le 255 ]] - stat=$? - fi - return $stat -} - -######################## -# Validate a string format -# Arguments: -# $1 - String to validate -# Returns: -# Boolean -######################### -validate_string() { - local string - local min_length=-1 - local max_length=-1 - - # Parse flags - while [ "$#" -gt 0 ]; do - case "$1" in - -min-length) - shift - min_length=${1:-} - ;; - -max-length) - shift - max_length=${1:-} - ;; - --) - shift - break - ;; - -*) - stderr_print "unrecognized flag $1" - return 1 - ;; - *) - break - ;; - esac - shift - done - - if [ "$#" -gt 1 ]; then - stderr_print "too many arguments provided" - return 2 - elif [ "$#" -eq 0 ]; then - stderr_print "missing string" - return 1 - else - string=$1 - fi - - if [[ "$min_length" -ge 0 ]] && [[ "${#string}" -lt "$min_length" ]]; then - echo "string length is less than $min_length" - return 1 - fi - if [[ "$max_length" -ge 0 ]] && [[ "${#string}" -gt "$max_length" ]]; then - echo "string length is great than $max_length" - return 1 - fi -} diff --git a/bitnami/kong/1/debian-10/prebuildfs/libversion.sh b/bitnami/kong/1/debian-10/prebuildfs/libversion.sh deleted file mode 100644 index b16090cfe1f4..000000000000 --- a/bitnami/kong/1/debian-10/prebuildfs/libversion.sh +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/bash -# -# Library for managing versions strings - -# Load Generic Libraries -. ./liblog.sh - -# Functions -######################## -# Gets semantic version -# Arguments: -# $1 - version: string to extract major.minor.patch -# $2 - section: 1 to extract major, 2 to extract minor, 3 to extract patch -# Returns: -# array with the major, minor and release -######################### -get_sematic_version () { - local version="${1:?version is required}" - local section="${2:?section is required}" - local -a version_sections - - #Regex to parse versions: x.y.z - local -r regex='([0-9]+)(\.([0-9]+)(\.([0-9]+))?)?' - - if [[ "$version" =~ $regex ]]; then - local i=1 - local j=1 - local n=${#BASH_REMATCH[*]} - - while [[ $i -lt $n ]]; do - if [[ -n "${BASH_REMATCH[$i]}" ]] && [[ "${BASH_REMATCH[$i]:0:1}" != '.' ]]; then - version_sections[$j]=${BASH_REMATCH[$i]} - ((j++)) - fi - ((i++)) - done - - local number_regex='^[0-9]+$' - if [[ "$section" =~ $number_regex ]] && (( $section > 0 )) && (( $section <= 3 )); then - echo "${version_sections[$section]}" - return - else - stderr_print "Section allowed values are: 1, 2, and 3" - return 1 - fi - fi -} diff --git a/bitnami/kong/1/debian-10/prebuildfs/opt/bitnami/.exists b/bitnami/kong/1/debian-10/prebuildfs/opt/bitnami/.exists deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/bitnami/kong/1/debian-10/rootfs/entrypoint.sh b/bitnami/kong/1/debian-10/rootfs/entrypoint.sh deleted file mode 100755 index a6f9da9603c8..000000000000 --- a/bitnami/kong/1/debian-10/rootfs/entrypoint.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash - -# shellcheck disable=SC1091 - -set -o errexit -set -o nounset -set -o pipefail -#set -o xtrace # Uncomment this line for debugging purpose - -# Load libraries -. /libbitnami.sh -. /liblog.sh -. /libkong.sh - -eval "$(kong_env)" - -print_welcome_page - -if [[ "$*" = *"/run.sh"* ]]; then - info "** Starting Kong setup **" - /setup.sh - info "** Kong setup finished! **" -fi - -echo "" -exec "$@" diff --git a/bitnami/kong/1/debian-10/rootfs/libkong.sh b/bitnami/kong/1/debian-10/rootfs/libkong.sh deleted file mode 100644 index e93fad1818ba..000000000000 --- a/bitnami/kong/1/debian-10/rootfs/libkong.sh +++ /dev/null @@ -1,251 +0,0 @@ -#!/bin/bash -# -# Bitnami Kong library - -# shellcheck disable=SC1090 -# shellcheck disable=SC1091 - -# Load generic libraries -. /libfs.sh -. /liblog.sh -. /libnet.sh -. /libos.sh -. /libservice.sh -. /libvalidations.sh - -######################## -# Load global variables used for Kong configuration. -# Globals: -# KONG_* -# Arguments: -# None -# Returns: -# Series of exports to be used as 'eval' arguments -######################### -kong_env() { - # Avoid environment settings getting overridden twice - if [[ -n "${MODULE:-}" ]]; then - return - fi - - cat <<"EOF" -# Bitnami debug -export MODULE=kong -export BITNAMI_DEBUG="${BITNAMI_DEBUG:-false}" - -# Paths -export KONG_BASE_DIR="/opt/bitnami/kong" -export KONG_CONF_DIR="${KONG_BASE_DIR}/conf" -export KONG_SERVER_DIR="${KONG_BASE_DIR}/server" - -export KONG_CONF_FILE="${KONG_CONF_DIR}/kong.conf" -export KONG_DEFAULT_CONF_FILE="${KONG_CONF_DIR}/kong.conf.default" - -# Users -export KONG_DAEMON_USER="${KONG_DAEMON_USER:-kong}" -export KONG_DAEMON_GROUP="${KONG_DAEMON_GROUP:-kong}" - -# Cluster settings -export KONG_MIGRATE="${KONG_MIGRATE:-no}" - -# Port and service bind configurations for KONG_PROXY_LISTEN and KONG_ADMIN_LISTEN -# By setting these separately, we are consistent with other Bitnami solutions -# However it is still possible to directly set KONG_PROXY_LISTEN and KONG_ADMIN_LISTEN -export KONG_PROXY_LISTEN_ADDRESS="${KONG_PROXY_LISTEN_ADDRESS:-0.0.0.0}" -export KONG_PROXY_HTTP_PORT_NUMBER="${KONG_PROXY_HTTP_PORT_NUMBER:-8000}" -export KONG_PROXY_HTTPS_PORT_NUMBER="${KONG_PROXY_HTTPS_PORT_NUMBER:-8443}" -export KONG_ADMIN_LISTEN_ADDRESS="${KONG_ADMIN_LISTEN_ADDRESS:-127.0.0.1}" -export KONG_ADMIN_HTTP_PORT_NUMBER="${KONG_ADMIN_HTTP_PORT_NUMBER:-8001}" -export KONG_ADMIN_HTTPS_PORT_NUMBER="${KONG_ADMIN_HTTPS_PORT_NUMBER:-8444}" - -# Kong configuration -# These environment variables are used by Kong and allow overriding values in its configuration file -export KONG_NGINX_DAEMON="off" -EOF - - if am_i_root; then - cat <<"EOF" -export KONG_NGINX_USER="${KONG_DAEMON_USER} ${KONG_DAEMON_GROUP}" -EOF - fi - - if [[ -f "${KONG_CASSANDRA_PASSWORD_FILE:-}" ]]; then - cat <<"EOF" -export KONG_CASSANDRA_PASSWORD="$(< "${KONG_CASSANDRA_PASSWORD_FILE}")" -EOF - fi - - if [[ -f "${KONG_POSTGRESQL_PASSWORD_FILE:-}" ]]; then - cat <<"EOF" -export KONG_PG_PASSWORD="$(< "${KONG_POSTGRESQL_PASSWORD_FILE}")" -EOF - fi - - # Compound environment variables that form a single Kong configuration entry - if [[ -n "${KONG_PROXY_LISTEN:-}" ]]; then - cat <<"EOF" -export KONG_PROXY_LISTEN_OVERRIDE="yes" -EOF - else - cat <<"EOF" -export KONG_PROXY_LISTEN="${KONG_PROXY_LISTEN_ADDRESS}:${KONG_PROXY_HTTP_PORT_NUMBER}, ${KONG_PROXY_LISTEN_ADDRESS}:${KONG_PROXY_HTTPS_PORT_NUMBER} ssl" -export KONG_PROXY_LISTEN_OVERRIDE="no" -EOF - fi - if [[ -n "${KONG_ADMIN_LISTEN:-}" ]]; then - cat <<"EOF" -export KONG_ADMIN_LISTEN_OVERRIDE="yes" -EOF - else - cat <<"EOF" -export KONG_ADMIN_LISTEN="${KONG_ADMIN_LISTEN_ADDRESS}:${KONG_ADMIN_HTTP_PORT_NUMBER}, ${KONG_ADMIN_LISTEN_ADDRESS}:${KONG_ADMIN_HTTPS_PORT_NUMBER} ssl" -export KONG_ADMIN_LISTEN_OVERRIDE="no" -EOF - fi -} - -######################## -# Validate settings in KONG_* environment variables -# Globals: -# KONG_* -# Arguments: -# None -# Returns: -# None -######################### -kong_validate() { - info "Validating settings in KONG_* env vars" - local error_code=0 - - # Auxiliary functions - - print_validation_error() { - error "$1" - error_code="1" - } - - check_yes_no_value() { - if ! is_yes_no_value "${!1}"; then - print_validation_error "The allowed values for ${1} are [yes, no]" - fi - } - - check_password_file() { - if [[ -n "${!1:-}" ]] && ! [[ -f "${!1:-}" ]]; then - print_validation_error "The variable ${1} is defined but the file ${!1} is not accessible or does not exist" - fi - } - - check_resolved_hostname() { - if ! is_hostname_resolved "$1"; then - warn "Hostname ${1} could not be resolved, this could lead to connection issues" - fi - } - - check_allowed_port() { - local validate_port_args=() - ! am_i_root && validate_port_args+=("-unprivileged") - if ! err="$(validate_port "${validate_port_args[@]}" "${!1}")"; then - print_validation_error "An invalid port was specified in the environment variable ${1}: ${err}" - fi - } - - check_conflicting_ports() { - local -r total="$#" - for i in $(seq 1 "$((total - 1))"); do - for j in $(seq "$((i + 1))" "$total"); do - if (( "${!i}" == "${!j}" )); then - print_validation_error "${!i} and ${!j} are bound to the same port" - fi - done - done - } - - check_yes_no_value KONG_MIGRATE - - # Validate some of the supported environment variables used by Kong - - # Database setting validations - if [[ "${KONG_DATABASE:-postgres}" = "postgres" ]]; then - # PostgreSQL is the default database type - check_password_file KONG_POSTGRESQL_PASSWORD_FILE - [[ -n "${KONG_PG_HOST:-}" ]] && check_resolved_hostname "${KONG_PG_HOST:-}" - if [[ -n "${!KONG_CASSANDRA_@}" ]]; then - warn "KONG_DATABASE is empty or set to 'postgres', so the following environment variables will be ignored: ${!KONG_CASSANDRA_@}" - fi - elif [[ "${KONG_DATABASE:-}" = "cassandra" ]]; then - check_password_file KONG_CASSANDRA_PASSWORD_FILE - for cassandra_contact_point in $(echo "${CASSANDRA_CONTACT_POINTS:-}" | sed -r 's/[, ]+/\n/'); do - check_resolved_hostname "${cassandra_contact_point}" - done - if [[ -n "${!KONG_PG_@}" ]]; then - warn "KONG_DATABASE is set to 'cassandra', so the following environment variables will be ignored: ${!KONG_PG_@}" - fi - elif [[ "${KONG_DATABASE:-}" = "off" ]]; then - warn "KONG_DATABASE is set to 'off', Kong will run but data will not be persisted" - else - print_validation_error "Wrong value '${KONG_DATABASE}' passed to KONG_DATABASE. Valid values: 'off', 'cassandra', 'postgres'" - fi - - # Listen addresses and port validations - used_ports=() - if is_boolean_yes "$KONG_PROXY_LISTEN_OVERRIDE"; then - warn "KONG_PROXY_LISTEN was set, it will not be validated and the environment variables KONG_PROXY_LISTEN_ADDRESS, KONG_PROXY_HTTP_PORT_NUMBER and KONG_PROXY_HTTPS_PORT_NUMBER will be ignored" - else - used_ports+=(KONG_PROXY_HTTP_PORT_NUMBER KONG_PROXY_HTTPS_PORT_NUMBER) - if [[ "$KONG_PROXY_LISTEN_ADDRESS" != "0.0.0.0" && "$KONG_PROXY_LISTEN_ADDRESS" != "127.0.0.1" ]]; then - warn "Kong Proxy is set to listen at ${KONG_PROXY_LISTEN_ADDRESS} instead of 0.0.0.0 or 127.0.0.1, this could make Kong inaccessible" - fi - fi - if is_boolean_yes "$KONG_ADMIN_LISTEN_OVERRIDE"; then - warn "KONG_ADMIN_LISTEN was set, it will not be validated and the environment variables KONG_ADMIN_LISTEN_ADDRESS, KONG_ADMIN_HTTP_PORT_NUMBER and KONG_ADMIN_HTTPS_PORT_NUMBER will be ignored" - else - used_ports+=(KONG_ADMIN_HTTP_PORT_NUMBER KONG_ADMIN_HTTPS_PORT_NUMBER) - if [[ "$KONG_ADMIN_LISTEN_ADDRESS" != "127.0.0.1" ]]; then - warn "Kong Admin is set to listen at ${KONG_ADMIN_LISTEN_ADDRESS} instead of 127.0.0.1, opening it to the outside could make it insecure" - fi - fi - for port in "${used_ports[@]}"; do - check_allowed_port "${port}" - done - if [[ "${#used_ports[@]}" -ne 0 ]]; then - check_conflicting_ports "${used_ports[@]}" - fi - - # Quit if any failures occurred - [[ "$error_code" -eq 0 ]] || exit "$error_code" -} - -######################## -# Ensure Kong is initialized -# Globals: -# KONG_* -# Arguments: -# None -# Returns: -# None -######################### -kong_initialize() { - info "Initializing Kong" - - info "Waiting for database connection to succeed" - - while ! kong_migrations_list_output="$(kong migrations list 2>&1)"; do - if is_boolean_yes "$KONG_MIGRATE" && [[ "$kong_migrations_list_output" =~ "Database needs bootstrapping"* ]]; then - break - fi - debug "$kong_migrations_list_output" - debug "Database is still not ready, will retry" - sleep 1 - done - - if is_boolean_yes "$KONG_MIGRATE"; then - info "Migrating database" - kong migrations bootstrap - while ! kong migrations list; do - debug "Error during the initial bootstrap for the database, will retry" - kong migrations up - kong migrations finish - done - fi -} diff --git a/bitnami/kong/1/debian-10/rootfs/licenses/licenses.txt b/bitnami/kong/1/debian-10/rootfs/licenses/licenses.txt deleted file mode 100644 index c76ba31f3b8a..000000000000 --- a/bitnami/kong/1/debian-10/rootfs/licenses/licenses.txt +++ /dev/null @@ -1,3 +0,0 @@ -Bitnami containers ship with software bundles. You can find the licenses under: -/opt/bitnami/nami/COPYING -/opt/bitnami/[name-of-bundle]/licenses/[bundle-version].txt diff --git a/bitnami/kong/1/debian-10/rootfs/postunpack.sh b/bitnami/kong/1/debian-10/rootfs/postunpack.sh deleted file mode 100755 index f19e435173e2..000000000000 --- a/bitnami/kong/1/debian-10/rootfs/postunpack.sh +++ /dev/null @@ -1,70 +0,0 @@ -#!/bin/bash - -# shellcheck disable=SC1091 - -set -o errexit -set -o nounset -set -o pipefail -# set -o xtrace # Uncomment this line for debugging purpose - -. /libfs.sh -. /libos.sh -. /libkong.sh - -# Auxiliar functions - -######################## -# Set a configuration to Kong's configuration file -# Globals: -# KONG_CONF_FILE -# Arguments: -# $1 - key -# $2 - value -# Returns: -# None -######################### -kong_conf_set() { - local -r key="${1:?missing key}" - local -r value="${2:-}" - - # Check if the value was commented or set before - if grep -q "^#*${key}\s*=[^#]*" "$KONG_CONF_FILE"; then - debug "Updating entry for property '${key}' in configuration file" - # Update the existing key (leave trailing space for comments) - sed -ri "s|^(#*${key}\s*=)[^#]*|\1 ${value} |" "$KONG_CONF_FILE" - else - debug "Adding new entry for property '${key}' in configuration file" - # Add a new key - printf '%s = %s\n' "$key" "$value" >>"$KONG_CONF_FILE" - fi -} - -######################## -# Uncomment non-empty entries in Kong configuration -# Globals: -# KONG_CONF_FILE -# Arguments: -# None -# Returns: -# None -######################### -kong_configure_non_empty_values() { - # Uncomment all non-empty keys in the main Kong configuration file - sed -ri 's/^#+([a-z_ ]+)=(\s*[^# ]+)/\1=\2 /' "$KONG_CONF_FILE" -} - -# Load Kong environment variables -eval "$(kong_env)" - -# Ensure users and groups used by Kong exist -ensure_user_exists "$KONG_DAEMON_USER" "$KONG_DAEMON_GROUP" -# Ensure directories used by Kong exist and have proper permissions -ensure_dir_exists "$KONG_SERVER_DIR" -chmod -R g+rwX "$KONG_SERVER_DIR" "$KONG_CONF_DIR" -# Copy configuration file and set default values -cp "$KONG_DEFAULT_CONF_FILE" "$KONG_CONF_FILE" -kong_conf_set prefix "$KONG_SERVER_DIR" -kong_conf_set nginx_daemon off -kong_conf_set lua_package_path -kong_conf_set nginx_user -kong_configure_non_empty_values diff --git a/bitnami/kong/1/debian-10/rootfs/run.sh b/bitnami/kong/1/debian-10/rootfs/run.sh deleted file mode 100755 index e1a409e62410..000000000000 --- a/bitnami/kong/1/debian-10/rootfs/run.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -# shellcheck disable=SC1091 - -set -o errexit -set -o nounset -set -o pipefail -# set -o xtrace # Uncomment this line for debugging purpose - -# Load libraries -. /liblog.sh -. /libos.sh -. /libkong.sh - -# Load Kong environment variables -eval "$(kong_env)" - -info "** Starting Kong **" - -exec kong start diff --git a/bitnami/kong/1/debian-10/rootfs/setup.sh b/bitnami/kong/1/debian-10/rootfs/setup.sh deleted file mode 100755 index 97a3f821c294..000000000000 --- a/bitnami/kong/1/debian-10/rootfs/setup.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -# shellcheck disable=SC1091 - -set -o errexit -set -o nounset -set -o pipefail -# set -o xtrace # Uncomment this line for debugging purpose - -# Load libraries -. /libos.sh -. /libkong.sh - -# Load Kong environment variables -eval "$(kong_env)" - -# Ensure Kong environment variables are valid -kong_validate -# Ensure file ownership is correct -am_i_root && chown -R "$KONG_DAEMON_USER":"$KONG_DAEMON_GROUP" "$KONG_SERVER_DIR" "$KONG_CONF_DIR" -# Ensure Kong is initialized -kong_initialize diff --git a/bitnami/kong/1/ol-7/Dockerfile b/bitnami/kong/1/ol-7/Dockerfile deleted file mode 100644 index 5510e40ea76c..000000000000 --- a/bitnami/kong/1/ol-7/Dockerfile +++ /dev/null @@ -1,27 +0,0 @@ -FROM oraclelinux:7-slim -LABEL maintainer "Bitnami " - -ENV HOME="/" \ - OS_ARCH="x86_64" \ - OS_FLAVOUR="ol-7" \ - OS_NAME="linux" - -COPY prebuildfs / -# Install required system packages and dependencies -RUN install_packages ca-certificates curl glibc gzip hostname keyutils-libs krb5-libs libaio-devel libcom_err libgcc libselinux libyaml nss-softokn-freebl openssl-libs pcre perl procps-ng sudo tar which zlib -RUN . ./libcomponent.sh && component_unpack "kong" "1.5.0-0" --checksum 3397f0d8f69cd03d5e3eeaf46f8b5ff84b18f77e2afb9e482e5e656e9ca27f2e -RUN yum upgrade -y && \ - rm -r /var/cache/yum -RUN /build/install-gosu.sh - -COPY rootfs / -RUN /postunpack.sh -ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="1.5.0-ol-7-r9" \ - PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" - -EXPOSE 8000 8001 8443 8444 - -USER 1001 -ENTRYPOINT [ "/entrypoint.sh" ] -CMD [ "/run.sh" ] diff --git a/bitnami/kong/1/ol-7/docker-compose.yml b/bitnami/kong/1/ol-7/docker-compose.yml deleted file mode 100644 index 726eef225e60..000000000000 --- a/bitnami/kong/1/ol-7/docker-compose.yml +++ /dev/null @@ -1,22 +0,0 @@ -version: '2' -services: - postgresql: - image: bitnami/postgresql:11-ol-7 - volumes: - - postgresql_data:/bitnami/postgresql - environment: - - POSTGRESQL_USERNAME=kong - - POSTGRESQL_PASSWORD=bitnami - - POSTGRESQL_DATABASE=kong - kong: - image: bitnami/kong:1-ol-7 - ports: - - 8000:8000 - - 8443:8443 - environment: - - KONG_MIGRATE=yes - - KONG_PG_HOST=postgresql - - KONG_PG_PASSWORD=bitnami -volumes: - postgresql_data: - driver: local diff --git a/bitnami/kong/1/ol-7/prebuildfs/build/install-gosu.sh b/bitnami/kong/1/ol-7/prebuildfs/build/install-gosu.sh deleted file mode 100755 index 1756700daa89..000000000000 --- a/bitnami/kong/1/ol-7/prebuildfs/build/install-gosu.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash - -VERSION="1.11" -SHA256="0b843df6d86e270c5b0f5cbd3c326a04e18f4b7f9b8457fa497b0454c4b138d7" - -curl --silent -L "https://github.com/tianon/gosu/releases/download/${VERSION}/gosu-amd64" > "/usr/local/bin/gosu" -echo "$SHA256" "/usr/local/bin/gosu" | sha256sum --check -chmod u+x "/usr/local/bin/gosu" -mkdir -p "/opt/bitnami/licenses" -curl --silent -L "https://raw.githubusercontent.com/tianon/gosu/master/LICENSE" > "/opt/bitnami/licenses/gosu-${VERSION}.txt" diff --git a/bitnami/kong/1/ol-7/prebuildfs/libbitnami.sh b/bitnami/kong/1/ol-7/prebuildfs/libbitnami.sh deleted file mode 100644 index 529c3fd4a3e2..000000000000 --- a/bitnami/kong/1/ol-7/prebuildfs/libbitnami.sh +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/bash -# -# Bitnami custom library - -# Load Generic Libraries -. /liblog.sh - -# Constants -BOLD='\033[1m' - -# Functions - -######################## -# Print the welcome page -# Globals: -# DISABLE_WELCOME_MESSAGE -# BITNAMI_APP_NAME -# Arguments: -# None -# Returns: -# None -######################### -print_welcome_page() { - if [[ -z "${DISABLE_WELCOME_MESSAGE:-}" ]]; then - if [[ -n "$BITNAMI_APP_NAME" ]]; then - print_image_welcome_page - fi - fi -} - -######################## -# Print the welcome page for a Bitnami Docker image -# Globals: -# BITNAMI_APP_NAME -# Arguments: -# None -# Returns: -# None -######################### -print_image_welcome_page() { - local github_url="https://github.com/bitnami/bitnami-docker-${BITNAMI_APP_NAME}" - - log "" - log "${BOLD}Welcome to the Bitnami ${BITNAMI_APP_NAME} container${RESET}" - log "Subscribe to project updates by watching ${BOLD}${github_url}${RESET}" - log "Submit issues and feature requests at ${BOLD}${github_url}/issues${RESET}" - log "Send us your feedback at ${BOLD}containers@bitnami.com${RESET}" - log "" -} - diff --git a/bitnami/kong/1/ol-7/prebuildfs/libcomponent.sh b/bitnami/kong/1/ol-7/prebuildfs/libcomponent.sh deleted file mode 100644 index 025288664f69..000000000000 --- a/bitnami/kong/1/ol-7/prebuildfs/libcomponent.sh +++ /dev/null @@ -1,64 +0,0 @@ -#!/bin/bash -# -# Library for managing Bitnami components - -# Constants -CACHE_ROOT="/tmp/bitnami/pkg/cache" -DOWNLOAD_URL="https://downloads.bitnami.com/files/stacksmith" - -# Functions - -######################## -# Download and unpack a Bitnami package -# Globals: -# OS_NAME -# OS_ARCH -# OS_FLAVOUR -# Arguments: -# $1 - component's name -# $2 - component's version -# Returns: -# None -######################### -component_unpack() { - local name="${1:?name is required}" - local version="${2:?version is required}" - local base_name="${name}-${version}-${OS_NAME}-${OS_ARCH}-${OS_FLAVOUR}" - local package_sha256="" - - # Validate arguments - shift 2 - while [ "$#" -gt 0 ]; do - case "$1" in - -c|--checksum) - shift - package_sha256="${1:?missing package checksum}" - ;; - *) - echo "Invalid command line flag $1" >&2 - return 1 - ;; - esac - shift - done - - echo "Downloading $base_name package" - if [ -f "${CACHE_ROOT}/${base_name}.tar.gz" ]; then - echo "${CACHE_ROOT}/${base_name}.tar.gz already exists, skipping download." - cp "${CACHE_ROOT}/${base_name}.tar.gz" . - rm "${CACHE_ROOT}/${base_name}.tar.gz" - if [ -f "${CACHE_ROOT}/${base_name}.tar.gz.sha256" ]; then - echo "Using the local sha256 from ${CACHE_ROOT}/${base_name}.tar.gz.sha256" - package_sha256="$(< "${CACHE_ROOT}/${base_name}.tar.gz.sha256")" - rm "${CACHE_ROOT}/${base_name}.tar.gz.sha256" - fi - else - curl --remote-name --silent "${DOWNLOAD_URL}/${base_name}.tar.gz" - fi - if [ -n "$package_sha256" ]; then - echo "Verifying package integrity" - echo "$package_sha256 ${base_name}.tar.gz" | sha256sum --check - - fi - tar --directory /opt/bitnami --extract --gunzip --file "${base_name}.tar.gz" --no-same-owner --strip-components=2 "${base_name}/files/" - rm "${base_name}.tar.gz" -} diff --git a/bitnami/kong/1/ol-7/prebuildfs/libfile.sh b/bitnami/kong/1/ol-7/prebuildfs/libfile.sh deleted file mode 100644 index 12010f043e49..000000000000 --- a/bitnami/kong/1/ol-7/prebuildfs/libfile.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash -# -# Library for managing files - -# Functions - -######################## -# Ensure a line exists in the file by replacing a matching line. -# Arguments: -# $1 - filename -# $2 - line -# $3 - match -# Returns: -# None -######################### -file_contains_line() { - local filename="${1:?filename is required}" - local line="${2:?line is required}" - local match="${3:?match is required}" - - sed --in-place "s/^$match\$/$line/" "$filename" -} diff --git a/bitnami/kong/1/ol-7/prebuildfs/libfs.sh b/bitnami/kong/1/ol-7/prebuildfs/libfs.sh deleted file mode 100644 index 10a24735c096..000000000000 --- a/bitnami/kong/1/ol-7/prebuildfs/libfs.sh +++ /dev/null @@ -1,129 +0,0 @@ -#!/bin/bash -# -# Library for file system actions - -# Load Generic Libraries -. /liblog.sh - -# Functions - -######################## -# Ensure a file/directory is owned (user and group) but the given user -# Arguments: -# $1 - filepath -# $2 - owner -# Returns: -# None -######################### -owned_by() { - local path="${1:?path is missing}" - local owner="${2:?owner is missing}" - - chown "$owner":"$owner" "$path" -} - -######################## -# Ensure a directory exists and, optionally, is owned by the given user -# Arguments: -# $1 - directory -# $2 - owner -# Returns: -# None -######################### -ensure_dir_exists() { - local dir="${1:?directory is missing}" - local owner="${2:-}" - - mkdir -p "${dir}" - if [[ -n $owner ]]; then - owned_by "$dir" "$owner" - fi -} - -######################## -# Checks whether a directory is empty or not -# Arguments: -# $1 - directory -# Returns: -# Boolean -######################### -is_dir_empty() { - local dir="${1:?missing directory}" - - if [[ ! -e "$dir" ]] || [[ -z "$(ls -A "$dir")" ]]; then - true - else - false - fi -} - -######################## -# Configure permisions and ownership recursively -# Globals: -# None -# Arguments: -# $1 - paths (as a string). -# Flags: -# -f|--file-mode - mode for directories. -# -d|--dir-mode - mode for files. -# -u|--user - user -# -g|--group - group -# Returns: -# None -######################### -configure_permissions_ownership() { - local -r paths="${1:?paths is missing}" - local dir_mode="" - local file_mode="" - local user="" - local group="" - - # Validate arguments - shift 1 - while [ "$#" -gt 0 ]; do - case "$1" in - -f|--file-mode) - shift - file_mode="${1:?missing mode for files}" - ;; - -d|--dir-mode) - shift - dir_mode="${1:?missing mode for directories}" - ;; - -u|--user) - shift - user="${1:?missing user}" - ;; - -g|--group) - shift - group="${1:?missing group}" - ;; - *) - echo "Invalid command line flag $1" >&2 - return 1 - ;; - esac - shift - done - - read -r -a filepaths <<< "$paths" - for p in "${filepaths[@]}"; do - if [[ -e "$p" ]]; then - if [[ -n $dir_mode ]]; then - find -L "$p" -type d -exec chmod "$dir_mode" {} \; - fi - if [[ -n $file_mode ]]; then - find -L "$p" -type f -exec chmod "$file_mode" {} \; - fi - if [[ -n $user ]] && [[ -n $group ]]; then - chown -LR "$user":"$group" "$p" - elif [[ -n $user ]] && [[ -z $group ]]; then - chown -LR "$user" "$p" - elif [[ -z $user ]] && [[ -n $group ]]; then - chgrp -LR "$group" "$p" - fi - else - stderr_print "$p does not exist" - fi - done -} diff --git a/bitnami/kong/1/ol-7/prebuildfs/liblog.sh b/bitnami/kong/1/ol-7/prebuildfs/liblog.sh deleted file mode 100644 index 04118273394a..000000000000 --- a/bitnami/kong/1/ol-7/prebuildfs/liblog.sh +++ /dev/null @@ -1,83 +0,0 @@ -#!/bin/bash -# -# Library for logging functions - -# Constants -RESET='\033[0m' -RED='\033[38;5;1m' -GREEN='\033[38;5;2m' -YELLOW='\033[38;5;3m' -MAGENTA='\033[38;5;5m' -CYAN='\033[38;5;6m' - -# Functions - -######################## -# Print to STDERR -# Arguments: -# Message to print -# Returns: -# None -######################### -stderr_print() { - printf "%b\\n" "${*}" >&2 -} - -######################## -# Log message -# Arguments: -# Message to log -# Returns: -# None -######################### -log() { - stderr_print "${CYAN}${MODULE:-} ${MAGENTA}$(date "+%T.%2N ")${RESET}${*}" -} -######################## -# Log an 'info' message -# Arguments: -# Message to log -# Returns: -# None -######################### -info() { - log "${GREEN}INFO ${RESET} ==> ${*}" -} -######################## -# Log message -# Arguments: -# Message to log -# Returns: -# None -######################### -warn() { - log "${YELLOW}WARN ${RESET} ==> ${*}" -} -######################## -# Log an 'error' message -# Arguments: -# Message to log -# Returns: -# None -######################### -error() { - log "${RED}ERROR${RESET} ==> ${*}" -} -######################## -# Log a 'debug' message -# Globals: -# BITNAMI_DEBUG -# Arguments: -# None -# Returns: -# None -######################### -debug() { - # 'is_boolean_yes' is defined in libvalidations.sh, but depends on this file so we cannot source it - local -r bool="${BITNAMI_DEBUG:-false}" - # comparison is performed without regard to the case of alphabetic characters - shopt -s nocasematch - if [[ "$bool" = 1 || "$bool" =~ ^(yes|true)$ ]]; then - log "${MAGENTA}DEBUG${RESET} ==> ${*}" - fi -} diff --git a/bitnami/kong/1/ol-7/prebuildfs/libnet.sh b/bitnami/kong/1/ol-7/prebuildfs/libnet.sh deleted file mode 100644 index f884b7661fd7..000000000000 --- a/bitnami/kong/1/ol-7/prebuildfs/libnet.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/bash -# -# Library for network functions - -# Functions - -######################## -# Resolve dns -# Arguments: -# $1 - Hostname to resolve -# Returns: -# IP -######################### -dns_lookup() { - local host="${1:?host is missing}" - getent ahosts "$host" | awk '/STREAM/ {print $1 }' -} - -######################## -# Get machine's IP -# Arguments: -# None -# Returns: -# Machine IP -######################### -get_machine_ip() { - dns_lookup "$(hostname)" -} - -######################## -# Check if the provided argument is a resolved hostname -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_hostname_resolved() { - local -r host="${1:?missing value}" - if [[ -n "$(dns_lookup "$host")" ]]; then - true - else - false - fi -} diff --git a/bitnami/kong/1/ol-7/prebuildfs/libos.sh b/bitnami/kong/1/ol-7/prebuildfs/libos.sh deleted file mode 100644 index 1a5ba3bb2a64..000000000000 --- a/bitnami/kong/1/ol-7/prebuildfs/libos.sh +++ /dev/null @@ -1,132 +0,0 @@ -#!/bin/bash -# -# Library for operating system actions - -# Functions - -######################## -# Check if an user exists in the system -# Arguments: -# $1 - user -# Returns: -# Boolean -######################### -user_exists() { - local user="${1:?user is missing}" - id "$user" >/dev/null 2>&1 -} - -######################## -# Check if a group exists in the system -# Arguments: -# $1 - group -# Returns: -# Boolean -######################### -group_exists() { - local group="${1:?group is missing}" - getent group "$group" >/dev/null 2>&1 -} - -######################## -# Create a group in the system if it does not exist already -# Arguments: -# $1 - group -# Returns: -# None -######################### -ensure_group_exists() { - local group="${1:?group is missing}" - - if ! group_exists "$group"; then - groupadd "$group" >/dev/null 2>&1 - fi -} - -######################## -# Create an user in the system if it does not exist already -# Arguments: -# $1 - user -# $2 - group -# Returns: -# None -######################### -ensure_user_exists() { - local user="${1:?user is missing}" - local group="${2:-}" - - if ! user_exists "$user"; then - useradd "$user" >/dev/null 2>&1 - if [[ -n "$group" ]]; then - ensure_group_exists "$group" - usermod -a -G "$group" "$user" >/dev/null 2>&1 - fi - fi -} - -######################## -# Check if the script is currently running as root -# Arguments: -# $1 - user -# $2 - group -# Returns: -# Boolean -######################### -am_i_root() { - if [[ "$(id -u)" = "0" ]]; then - true - else - false - fi -} - -######################## -# Get total memory available -# Arguments: -# None -# Returns: -# Memory in bytes -######################### -get_total_memory() { - echo $(($(grep MemTotal /proc/meminfo | awk '{print $2}') / 1024)) -} - -######################### -# Redirects output to /dev/null if debug mode is disabled -# Globals: -# BITNAMI_DEBUG -# Arguments: -# $@ - Command to execute -# Returns: -# None -######################### -debug_execute() { - if ${BITNAMI_DEBUG:-false}; then - "$@" - else - "$@" >/dev/null 2>&1 - fi -} - -######################## -# Retries a command a given number of times -# Arguments: -# $1 - cmd (as a string) -# $2 - max retries. Default: 12 -# $3 - sleep between retries (in seconds). Default: 5 -# Returns: -# Boolean -######################### -retry_while() { - local -r cmd="${1:?cmd is missing}" - local -r retries="${2:-12}" - local -r sleep_time="${3:-5}" - local return_value=1 - - read -r -a command <<< "$cmd" - for ((i = 1 ; i <= retries ; i+=1 )); do - "${command[@]}" && return_value=0 && break - sleep "$sleep_time" - done - return $return_value -} diff --git a/bitnami/kong/1/ol-7/prebuildfs/libservice.sh b/bitnami/kong/1/ol-7/prebuildfs/libservice.sh deleted file mode 100644 index 0a83cd3d927f..000000000000 --- a/bitnami/kong/1/ol-7/prebuildfs/libservice.sh +++ /dev/null @@ -1,57 +0,0 @@ -#!/bin/bash -# -# Library for managing services - -# Functions - -######################## -# Read the provided pid file and returns a PID -# Arguments: -# $1 - Pid file -# Returns: -# PID -######################### -get_pid_from_file() { - local pid_file="${1:?pid file is missing}" - - if [[ -f "$pid_file" ]]; then - if [[ -n "$(< "$pid_file")" ]] && [[ "$(< "$pid_file")" -gt 0 ]]; then - echo "$(< "$pid_file")" - fi - fi -} - -######################## -# Check if a provided PID corresponds to a running service -# Arguments: -# $1 - PID -# Returns: -# Boolean -######################### -is_service_running() { - local pid="${1:?pid is missing}" - - kill -0 "$pid" 2>/dev/null -} - -######################## -# Stop a service by sending a termination signal to its pid -# Arguments: -# $1 - Pid file -# Returns: -# None -######################### -stop_service_using_pid() { - local pid_file="${1:?pid file is missing}" - local pid - - pid="$(get_pid_from_file "$pid_file")" - [[ -z "$pid" ]] || ! is_service_running "$pid" && return - - kill "$pid" - local counter=10 - while [[ "$counter" -ne 0 ]] && is_service_running "$pid"; do - sleep 1 - counter=$((counter - 1)) - done -} diff --git a/bitnami/kong/1/ol-7/prebuildfs/libvalidations.sh b/bitnami/kong/1/ol-7/prebuildfs/libvalidations.sh deleted file mode 100644 index ef9aaf0cf31f..000000000000 --- a/bitnami/kong/1/ol-7/prebuildfs/libvalidations.sh +++ /dev/null @@ -1,246 +0,0 @@ -#!/bin/bash -# -# Validation functions library - -# Load Generic Libraries -. /liblog.sh - -# Functions - -######################## -# Check if the provided argument is an integer -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_int() { - local -r int="${1:?missing value}" - if [[ "$int" =~ ^-?[0-9]+ ]]; then - true - else - false - fi -} - -######################## -# Check if the provided argument is a positive integer -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_positive_int() { - local -r int="${1:?missing value}" - if is_int "$int" && (( "${int}" >= 0 )); then - true - else - false - fi -} - -######################## -# Check if the provided argument is a boolean or is the string 'yes/true' -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_boolean_yes() { - local -r bool="${1:-}" - # comparison is performed without regard to the case of alphabetic characters - shopt -s nocasematch - if [[ "$bool" = 1 || "$bool" =~ ^(yes|true)$ ]]; then - true - else - false - fi -} - -######################## -# Check if the provided argument is a boolean yes/no value -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_yes_no_value() { - local -r bool="${1:-}" - if [[ "$bool" =~ ^(yes|no)$ ]]; then - true - else - false - fi -} - -######################## -# Check if the provided argument is a boolean true/false value -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_true_false_value() { - local -r bool="${1:-}" - if [[ "$bool" =~ ^(true|false)$ ]]; then - true - else - false - fi -} - -######################## -# Check if the provided argument is an empty string or not defined -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_empty_value() { - local -r val="${1:-}" - if [[ -z "$val" ]]; then - true - else - false - fi -} - -######################## -# Validate if the provided argument is a valid port -# Arguments: -# $1 - Port to validate -# Returns: -# Boolean and error message -######################### -validate_port() { - local value - local unprivileged=0 - - # Parse flags - while [[ "$#" -gt 0 ]]; do - case "$1" in - -unprivileged) - unprivileged=1 - ;; - --) - shift - break - ;; - -*) - stderr_print "unrecognized flag $1" - return 1 - ;; - *) - break - ;; - esac - shift - done - - if [[ "$#" -gt 1 ]]; then - echo "too many arguments provided" - return 2 - elif [[ "$#" -eq 0 ]]; then - stderr_print "missing port argument" - return 1 - else - value=$1 - fi - - if [[ -z "$value" ]]; then - echo "the value is empty" - return 1 - else - if ! is_int "$value"; then - echo "value is not an integer" - return 2 - elif [[ "$value" -lt 0 ]]; then - echo "negative value provided" - return 2 - elif [[ "$value" -gt 65535 ]]; then - echo "requested port is greater than 65535" - return 2 - elif [[ "$unprivileged" = 1 && "$value" -lt 1024 ]]; then - echo "privileged port requested" - return 3 - fi - fi -} - -######################## -# Validate if the provided argument is a valid IPv4 address -# Arguments: -# $1 - IP to validate -# Returns: -# Boolean -######################### -validate_ipv4() { - local ip="${1:?ip is missing}" - local stat=1 - - if [[ $ip =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then - read -r -a ip_array <<< "$(tr '.' ' ' <<< "$ip")" - [[ ${ip_array[0]} -le 255 && ${ip_array[1]} -le 255 \ - && ${ip_array[2]} -le 255 && ${ip_array[3]} -le 255 ]] - stat=$? - fi - return $stat -} - -######################## -# Validate a string format -# Arguments: -# $1 - String to validate -# Returns: -# Boolean -######################### -validate_string() { - local string - local min_length=-1 - local max_length=-1 - - # Parse flags - while [ "$#" -gt 0 ]; do - case "$1" in - -min-length) - shift - min_length=${1:-} - ;; - -max-length) - shift - max_length=${1:-} - ;; - --) - shift - break - ;; - -*) - stderr_print "unrecognized flag $1" - return 1 - ;; - *) - break - ;; - esac - shift - done - - if [ "$#" -gt 1 ]; then - stderr_print "too many arguments provided" - return 2 - elif [ "$#" -eq 0 ]; then - stderr_print "missing string" - return 1 - else - string=$1 - fi - - if [[ "$min_length" -ge 0 ]] && [[ "${#string}" -lt "$min_length" ]]; then - echo "string length is less than $min_length" - return 1 - fi - if [[ "$max_length" -ge 0 ]] && [[ "${#string}" -gt "$max_length" ]]; then - echo "string length is great than $max_length" - return 1 - fi -} diff --git a/bitnami/kong/1/ol-7/prebuildfs/libversion.sh b/bitnami/kong/1/ol-7/prebuildfs/libversion.sh deleted file mode 100644 index b16090cfe1f4..000000000000 --- a/bitnami/kong/1/ol-7/prebuildfs/libversion.sh +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/bash -# -# Library for managing versions strings - -# Load Generic Libraries -. ./liblog.sh - -# Functions -######################## -# Gets semantic version -# Arguments: -# $1 - version: string to extract major.minor.patch -# $2 - section: 1 to extract major, 2 to extract minor, 3 to extract patch -# Returns: -# array with the major, minor and release -######################### -get_sematic_version () { - local version="${1:?version is required}" - local section="${2:?section is required}" - local -a version_sections - - #Regex to parse versions: x.y.z - local -r regex='([0-9]+)(\.([0-9]+)(\.([0-9]+))?)?' - - if [[ "$version" =~ $regex ]]; then - local i=1 - local j=1 - local n=${#BASH_REMATCH[*]} - - while [[ $i -lt $n ]]; do - if [[ -n "${BASH_REMATCH[$i]}" ]] && [[ "${BASH_REMATCH[$i]:0:1}" != '.' ]]; then - version_sections[$j]=${BASH_REMATCH[$i]} - ((j++)) - fi - ((i++)) - done - - local number_regex='^[0-9]+$' - if [[ "$section" =~ $number_regex ]] && (( $section > 0 )) && (( $section <= 3 )); then - echo "${version_sections[$section]}" - return - else - stderr_print "Section allowed values are: 1, 2, and 3" - return 1 - fi - fi -} diff --git a/bitnami/kong/1/ol-7/prebuildfs/opt/bitnami/.exists b/bitnami/kong/1/ol-7/prebuildfs/opt/bitnami/.exists deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/bitnami/kong/1/ol-7/prebuildfs/usr/local/bin/install_packages b/bitnami/kong/1/ol-7/prebuildfs/usr/local/bin/install_packages deleted file mode 100755 index 370f3516f403..000000000000 --- a/bitnami/kong/1/ol-7/prebuildfs/usr/local/bin/install_packages +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh -set -eu - -if [[ -n "oracle-epel-release-el7" ]]; then - if ! yum list installed oracle-epel-release-el7 >/dev/null 2>&1; then - yum -y install oracle-epel-release-el7 >/dev/null 2>&1 - CODE=$? - if (( $CODE != 0 )); then - echo "EPEL repository installation failed" - exit $CODE - fi - fi -fi - -max=2 -for ((n = 1 ; n <= max ; n+=1 )); do - set +e - yum --enablerepo base,updates,ol7_developer_EPEL,ol7_optional_latest install -y "$@" - CODE=$? - set -e - if (( $CODE == 0 )); then - break - fi - if (( $n == $max )); then - exit $CODE - fi - echo "yum failed, retrying" -done -rm -r /var/cache/yum diff --git a/bitnami/kong/1/ol-7/rootfs/entrypoint.sh b/bitnami/kong/1/ol-7/rootfs/entrypoint.sh deleted file mode 100755 index a6f9da9603c8..000000000000 --- a/bitnami/kong/1/ol-7/rootfs/entrypoint.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash - -# shellcheck disable=SC1091 - -set -o errexit -set -o nounset -set -o pipefail -#set -o xtrace # Uncomment this line for debugging purpose - -# Load libraries -. /libbitnami.sh -. /liblog.sh -. /libkong.sh - -eval "$(kong_env)" - -print_welcome_page - -if [[ "$*" = *"/run.sh"* ]]; then - info "** Starting Kong setup **" - /setup.sh - info "** Kong setup finished! **" -fi - -echo "" -exec "$@" diff --git a/bitnami/kong/1/ol-7/rootfs/libkong.sh b/bitnami/kong/1/ol-7/rootfs/libkong.sh deleted file mode 100644 index e93fad1818ba..000000000000 --- a/bitnami/kong/1/ol-7/rootfs/libkong.sh +++ /dev/null @@ -1,251 +0,0 @@ -#!/bin/bash -# -# Bitnami Kong library - -# shellcheck disable=SC1090 -# shellcheck disable=SC1091 - -# Load generic libraries -. /libfs.sh -. /liblog.sh -. /libnet.sh -. /libos.sh -. /libservice.sh -. /libvalidations.sh - -######################## -# Load global variables used for Kong configuration. -# Globals: -# KONG_* -# Arguments: -# None -# Returns: -# Series of exports to be used as 'eval' arguments -######################### -kong_env() { - # Avoid environment settings getting overridden twice - if [[ -n "${MODULE:-}" ]]; then - return - fi - - cat <<"EOF" -# Bitnami debug -export MODULE=kong -export BITNAMI_DEBUG="${BITNAMI_DEBUG:-false}" - -# Paths -export KONG_BASE_DIR="/opt/bitnami/kong" -export KONG_CONF_DIR="${KONG_BASE_DIR}/conf" -export KONG_SERVER_DIR="${KONG_BASE_DIR}/server" - -export KONG_CONF_FILE="${KONG_CONF_DIR}/kong.conf" -export KONG_DEFAULT_CONF_FILE="${KONG_CONF_DIR}/kong.conf.default" - -# Users -export KONG_DAEMON_USER="${KONG_DAEMON_USER:-kong}" -export KONG_DAEMON_GROUP="${KONG_DAEMON_GROUP:-kong}" - -# Cluster settings -export KONG_MIGRATE="${KONG_MIGRATE:-no}" - -# Port and service bind configurations for KONG_PROXY_LISTEN and KONG_ADMIN_LISTEN -# By setting these separately, we are consistent with other Bitnami solutions -# However it is still possible to directly set KONG_PROXY_LISTEN and KONG_ADMIN_LISTEN -export KONG_PROXY_LISTEN_ADDRESS="${KONG_PROXY_LISTEN_ADDRESS:-0.0.0.0}" -export KONG_PROXY_HTTP_PORT_NUMBER="${KONG_PROXY_HTTP_PORT_NUMBER:-8000}" -export KONG_PROXY_HTTPS_PORT_NUMBER="${KONG_PROXY_HTTPS_PORT_NUMBER:-8443}" -export KONG_ADMIN_LISTEN_ADDRESS="${KONG_ADMIN_LISTEN_ADDRESS:-127.0.0.1}" -export KONG_ADMIN_HTTP_PORT_NUMBER="${KONG_ADMIN_HTTP_PORT_NUMBER:-8001}" -export KONG_ADMIN_HTTPS_PORT_NUMBER="${KONG_ADMIN_HTTPS_PORT_NUMBER:-8444}" - -# Kong configuration -# These environment variables are used by Kong and allow overriding values in its configuration file -export KONG_NGINX_DAEMON="off" -EOF - - if am_i_root; then - cat <<"EOF" -export KONG_NGINX_USER="${KONG_DAEMON_USER} ${KONG_DAEMON_GROUP}" -EOF - fi - - if [[ -f "${KONG_CASSANDRA_PASSWORD_FILE:-}" ]]; then - cat <<"EOF" -export KONG_CASSANDRA_PASSWORD="$(< "${KONG_CASSANDRA_PASSWORD_FILE}")" -EOF - fi - - if [[ -f "${KONG_POSTGRESQL_PASSWORD_FILE:-}" ]]; then - cat <<"EOF" -export KONG_PG_PASSWORD="$(< "${KONG_POSTGRESQL_PASSWORD_FILE}")" -EOF - fi - - # Compound environment variables that form a single Kong configuration entry - if [[ -n "${KONG_PROXY_LISTEN:-}" ]]; then - cat <<"EOF" -export KONG_PROXY_LISTEN_OVERRIDE="yes" -EOF - else - cat <<"EOF" -export KONG_PROXY_LISTEN="${KONG_PROXY_LISTEN_ADDRESS}:${KONG_PROXY_HTTP_PORT_NUMBER}, ${KONG_PROXY_LISTEN_ADDRESS}:${KONG_PROXY_HTTPS_PORT_NUMBER} ssl" -export KONG_PROXY_LISTEN_OVERRIDE="no" -EOF - fi - if [[ -n "${KONG_ADMIN_LISTEN:-}" ]]; then - cat <<"EOF" -export KONG_ADMIN_LISTEN_OVERRIDE="yes" -EOF - else - cat <<"EOF" -export KONG_ADMIN_LISTEN="${KONG_ADMIN_LISTEN_ADDRESS}:${KONG_ADMIN_HTTP_PORT_NUMBER}, ${KONG_ADMIN_LISTEN_ADDRESS}:${KONG_ADMIN_HTTPS_PORT_NUMBER} ssl" -export KONG_ADMIN_LISTEN_OVERRIDE="no" -EOF - fi -} - -######################## -# Validate settings in KONG_* environment variables -# Globals: -# KONG_* -# Arguments: -# None -# Returns: -# None -######################### -kong_validate() { - info "Validating settings in KONG_* env vars" - local error_code=0 - - # Auxiliary functions - - print_validation_error() { - error "$1" - error_code="1" - } - - check_yes_no_value() { - if ! is_yes_no_value "${!1}"; then - print_validation_error "The allowed values for ${1} are [yes, no]" - fi - } - - check_password_file() { - if [[ -n "${!1:-}" ]] && ! [[ -f "${!1:-}" ]]; then - print_validation_error "The variable ${1} is defined but the file ${!1} is not accessible or does not exist" - fi - } - - check_resolved_hostname() { - if ! is_hostname_resolved "$1"; then - warn "Hostname ${1} could not be resolved, this could lead to connection issues" - fi - } - - check_allowed_port() { - local validate_port_args=() - ! am_i_root && validate_port_args+=("-unprivileged") - if ! err="$(validate_port "${validate_port_args[@]}" "${!1}")"; then - print_validation_error "An invalid port was specified in the environment variable ${1}: ${err}" - fi - } - - check_conflicting_ports() { - local -r total="$#" - for i in $(seq 1 "$((total - 1))"); do - for j in $(seq "$((i + 1))" "$total"); do - if (( "${!i}" == "${!j}" )); then - print_validation_error "${!i} and ${!j} are bound to the same port" - fi - done - done - } - - check_yes_no_value KONG_MIGRATE - - # Validate some of the supported environment variables used by Kong - - # Database setting validations - if [[ "${KONG_DATABASE:-postgres}" = "postgres" ]]; then - # PostgreSQL is the default database type - check_password_file KONG_POSTGRESQL_PASSWORD_FILE - [[ -n "${KONG_PG_HOST:-}" ]] && check_resolved_hostname "${KONG_PG_HOST:-}" - if [[ -n "${!KONG_CASSANDRA_@}" ]]; then - warn "KONG_DATABASE is empty or set to 'postgres', so the following environment variables will be ignored: ${!KONG_CASSANDRA_@}" - fi - elif [[ "${KONG_DATABASE:-}" = "cassandra" ]]; then - check_password_file KONG_CASSANDRA_PASSWORD_FILE - for cassandra_contact_point in $(echo "${CASSANDRA_CONTACT_POINTS:-}" | sed -r 's/[, ]+/\n/'); do - check_resolved_hostname "${cassandra_contact_point}" - done - if [[ -n "${!KONG_PG_@}" ]]; then - warn "KONG_DATABASE is set to 'cassandra', so the following environment variables will be ignored: ${!KONG_PG_@}" - fi - elif [[ "${KONG_DATABASE:-}" = "off" ]]; then - warn "KONG_DATABASE is set to 'off', Kong will run but data will not be persisted" - else - print_validation_error "Wrong value '${KONG_DATABASE}' passed to KONG_DATABASE. Valid values: 'off', 'cassandra', 'postgres'" - fi - - # Listen addresses and port validations - used_ports=() - if is_boolean_yes "$KONG_PROXY_LISTEN_OVERRIDE"; then - warn "KONG_PROXY_LISTEN was set, it will not be validated and the environment variables KONG_PROXY_LISTEN_ADDRESS, KONG_PROXY_HTTP_PORT_NUMBER and KONG_PROXY_HTTPS_PORT_NUMBER will be ignored" - else - used_ports+=(KONG_PROXY_HTTP_PORT_NUMBER KONG_PROXY_HTTPS_PORT_NUMBER) - if [[ "$KONG_PROXY_LISTEN_ADDRESS" != "0.0.0.0" && "$KONG_PROXY_LISTEN_ADDRESS" != "127.0.0.1" ]]; then - warn "Kong Proxy is set to listen at ${KONG_PROXY_LISTEN_ADDRESS} instead of 0.0.0.0 or 127.0.0.1, this could make Kong inaccessible" - fi - fi - if is_boolean_yes "$KONG_ADMIN_LISTEN_OVERRIDE"; then - warn "KONG_ADMIN_LISTEN was set, it will not be validated and the environment variables KONG_ADMIN_LISTEN_ADDRESS, KONG_ADMIN_HTTP_PORT_NUMBER and KONG_ADMIN_HTTPS_PORT_NUMBER will be ignored" - else - used_ports+=(KONG_ADMIN_HTTP_PORT_NUMBER KONG_ADMIN_HTTPS_PORT_NUMBER) - if [[ "$KONG_ADMIN_LISTEN_ADDRESS" != "127.0.0.1" ]]; then - warn "Kong Admin is set to listen at ${KONG_ADMIN_LISTEN_ADDRESS} instead of 127.0.0.1, opening it to the outside could make it insecure" - fi - fi - for port in "${used_ports[@]}"; do - check_allowed_port "${port}" - done - if [[ "${#used_ports[@]}" -ne 0 ]]; then - check_conflicting_ports "${used_ports[@]}" - fi - - # Quit if any failures occurred - [[ "$error_code" -eq 0 ]] || exit "$error_code" -} - -######################## -# Ensure Kong is initialized -# Globals: -# KONG_* -# Arguments: -# None -# Returns: -# None -######################### -kong_initialize() { - info "Initializing Kong" - - info "Waiting for database connection to succeed" - - while ! kong_migrations_list_output="$(kong migrations list 2>&1)"; do - if is_boolean_yes "$KONG_MIGRATE" && [[ "$kong_migrations_list_output" =~ "Database needs bootstrapping"* ]]; then - break - fi - debug "$kong_migrations_list_output" - debug "Database is still not ready, will retry" - sleep 1 - done - - if is_boolean_yes "$KONG_MIGRATE"; then - info "Migrating database" - kong migrations bootstrap - while ! kong migrations list; do - debug "Error during the initial bootstrap for the database, will retry" - kong migrations up - kong migrations finish - done - fi -} diff --git a/bitnami/kong/1/ol-7/rootfs/licenses/licenses.txt b/bitnami/kong/1/ol-7/rootfs/licenses/licenses.txt deleted file mode 100644 index c76ba31f3b8a..000000000000 --- a/bitnami/kong/1/ol-7/rootfs/licenses/licenses.txt +++ /dev/null @@ -1,3 +0,0 @@ -Bitnami containers ship with software bundles. You can find the licenses under: -/opt/bitnami/nami/COPYING -/opt/bitnami/[name-of-bundle]/licenses/[bundle-version].txt diff --git a/bitnami/kong/1/ol-7/rootfs/postunpack.sh b/bitnami/kong/1/ol-7/rootfs/postunpack.sh deleted file mode 100755 index f19e435173e2..000000000000 --- a/bitnami/kong/1/ol-7/rootfs/postunpack.sh +++ /dev/null @@ -1,70 +0,0 @@ -#!/bin/bash - -# shellcheck disable=SC1091 - -set -o errexit -set -o nounset -set -o pipefail -# set -o xtrace # Uncomment this line for debugging purpose - -. /libfs.sh -. /libos.sh -. /libkong.sh - -# Auxiliar functions - -######################## -# Set a configuration to Kong's configuration file -# Globals: -# KONG_CONF_FILE -# Arguments: -# $1 - key -# $2 - value -# Returns: -# None -######################### -kong_conf_set() { - local -r key="${1:?missing key}" - local -r value="${2:-}" - - # Check if the value was commented or set before - if grep -q "^#*${key}\s*=[^#]*" "$KONG_CONF_FILE"; then - debug "Updating entry for property '${key}' in configuration file" - # Update the existing key (leave trailing space for comments) - sed -ri "s|^(#*${key}\s*=)[^#]*|\1 ${value} |" "$KONG_CONF_FILE" - else - debug "Adding new entry for property '${key}' in configuration file" - # Add a new key - printf '%s = %s\n' "$key" "$value" >>"$KONG_CONF_FILE" - fi -} - -######################## -# Uncomment non-empty entries in Kong configuration -# Globals: -# KONG_CONF_FILE -# Arguments: -# None -# Returns: -# None -######################### -kong_configure_non_empty_values() { - # Uncomment all non-empty keys in the main Kong configuration file - sed -ri 's/^#+([a-z_ ]+)=(\s*[^# ]+)/\1=\2 /' "$KONG_CONF_FILE" -} - -# Load Kong environment variables -eval "$(kong_env)" - -# Ensure users and groups used by Kong exist -ensure_user_exists "$KONG_DAEMON_USER" "$KONG_DAEMON_GROUP" -# Ensure directories used by Kong exist and have proper permissions -ensure_dir_exists "$KONG_SERVER_DIR" -chmod -R g+rwX "$KONG_SERVER_DIR" "$KONG_CONF_DIR" -# Copy configuration file and set default values -cp "$KONG_DEFAULT_CONF_FILE" "$KONG_CONF_FILE" -kong_conf_set prefix "$KONG_SERVER_DIR" -kong_conf_set nginx_daemon off -kong_conf_set lua_package_path -kong_conf_set nginx_user -kong_configure_non_empty_values diff --git a/bitnami/kong/1/ol-7/rootfs/run.sh b/bitnami/kong/1/ol-7/rootfs/run.sh deleted file mode 100755 index e1a409e62410..000000000000 --- a/bitnami/kong/1/ol-7/rootfs/run.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -# shellcheck disable=SC1091 - -set -o errexit -set -o nounset -set -o pipefail -# set -o xtrace # Uncomment this line for debugging purpose - -# Load libraries -. /liblog.sh -. /libos.sh -. /libkong.sh - -# Load Kong environment variables -eval "$(kong_env)" - -info "** Starting Kong **" - -exec kong start diff --git a/bitnami/kong/1/ol-7/rootfs/setup.sh b/bitnami/kong/1/ol-7/rootfs/setup.sh deleted file mode 100755 index 97a3f821c294..000000000000 --- a/bitnami/kong/1/ol-7/rootfs/setup.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -# shellcheck disable=SC1091 - -set -o errexit -set -o nounset -set -o pipefail -# set -o xtrace # Uncomment this line for debugging purpose - -# Load libraries -. /libos.sh -. /libkong.sh - -# Load Kong environment variables -eval "$(kong_env)" - -# Ensure Kong environment variables are valid -kong_validate -# Ensure file ownership is correct -am_i_root && chown -R "$KONG_DAEMON_USER":"$KONG_DAEMON_GROUP" "$KONG_SERVER_DIR" "$KONG_CONF_DIR" -# Ensure Kong is initialized -kong_initialize From cf584c0e222e04a1a5e85188060575d59cad978d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 4 Feb 2020 22:22:48 +0000 Subject: [PATCH 262/950] 2.0.1-debian-10-r0 release --- bitnami/kong/2/debian-10/Dockerfile | 4 +- .../kong/2/debian-10/prebuildfs/libfile.sh | 52 ++++++++++++++++--- bitnami/kong/README.md | 2 +- 3 files changed, 48 insertions(+), 10 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 2ab96fb2842c..3c5218afd170 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps sudo unzip zlib1g -RUN . ./libcomponent.sh && component_unpack "kong" "2.0.0-0" --checksum 8c2ce230a991ffe822de8f451add6dfa6c4fbedd6d01f8bce94898ce1d821dc0 +RUN . ./libcomponent.sh && component_unpack "kong" "2.0.1-0" --checksum fed331425b8399f174b1c9325d5607bb2e9a5551cd5048095fb3cd7df8f0205a RUN apt-get update && apt-get upgrade && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN /build/install-gosu.sh @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.0-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/libfile.sh b/bitnami/kong/2/debian-10/prebuildfs/libfile.sh index 12010f043e49..337e2e779701 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/libfile.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/libfile.sh @@ -5,18 +5,56 @@ # Functions ######################## -# Ensure a line exists in the file by replacing a matching line. +# Replace a regex in a file # Arguments: # $1 - filename -# $2 - line -# $3 - match +# $2 - match regex +# $3 - substitute regex +# $4 - use POSIX regex. Default: true # Returns: # None ######################### -file_contains_line() { +replace_in_file() { local filename="${1:?filename is required}" - local line="${2:?line is required}" - local match="${3:?match is required}" + local match_regex="${2:?match regex is required}" + local substitute_regex="${3:?substitute regex is required}" + local posix_regex=${4:-true} - sed --in-place "s/^$match\$/$line/" "$filename" + local result + + # We should avoid using 'sed in-place' substitutions + # 1) They are not compatible with files mounted from ConfigMap(s) + # 2) We found incompatibility issues with Debian10 and "in-place" substitutions + if [[ $posix_regex = true ]]; then + result="$(sed -E "s@$match_regex@$substitute_regex@g" "$filename")" + else + result="$(sed "s@$match_regex@$substitute_regex@g" "$filename")" + fi + echo "$result" > "$filename" +} + +######################## +# Remove a line in a file based on a regex +# Arguments: +# $1 - filename +# $2 - match regex +# $3 - use POSIX regex. Default: true +# Returns: +# None +######################### +remove_in_file() { + local filename="${1:?filename is required}" + local match_regex="${2:?match regex is required}" + local posix_regex=${3:-true} + local result + + # We should avoid using 'sed in-place' substitutions + # 1) They are not compatible with files mounted from ConfigMap(s) + # 2) We found incompatibility issues with Debian10 and "in-place" substitutions + if [[ $posix_regex = true ]]; then + result="$(sed -E "/$match_regex/d" "$filename")" + else + result="$(sed "/$match_regex/d" "$filename")" + fi + echo "$result" > "$filename" } diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 03a795976ef2..b89c17fd6595 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,8 +51,8 @@ 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/containers/how-to/understand-rolling-tags-containers/). +* [`2-debian-10`, `2.0.1-debian-10-r0`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r0/2/debian-10/Dockerfile) * [`2-ol-7`, `2.0.0-ol-7-r0` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.0-ol-7-r0/2/ol-7/Dockerfile) -* [`2-debian-10`, `2.0.0-debian-10-r0`, `2`, `2.0.0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.0-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 708be203f34fd83d732480392dc45500409f82a6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 4 Feb 2020 22:29:05 +0000 Subject: [PATCH 263/950] 2.0.1-ol-7-r0 release --- bitnami/kong/2/ol-7/Dockerfile | 4 +- bitnami/kong/2/ol-7/prebuildfs/libfile.sh | 52 ++++++++++++++++++++--- bitnami/kong/README.md | 2 +- 3 files changed, 48 insertions(+), 10 deletions(-) diff --git a/bitnami/kong/2/ol-7/Dockerfile b/bitnami/kong/2/ol-7/Dockerfile index 72c5c80235e1..ec236193fa86 100644 --- a/bitnami/kong/2/ol-7/Dockerfile +++ b/bitnami/kong/2/ol-7/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl glibc gzip hostname keyutils-libs krb5-libs libaio-devel libcom_err libgcc libselinux libyaml nss-softokn-freebl openssl-libs pcre perl procps-ng sudo tar which zlib -RUN . ./libcomponent.sh && component_unpack "kong" "2.0.0-0" --checksum 1a3ed93155b3fa4175804d2aa39461a762fc0f4a13957b5e198c9329f42c94e8 +RUN . ./libcomponent.sh && component_unpack "kong" "2.0.1-0" --checksum b59753cf12bacf6dbd936e8a3c1f16f2872f5b075b6613856145e3dd8d3ddd08 RUN yum upgrade -y && \ rm -r /var/cache/yum RUN /build/install-gosu.sh @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.0-ol-7-r0" \ + BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/ol-7/prebuildfs/libfile.sh b/bitnami/kong/2/ol-7/prebuildfs/libfile.sh index 12010f043e49..337e2e779701 100644 --- a/bitnami/kong/2/ol-7/prebuildfs/libfile.sh +++ b/bitnami/kong/2/ol-7/prebuildfs/libfile.sh @@ -5,18 +5,56 @@ # Functions ######################## -# Ensure a line exists in the file by replacing a matching line. +# Replace a regex in a file # Arguments: # $1 - filename -# $2 - line -# $3 - match +# $2 - match regex +# $3 - substitute regex +# $4 - use POSIX regex. Default: true # Returns: # None ######################### -file_contains_line() { +replace_in_file() { local filename="${1:?filename is required}" - local line="${2:?line is required}" - local match="${3:?match is required}" + local match_regex="${2:?match regex is required}" + local substitute_regex="${3:?substitute regex is required}" + local posix_regex=${4:-true} - sed --in-place "s/^$match\$/$line/" "$filename" + local result + + # We should avoid using 'sed in-place' substitutions + # 1) They are not compatible with files mounted from ConfigMap(s) + # 2) We found incompatibility issues with Debian10 and "in-place" substitutions + if [[ $posix_regex = true ]]; then + result="$(sed -E "s@$match_regex@$substitute_regex@g" "$filename")" + else + result="$(sed "s@$match_regex@$substitute_regex@g" "$filename")" + fi + echo "$result" > "$filename" +} + +######################## +# Remove a line in a file based on a regex +# Arguments: +# $1 - filename +# $2 - match regex +# $3 - use POSIX regex. Default: true +# Returns: +# None +######################### +remove_in_file() { + local filename="${1:?filename is required}" + local match_regex="${2:?match regex is required}" + local posix_regex=${3:-true} + local result + + # We should avoid using 'sed in-place' substitutions + # 1) They are not compatible with files mounted from ConfigMap(s) + # 2) We found incompatibility issues with Debian10 and "in-place" substitutions + if [[ $posix_regex = true ]]; then + result="$(sed -E "/$match_regex/d" "$filename")" + else + result="$(sed "/$match_regex/d" "$filename")" + fi + echo "$result" > "$filename" } diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b89c17fd6595..c7877465075d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,8 +51,8 @@ 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/containers/how-to/understand-rolling-tags-containers/). +* [`2-ol-7`, `2.0.1-ol-7-r0` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r0/2/ol-7/Dockerfile) * [`2-debian-10`, `2.0.1-debian-10-r0`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r0/2/debian-10/Dockerfile) -* [`2-ol-7`, `2.0.0-ol-7-r0` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.0-ol-7-r0/2/ol-7/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 89c4313e4847046006d990b309615f1227531141 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 6 Feb 2020 04:33:50 +0000 Subject: [PATCH 264/950] 2.0.1-debian-10-r1 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 3c5218afd170..9d01f797a5e7 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c7877465075d..d1c9e05b7662 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2-ol-7`, `2.0.1-ol-7-r0` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r0/2/ol-7/Dockerfile) -* [`2-debian-10`, `2.0.1-debian-10-r0`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r0/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.1-debian-10-r1`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r1/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f1d5529949a777cec759deee5d5d922d87d81cfc Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 6 Feb 2020 04:40:17 +0000 Subject: [PATCH 265/950] 2.0.1-ol-7-r1 release --- bitnami/kong/2/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/ol-7/Dockerfile b/bitnami/kong/2/ol-7/Dockerfile index ec236193fa86..e58c723ff537 100644 --- a/bitnami/kong/2/ol-7/Dockerfile +++ b/bitnami/kong/2/ol-7/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r0" \ + BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d1c9e05b7662..a45867eb08f9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-ol-7`, `2.0.1-ol-7-r0` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r0/2/ol-7/Dockerfile) +* [`2-ol-7`, `2.0.1-ol-7-r1` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r1/2/ol-7/Dockerfile) * [`2-debian-10`, `2.0.1-debian-10-r1`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r1/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c266ce22069cde37836aa8ebd6a5fe1e72b66f8e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 7 Feb 2020 10:42:17 +0000 Subject: [PATCH 266/950] 2.0.1-debian-10-r2 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 9d01f797a5e7..955c49807bc7 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a45867eb08f9..714d80338ca0 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2-ol-7`, `2.0.1-ol-7-r1` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r1/2/ol-7/Dockerfile) -* [`2-debian-10`, `2.0.1-debian-10-r1`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r1/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.1-debian-10-r2`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r2/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 1680deea9ae73f5eaec2fd6f490526fcbaa3d8d6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 7 Feb 2020 10:48:22 +0000 Subject: [PATCH 267/950] 2.0.1-ol-7-r2 release --- bitnami/kong/2/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/ol-7/Dockerfile b/bitnami/kong/2/ol-7/Dockerfile index e58c723ff537..146be71e34c4 100644 --- a/bitnami/kong/2/ol-7/Dockerfile +++ b/bitnami/kong/2/ol-7/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r1" \ + BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 714d80338ca0..ce339afe9b0a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-ol-7`, `2.0.1-ol-7-r1` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r1/2/ol-7/Dockerfile) +* [`2-ol-7`, `2.0.1-ol-7-r2` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r2/2/ol-7/Dockerfile) * [`2-debian-10`, `2.0.1-debian-10-r2`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r2/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d3acae2c053605c802233b8668642d031224a914 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 10 Feb 2020 01:03:05 +0000 Subject: [PATCH 268/950] 2.0.1-debian-10-r3 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 955c49807bc7..0fc2390c89bf 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index ce339afe9b0a..14dd49fab5cc 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2-ol-7`, `2.0.1-ol-7-r2` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r2/2/ol-7/Dockerfile) -* [`2-debian-10`, `2.0.1-debian-10-r2`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r2/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.1-debian-10-r3`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r3/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From da22c31f22a40f4f3f7d27894c6c9d6833860fa6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 10 Feb 2020 01:26:50 +0000 Subject: [PATCH 269/950] 2.0.1-ol-7-r3 release --- bitnami/kong/2/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/ol-7/Dockerfile b/bitnami/kong/2/ol-7/Dockerfile index 146be71e34c4..040376666d3b 100644 --- a/bitnami/kong/2/ol-7/Dockerfile +++ b/bitnami/kong/2/ol-7/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r2" \ + BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 14dd49fab5cc..cb50907f8c6f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-ol-7`, `2.0.1-ol-7-r2` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r2/2/ol-7/Dockerfile) +* [`2-ol-7`, `2.0.1-ol-7-r3` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r3/2/ol-7/Dockerfile) * [`2-debian-10`, `2.0.1-debian-10-r3`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r3/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9b474308d5c035972cec9dbbb84143b12e5964c8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 11 Feb 2020 07:12:56 +0000 Subject: [PATCH 270/950] 2.0.1-debian-10-r4 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0fc2390c89bf..5736071be717 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index cb50907f8c6f..c85b97f81707 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2-ol-7`, `2.0.1-ol-7-r3` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r3/2/ol-7/Dockerfile) -* [`2-debian-10`, `2.0.1-debian-10-r3`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r3/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.1-debian-10-r4`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r4/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From a03dfe9f1380c8c501080340cf22474f291fe07a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 11 Feb 2020 07:40:21 +0000 Subject: [PATCH 271/950] 2.0.1-ol-7-r4 release --- bitnami/kong/2/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/ol-7/Dockerfile b/bitnami/kong/2/ol-7/Dockerfile index 040376666d3b..1d72cabb28cb 100644 --- a/bitnami/kong/2/ol-7/Dockerfile +++ b/bitnami/kong/2/ol-7/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r3" \ + BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c85b97f81707..bca207052a5b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-ol-7`, `2.0.1-ol-7-r3` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r3/2/ol-7/Dockerfile) +* [`2-ol-7`, `2.0.1-ol-7-r4` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r4/2/ol-7/Dockerfile) * [`2-debian-10`, `2.0.1-debian-10-r4`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r4/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8461135ec3465c6c8d598759600dc924475346c3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 12 Feb 2020 13:20:39 +0000 Subject: [PATCH 272/950] 2.0.1-debian-10-r5 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 5736071be717..e0532625def2 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index bca207052a5b..053a408ea24e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2-ol-7`, `2.0.1-ol-7-r4` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r4/2/ol-7/Dockerfile) -* [`2-debian-10`, `2.0.1-debian-10-r4`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r4/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.1-debian-10-r5`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r5/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 3aeb28e69bd691fc1b3eb2b616423fed72e7a50c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 12 Feb 2020 13:55:47 +0000 Subject: [PATCH 273/950] 2.0.1-ol-7-r5 release --- bitnami/kong/2/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/ol-7/Dockerfile b/bitnami/kong/2/ol-7/Dockerfile index 1d72cabb28cb..c6caca3cf825 100644 --- a/bitnami/kong/2/ol-7/Dockerfile +++ b/bitnami/kong/2/ol-7/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r4" \ + BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 053a408ea24e..75960dc9463b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-ol-7`, `2.0.1-ol-7-r4` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r4/2/ol-7/Dockerfile) +* [`2-ol-7`, `2.0.1-ol-7-r5` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r5/2/ol-7/Dockerfile) * [`2-debian-10`, `2.0.1-debian-10-r5`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r5/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From cd69986d097b03061ff5fe47be68eb90b10acdd0 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 13 Feb 2020 13:28:26 +0000 Subject: [PATCH 274/950] 2.0.1-debian-10-r6 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index e0532625def2..fd24c5ae6273 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 75960dc9463b..b09612be7cdc 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2-ol-7`, `2.0.1-ol-7-r5` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r5/2/ol-7/Dockerfile) -* [`2-debian-10`, `2.0.1-debian-10-r5`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r5/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.1-debian-10-r6`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r6/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5279d1acf562e00988124f010331daf400b097a7 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 13 Feb 2020 14:44:38 +0000 Subject: [PATCH 275/950] 2.0.1-ol-7-r6 release --- bitnami/kong/2/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/ol-7/Dockerfile b/bitnami/kong/2/ol-7/Dockerfile index c6caca3cf825..45699da2ab68 100644 --- a/bitnami/kong/2/ol-7/Dockerfile +++ b/bitnami/kong/2/ol-7/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r5" \ + BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b09612be7cdc..4de779e2d9c9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-ol-7`, `2.0.1-ol-7-r5` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r5/2/ol-7/Dockerfile) +* [`2-ol-7`, `2.0.1-ol-7-r6` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r6/2/ol-7/Dockerfile) * [`2-debian-10`, `2.0.1-debian-10-r6`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r6/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 22046c7ef61a010fed334a2e894492c1edb638ca Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 14 Feb 2020 13:40:30 +0000 Subject: [PATCH 276/950] 2.0.1-debian-10-r7 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index fd24c5ae6273..0959b3422297 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4de779e2d9c9..c49217f19296 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2-ol-7`, `2.0.1-ol-7-r6` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r6/2/ol-7/Dockerfile) -* [`2-debian-10`, `2.0.1-debian-10-r6`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r6/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.1-debian-10-r7`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r7/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 2731fde6e91a5ad53053a7e98c88d5fbfa6b002d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 14 Feb 2020 14:53:31 +0000 Subject: [PATCH 277/950] 2.0.1-ol-7-r7 release --- bitnami/kong/2/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/ol-7/Dockerfile b/bitnami/kong/2/ol-7/Dockerfile index 45699da2ab68..cd403bd840a9 100644 --- a/bitnami/kong/2/ol-7/Dockerfile +++ b/bitnami/kong/2/ol-7/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r6" \ + BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c49217f19296..07319587a395 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-ol-7`, `2.0.1-ol-7-r6` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r6/2/ol-7/Dockerfile) +* [`2-ol-7`, `2.0.1-ol-7-r7` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r7/2/ol-7/Dockerfile) * [`2-debian-10`, `2.0.1-debian-10-r7`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r7/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 1ad12ecc390ab21c26e91ccfa9467e0420f7d216 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 15 Feb 2020 13:53:11 +0000 Subject: [PATCH 278/950] 2.0.1-debian-10-r8 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0959b3422297..fc1faaf41dea 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 07319587a395..5b7395df56fb 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2-ol-7`, `2.0.1-ol-7-r7` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r7/2/ol-7/Dockerfile) -* [`2-debian-10`, `2.0.1-debian-10-r7`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r7/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.1-debian-10-r8`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r8/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 466fcde5e6a2a893b86eeb12f5df92cd604f2dc7 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 15 Feb 2020 15:04:09 +0000 Subject: [PATCH 279/950] 2.0.1-ol-7-r8 release --- bitnami/kong/2/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/ol-7/Dockerfile b/bitnami/kong/2/ol-7/Dockerfile index cd403bd840a9..2e5b577e2178 100644 --- a/bitnami/kong/2/ol-7/Dockerfile +++ b/bitnami/kong/2/ol-7/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r7" \ + BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 5b7395df56fb..52855201489f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-ol-7`, `2.0.1-ol-7-r7` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r7/2/ol-7/Dockerfile) +* [`2-ol-7`, `2.0.1-ol-7-r8` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r8/2/ol-7/Dockerfile) * [`2-debian-10`, `2.0.1-debian-10-r8`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r8/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From bdf768e8fa9c3bbadf61a5cfaa474f6f54c39203 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 16 Feb 2020 14:00:51 +0000 Subject: [PATCH 280/950] 2.0.1-debian-10-r9 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index fc1faaf41dea..32351ff0cb4a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 52855201489f..4b5bb5a6584b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2-ol-7`, `2.0.1-ol-7-r8` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r8/2/ol-7/Dockerfile) -* [`2-debian-10`, `2.0.1-debian-10-r8`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r8/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.1-debian-10-r9`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r9/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 45e7dc242422fc62d8b04975ec50f9d1817044a8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 16 Feb 2020 15:15:32 +0000 Subject: [PATCH 281/950] 2.0.1-ol-7-r9 release --- bitnami/kong/2/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/ol-7/Dockerfile b/bitnami/kong/2/ol-7/Dockerfile index 2e5b577e2178..58f142fe240c 100644 --- a/bitnami/kong/2/ol-7/Dockerfile +++ b/bitnami/kong/2/ol-7/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r8" \ + BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4b5bb5a6584b..ba011b09192c 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-ol-7`, `2.0.1-ol-7-r8` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r8/2/ol-7/Dockerfile) +* [`2-ol-7`, `2.0.1-ol-7-r9` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r9/2/ol-7/Dockerfile) * [`2-debian-10`, `2.0.1-debian-10-r9`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r9/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e251443bf99743216aefc34408cd0215b1d0ca97 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 17 Feb 2020 14:07:07 +0000 Subject: [PATCH 282/950] 2.0.1-debian-10-r10 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 32351ff0cb4a..d8da27d7a59b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r10" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index ba011b09192c..7d84598c548a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2-ol-7`, `2.0.1-ol-7-r9` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r9/2/ol-7/Dockerfile) -* [`2-debian-10`, `2.0.1-debian-10-r9`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r9/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.1-debian-10-r10`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r10/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 45fc96fccf0d02b78501a83e9c12d1a560eab5ef Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 17 Feb 2020 15:24:16 +0000 Subject: [PATCH 283/950] 2.0.1-ol-7-r10 release --- bitnami/kong/2/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/ol-7/Dockerfile b/bitnami/kong/2/ol-7/Dockerfile index 58f142fe240c..827dc1856a84 100644 --- a/bitnami/kong/2/ol-7/Dockerfile +++ b/bitnami/kong/2/ol-7/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r9" \ + BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r10" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7d84598c548a..98d29f4a178d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-ol-7`, `2.0.1-ol-7-r9` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r9/2/ol-7/Dockerfile) +* [`2-ol-7`, `2.0.1-ol-7-r10` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r10/2/ol-7/Dockerfile) * [`2-debian-10`, `2.0.1-debian-10-r10`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r10/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 36e3b40099ee54828c7335a111f70481cefbf148 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 18 Feb 2020 15:50:09 +0000 Subject: [PATCH 284/950] 2.0.1-ol-7-r11 release --- bitnami/kong/2/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/ol-7/Dockerfile b/bitnami/kong/2/ol-7/Dockerfile index 827dc1856a84..910861ea0a72 100644 --- a/bitnami/kong/2/ol-7/Dockerfile +++ b/bitnami/kong/2/ol-7/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r10" \ + BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r11" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 98d29f4a178d..8115c7ff6a26 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-ol-7`, `2.0.1-ol-7-r10` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r10/2/ol-7/Dockerfile) +* [`2-ol-7`, `2.0.1-ol-7-r11` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r11/2/ol-7/Dockerfile) * [`2-debian-10`, `2.0.1-debian-10-r10`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r10/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b8aad9e164302df3a4198303d31fb5e385f651ac Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 18 Feb 2020 17:46:23 +0000 Subject: [PATCH 285/950] 2.0.1-debian-10-r11 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index d8da27d7a59b..d4fd26720578 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -10,14 +10,14 @@ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps sudo unzip zlib1g RUN . ./libcomponent.sh && component_unpack "kong" "2.0.1-0" --checksum fed331425b8399f174b1c9325d5607bb2e9a5551cd5048095fb3cd7df8f0205a -RUN apt-get update && apt-get upgrade && \ +RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r10" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r11" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 8115c7ff6a26..046dece36d79 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2-ol-7`, `2.0.1-ol-7-r11` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r11/2/ol-7/Dockerfile) -* [`2-debian-10`, `2.0.1-debian-10-r10`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r10/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.1-debian-10-r11`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r11/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c78552070d9e552c97be050a494ebe2ac06f5491 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 19 Feb 2020 16:57:06 +0000 Subject: [PATCH 286/950] 2.0.1-ol-7-r12 release --- bitnami/kong/2/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/ol-7/Dockerfile b/bitnami/kong/2/ol-7/Dockerfile index 910861ea0a72..b4b8552c01f4 100644 --- a/bitnami/kong/2/ol-7/Dockerfile +++ b/bitnami/kong/2/ol-7/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r11" \ + BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r12" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 046dece36d79..c184c6a0a05c 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-ol-7`, `2.0.1-ol-7-r11` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r11/2/ol-7/Dockerfile) +* [`2-ol-7`, `2.0.1-ol-7-r12` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r12/2/ol-7/Dockerfile) * [`2-debian-10`, `2.0.1-debian-10-r11`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r11/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 266b91e7368ed9102196450076a373f0df884108 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 19 Feb 2020 19:01:33 +0000 Subject: [PATCH 287/950] 2.0.1-debian-10-r12 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index d4fd26720578..51b9ae0c7772 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r11" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r12" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c184c6a0a05c..8355210bc94b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2-ol-7`, `2.0.1-ol-7-r12` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r12/2/ol-7/Dockerfile) -* [`2-debian-10`, `2.0.1-debian-10-r11`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r11/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.1-debian-10-r12`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r12/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9593924064d57372bf88d213c737544344c9c357 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 20 Feb 2020 17:12:15 +0000 Subject: [PATCH 288/950] 2.0.1-ol-7-r13 release --- bitnami/kong/2/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/ol-7/Dockerfile b/bitnami/kong/2/ol-7/Dockerfile index b4b8552c01f4..f05ccbdc5806 100644 --- a/bitnami/kong/2/ol-7/Dockerfile +++ b/bitnami/kong/2/ol-7/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r12" \ + BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r13" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 8355210bc94b..0dbe1497b865 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-ol-7`, `2.0.1-ol-7-r12` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r12/2/ol-7/Dockerfile) +* [`2-ol-7`, `2.0.1-ol-7-r13` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r13/2/ol-7/Dockerfile) * [`2-debian-10`, `2.0.1-debian-10-r12`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r12/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 55bf2cb6d89757de119f64e7121d4b2848c72909 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 20 Feb 2020 19:14:20 +0000 Subject: [PATCH 289/950] 2.0.1-debian-10-r13 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 51b9ae0c7772..2c2f5443f0fd 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r12" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r13" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0dbe1497b865..6d64e28a7c86 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2-ol-7`, `2.0.1-ol-7-r13` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r13/2/ol-7/Dockerfile) -* [`2-debian-10`, `2.0.1-debian-10-r12`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r12/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.1-debian-10-r13`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r13/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From fbdfa7d79e5cb77916073ad2e9eb0ec1eda5bea6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 21 Feb 2020 17:25:22 +0000 Subject: [PATCH 290/950] 2.0.1-ol-7-r14 release --- bitnami/kong/2/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/ol-7/Dockerfile b/bitnami/kong/2/ol-7/Dockerfile index f05ccbdc5806..9671462f1b4a 100644 --- a/bitnami/kong/2/ol-7/Dockerfile +++ b/bitnami/kong/2/ol-7/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r13" \ + BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r14" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 6d64e28a7c86..ca6ce288494e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-ol-7`, `2.0.1-ol-7-r13` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r13/2/ol-7/Dockerfile) +* [`2-ol-7`, `2.0.1-ol-7-r14` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r14/2/ol-7/Dockerfile) * [`2-debian-10`, `2.0.1-debian-10-r13`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r13/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8290d876ffdd5ea18d58d1100e119877ad99ebcc Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 21 Feb 2020 19:25:38 +0000 Subject: [PATCH 291/950] 2.0.1-debian-10-r14 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 2c2f5443f0fd..cec605168078 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r13" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r14" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index ca6ce288494e..5bae451053d9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2-ol-7`, `2.0.1-ol-7-r14` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r14/2/ol-7/Dockerfile) -* [`2-debian-10`, `2.0.1-debian-10-r13`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r13/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.1-debian-10-r14`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r14/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From a8ee1d84d98153c2ef6c660c84b3ffea15395950 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 22 Feb 2020 17:31:42 +0000 Subject: [PATCH 292/950] 2.0.1-ol-7-r15 release --- bitnami/kong/2/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/ol-7/Dockerfile b/bitnami/kong/2/ol-7/Dockerfile index 9671462f1b4a..8a257eec7a2e 100644 --- a/bitnami/kong/2/ol-7/Dockerfile +++ b/bitnami/kong/2/ol-7/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r14" \ + BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r15" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 5bae451053d9..60852b657466 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-ol-7`, `2.0.1-ol-7-r14` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r14/2/ol-7/Dockerfile) +* [`2-ol-7`, `2.0.1-ol-7-r15` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r15/2/ol-7/Dockerfile) * [`2-debian-10`, `2.0.1-debian-10-r14`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r14/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 333e5102a305575db24b7c7cd0edee722ce4f5e9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 22 Feb 2020 19:38:40 +0000 Subject: [PATCH 293/950] 2.0.1-debian-10-r15 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index cec605168078..b8df0b04c284 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r14" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r15" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 60852b657466..868cf63c8ba3 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2-ol-7`, `2.0.1-ol-7-r15` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r15/2/ol-7/Dockerfile) -* [`2-debian-10`, `2.0.1-debian-10-r14`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r14/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.1-debian-10-r15`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r15/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5369be0bad52bd2327c2659d68d2e81aa4c93d49 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 23 Feb 2020 17:42:03 +0000 Subject: [PATCH 294/950] 2.0.1-ol-7-r16 release --- bitnami/kong/2/ol-7/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/ol-7/Dockerfile b/bitnami/kong/2/ol-7/Dockerfile index 8a257eec7a2e..f857df3c8bc3 100644 --- a/bitnami/kong/2/ol-7/Dockerfile +++ b/bitnami/kong/2/ol-7/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r15" \ + BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r16" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 868cf63c8ba3..cc0867579a4f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-ol-7`, `2.0.1-ol-7-r15` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r15/2/ol-7/Dockerfile) +* [`2-ol-7`, `2.0.1-ol-7-r16` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r16/2/ol-7/Dockerfile) * [`2-debian-10`, `2.0.1-debian-10-r15`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r15/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7a0de257cf5c1d1812c912862bad33f337fca7d4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 23 Feb 2020 19:46:31 +0000 Subject: [PATCH 295/950] 2.0.1-debian-10-r16 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index b8df0b04c284..f71ee6a42c82 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r15" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r16" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index cc0867579a4f..4ebb7484d8a2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2-ol-7`, `2.0.1-ol-7-r16` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r16/2/ol-7/Dockerfile) -* [`2-debian-10`, `2.0.1-debian-10-r15`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r15/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.1-debian-10-r16`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r16/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From dc9c473f1141aa3cda5a758743c271e615c3c9cc Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 24 Feb 2020 19:54:01 +0000 Subject: [PATCH 296/950] 2.0.1-debian-10-r17 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index f71ee6a42c82..7e41dfbedd1a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r16" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r17" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4ebb7484d8a2..62d5fc2142dd 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,8 +51,8 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-ol-7`, `2.0.1-ol-7-r16` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r16/2/ol-7/Dockerfile) -* [`2-debian-10`, `2.0.1-debian-10-r16`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r16/2/debian-10/Dockerfile) +* [`2-ol-7`, `2.0.1-ol-7-r17` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r17/2/ol-7/Dockerfile) +* [`2-debian-10`, `2.0.1-debian-10-r17`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r17/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 70a99b84b41d812778fc07bb65bf0b838529163e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 25 Feb 2020 19:59:23 +0000 Subject: [PATCH 297/950] 2.0.1-debian-10-r18 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/2/debian-10/prebuildfs/libnet.sh | 59 +++++++++++++++++++ bitnami/kong/README.md | 2 +- 3 files changed, 61 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 7e41dfbedd1a..1f104a272069 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r17" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r18" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/libnet.sh b/bitnami/kong/2/debian-10/prebuildfs/libnet.sh index f884b7661fd7..c416148c5340 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/libnet.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/libnet.sh @@ -2,6 +2,9 @@ # # Library for network functions +# Load Generic Libraries +. /liblog.sh + # Functions ######################## @@ -42,3 +45,59 @@ is_hostname_resolved() { false fi } + +######################## +# Parse URL +# Globals: +# None +# Arguments: +# $1 - uri - String +# $2 - component to obtain. Valid options (scheme, authority, userinfo, host, port, path, query or fragment) - String +# Returns: +# String +parse_uri() { + local uri="${1:?uri is missing}" + local component="${2:?component is missing}" + + # Solution based on https://tools.ietf.org/html/rfc3986#appendix-B with + # additional sub-expressions to split authority into userinfo, host and port + # Credits to Patryk Obara (see https://stackoverflow.com/a/45977232/6694969) + local -r URI_REGEX='^(([^:/?#]+):)?(//((([^:/?#]+)@)?([^:/?#]+)(:([0-9]+))?))?(/([^?#]*))(\?([^#]*))?(#(.*))?' + # || | ||| | | | | | | | | | + # |2 scheme | ||6 userinfo 7 host | 9 port | 11 rpath | 13 query | 15 fragment + # 1 scheme: | |5 userinfo@ 8 :... 10 path 12 ?... 14 #... + # | 4 authority + # 3 //... + local index=0 + case "$component" in + scheme) + index=2 + ;; + authority) + index=4 + ;; + userinfo) + index=6 + ;; + host) + index=7 + ;; + port) + index=9 + ;; + path) + index=10 + ;; + query) + index=13 + ;; + fragment) + index=14 + ;; + *) + stderr_print "unrecognized component $1" + return 1 + ;; + esac + [[ "$uri" =~ $URI_REGEX ]] && echo "${BASH_REMATCH[${index}]}" +} diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 62d5fc2142dd..29f58c5ad9c0 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -52,7 +52,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`2-ol-7`, `2.0.1-ol-7-r17` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r17/2/ol-7/Dockerfile) -* [`2-debian-10`, `2.0.1-debian-10-r17`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r17/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.1-debian-10-r18`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r18/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e4af7a0a1536410560df100f9d79e4ae04a928ec Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 26 Feb 2020 20:09:09 +0000 Subject: [PATCH 298/950] 2.0.1-debian-10-r19 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 1f104a272069..16a1544fad73 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r18" \ + BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r19" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 29f58c5ad9c0..fa4e2b67dca9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -46,13 +46,12 @@ Non-root container images add an extra layer of security and are generally recom # Supported tags and respective `Dockerfile` links -> NOTE: Debian 9 images have been deprecated in favor of Debian 10 images. Bitnami will not longer publish new Docker images based on Debian 9. +> NOTE: Debian 9 and Oracle Linux 7 images have been deprecated in favor of Debian 10 images. Bitnami will not longer publish new Docker images based on Debian 9 or Oracle Linux 7. Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/containers/how-to/understand-rolling-tags-containers/). -* [`2-ol-7`, `2.0.1-ol-7-r17` (2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-ol-7-r17/2/ol-7/Dockerfile) -* [`2-debian-10`, `2.0.1-debian-10-r18`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r18/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.1-debian-10-r19`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r19/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 596e77421375c348d26680e26d6f2a0b7d363da2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 27 Feb 2020 19:25:03 +0000 Subject: [PATCH 299/950] 2.0.2-debian-10-r0 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- bitnami/kong/2/debian-10/prebuildfs/libnet.sh | 10 +++++----- bitnami/kong/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 16a1544fad73..cb13f6c9555f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps sudo unzip zlib1g -RUN . ./libcomponent.sh && component_unpack "kong" "2.0.1-0" --checksum fed331425b8399f174b1c9325d5607bb2e9a5551cd5048095fb3cd7df8f0205a +RUN . ./libcomponent.sh && component_unpack "kong" "2.0.2-0" --checksum c339f57de02772539c8cb11dacfbee354b1dd0d1b0115eaebc7130064e132114 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN /build/install-gosu.sh @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r19" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/libnet.sh b/bitnami/kong/2/debian-10/prebuildfs/libnet.sh index c416148c5340..96e491e5a9db 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/libnet.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/libnet.sh @@ -62,10 +62,10 @@ parse_uri() { # Solution based on https://tools.ietf.org/html/rfc3986#appendix-B with # additional sub-expressions to split authority into userinfo, host and port # Credits to Patryk Obara (see https://stackoverflow.com/a/45977232/6694969) - local -r URI_REGEX='^(([^:/?#]+):)?(//((([^:/?#]+)@)?([^:/?#]+)(:([0-9]+))?))?(/([^?#]*))(\?([^#]*))?(#(.*))?' - # || | ||| | | | | | | | | | - # |2 scheme | ||6 userinfo 7 host | 9 port | 11 rpath | 13 query | 15 fragment - # 1 scheme: | |5 userinfo@ 8 :... 10 path 12 ?... 14 #... + local -r URI_REGEX='^(([^:/?#]+):)?(//((([^@/?#]+)@)?([^:/?#]+)(:([0-9]+))?))?(/([^?#]*))?(\?([^#]*))?(#(.*))?' + # || | ||| | | | | | | | | | + # |2 scheme | ||6 userinfo 7 host | 9 port | 11 rpath | 13 query | 15 fragment + # 1 scheme: | |5 userinfo@ 8 :... 10 path 12 ?... 14 #... # | 4 authority # 3 //... local index=0 @@ -95,7 +95,7 @@ parse_uri() { index=14 ;; *) - stderr_print "unrecognized component $1" + stderr_print "unrecognized component $component" return 1 ;; esac diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index fa4e2b67dca9..9b092a07a0bf 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.1-debian-10-r19`, `2`, `2.0.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.1-debian-10-r19/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r0`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8da438f8d0aca6818e0407a68a441f860f1955bd Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 28 Feb 2020 19:35:45 +0000 Subject: [PATCH 300/950] 2.0.2-debian-10-r1 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index cb13f6c9555f..13936fd3116c 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9b092a07a0bf..cf360e8baafc 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r0`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r0/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r1`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r1/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 03612424db20a66c2458952a666ea34fce5d94b8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 29 Feb 2020 19:45:01 +0000 Subject: [PATCH 301/950] 2.0.2-debian-10-r2 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 13936fd3116c..43d7024c7002 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index cf360e8baafc..9494643c80b4 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r1`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r1/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r2`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r2/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d622e70ec7af89c1e4ffcc2afe0e74279b1d05bf Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 1 Mar 2020 19:52:45 +0000 Subject: [PATCH 302/950] 2.0.2-debian-10-r3 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 43d7024c7002..9a23b6491717 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9494643c80b4..76f4063dbbe8 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r2`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r2/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r3`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r3/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d6f5d6e96f50879285fdd64441193e6e8928d9f9 Mon Sep 17 00:00:00 2001 From: Carlos Rodriguez Hernandez Date: Mon, 2 Mar 2020 13:46:23 +0000 Subject: [PATCH 303/950] Remove */ol-7 if */debian-10 exists --- bitnami/kong/2/ol-7/Dockerfile | 27 -- bitnami/kong/2/ol-7/docker-compose.yml | 22 -- .../2/ol-7/prebuildfs/build/install-gosu.sh | 10 - bitnami/kong/2/ol-7/prebuildfs/libbitnami.sh | 50 ---- .../kong/2/ol-7/prebuildfs/libcomponent.sh | 64 ----- bitnami/kong/2/ol-7/prebuildfs/libfile.sh | 60 ----- bitnami/kong/2/ol-7/prebuildfs/libfs.sh | 129 --------- bitnami/kong/2/ol-7/prebuildfs/liblog.sh | 83 ------ bitnami/kong/2/ol-7/prebuildfs/libnet.sh | 44 --- bitnami/kong/2/ol-7/prebuildfs/libos.sh | 132 --------- bitnami/kong/2/ol-7/prebuildfs/libservice.sh | 57 ---- .../kong/2/ol-7/prebuildfs/libvalidations.sh | 246 ----------------- bitnami/kong/2/ol-7/prebuildfs/libversion.sh | 47 ---- .../2/ol-7/prebuildfs/opt/bitnami/.exists | 0 .../prebuildfs/usr/local/bin/install_packages | 29 -- bitnami/kong/2/ol-7/rootfs/entrypoint.sh | 26 -- bitnami/kong/2/ol-7/rootfs/libkong.sh | 251 ------------------ .../kong/2/ol-7/rootfs/licenses/licenses.txt | 3 - bitnami/kong/2/ol-7/rootfs/postunpack.sh | 70 ----- bitnami/kong/2/ol-7/rootfs/run.sh | 20 -- bitnami/kong/2/ol-7/rootfs/setup.sh | 22 -- 21 files changed, 1392 deletions(-) delete mode 100644 bitnami/kong/2/ol-7/Dockerfile delete mode 100644 bitnami/kong/2/ol-7/docker-compose.yml delete mode 100755 bitnami/kong/2/ol-7/prebuildfs/build/install-gosu.sh delete mode 100644 bitnami/kong/2/ol-7/prebuildfs/libbitnami.sh delete mode 100644 bitnami/kong/2/ol-7/prebuildfs/libcomponent.sh delete mode 100644 bitnami/kong/2/ol-7/prebuildfs/libfile.sh delete mode 100644 bitnami/kong/2/ol-7/prebuildfs/libfs.sh delete mode 100644 bitnami/kong/2/ol-7/prebuildfs/liblog.sh delete mode 100644 bitnami/kong/2/ol-7/prebuildfs/libnet.sh delete mode 100644 bitnami/kong/2/ol-7/prebuildfs/libos.sh delete mode 100644 bitnami/kong/2/ol-7/prebuildfs/libservice.sh delete mode 100644 bitnami/kong/2/ol-7/prebuildfs/libvalidations.sh delete mode 100644 bitnami/kong/2/ol-7/prebuildfs/libversion.sh delete mode 100644 bitnami/kong/2/ol-7/prebuildfs/opt/bitnami/.exists delete mode 100755 bitnami/kong/2/ol-7/prebuildfs/usr/local/bin/install_packages delete mode 100755 bitnami/kong/2/ol-7/rootfs/entrypoint.sh delete mode 100644 bitnami/kong/2/ol-7/rootfs/libkong.sh delete mode 100644 bitnami/kong/2/ol-7/rootfs/licenses/licenses.txt delete mode 100755 bitnami/kong/2/ol-7/rootfs/postunpack.sh delete mode 100755 bitnami/kong/2/ol-7/rootfs/run.sh delete mode 100755 bitnami/kong/2/ol-7/rootfs/setup.sh diff --git a/bitnami/kong/2/ol-7/Dockerfile b/bitnami/kong/2/ol-7/Dockerfile deleted file mode 100644 index f857df3c8bc3..000000000000 --- a/bitnami/kong/2/ol-7/Dockerfile +++ /dev/null @@ -1,27 +0,0 @@ -FROM oraclelinux:7-slim -LABEL maintainer "Bitnami " - -ENV HOME="/" \ - OS_ARCH="x86_64" \ - OS_FLAVOUR="ol-7" \ - OS_NAME="linux" - -COPY prebuildfs / -# Install required system packages and dependencies -RUN install_packages ca-certificates curl glibc gzip hostname keyutils-libs krb5-libs libaio-devel libcom_err libgcc libselinux libyaml nss-softokn-freebl openssl-libs pcre perl procps-ng sudo tar which zlib -RUN . ./libcomponent.sh && component_unpack "kong" "2.0.1-0" --checksum b59753cf12bacf6dbd936e8a3c1f16f2872f5b075b6613856145e3dd8d3ddd08 -RUN yum upgrade -y && \ - rm -r /var/cache/yum -RUN /build/install-gosu.sh - -COPY rootfs / -RUN /postunpack.sh -ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.1-ol-7-r16" \ - PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" - -EXPOSE 8000 8001 8443 8444 - -USER 1001 -ENTRYPOINT [ "/entrypoint.sh" ] -CMD [ "/run.sh" ] diff --git a/bitnami/kong/2/ol-7/docker-compose.yml b/bitnami/kong/2/ol-7/docker-compose.yml deleted file mode 100644 index fa2ea2ab57cb..000000000000 --- a/bitnami/kong/2/ol-7/docker-compose.yml +++ /dev/null @@ -1,22 +0,0 @@ -version: '2' -services: - postgresql: - image: bitnami/postgresql:11-ol-7 - volumes: - - postgresql_data:/bitnami/postgresql - environment: - - POSTGRESQL_USERNAME=kong - - POSTGRESQL_PASSWORD=bitnami - - POSTGRESQL_DATABASE=kong - kong: - image: bitnami/kong:2-ol-7 - ports: - - 8000:8000 - - 8443:8443 - environment: - - KONG_MIGRATE=yes - - KONG_PG_HOST=postgresql - - KONG_PG_PASSWORD=bitnami -volumes: - postgresql_data: - driver: local diff --git a/bitnami/kong/2/ol-7/prebuildfs/build/install-gosu.sh b/bitnami/kong/2/ol-7/prebuildfs/build/install-gosu.sh deleted file mode 100755 index 1756700daa89..000000000000 --- a/bitnami/kong/2/ol-7/prebuildfs/build/install-gosu.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash - -VERSION="1.11" -SHA256="0b843df6d86e270c5b0f5cbd3c326a04e18f4b7f9b8457fa497b0454c4b138d7" - -curl --silent -L "https://github.com/tianon/gosu/releases/download/${VERSION}/gosu-amd64" > "/usr/local/bin/gosu" -echo "$SHA256" "/usr/local/bin/gosu" | sha256sum --check -chmod u+x "/usr/local/bin/gosu" -mkdir -p "/opt/bitnami/licenses" -curl --silent -L "https://raw.githubusercontent.com/tianon/gosu/master/LICENSE" > "/opt/bitnami/licenses/gosu-${VERSION}.txt" diff --git a/bitnami/kong/2/ol-7/prebuildfs/libbitnami.sh b/bitnami/kong/2/ol-7/prebuildfs/libbitnami.sh deleted file mode 100644 index 529c3fd4a3e2..000000000000 --- a/bitnami/kong/2/ol-7/prebuildfs/libbitnami.sh +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/bash -# -# Bitnami custom library - -# Load Generic Libraries -. /liblog.sh - -# Constants -BOLD='\033[1m' - -# Functions - -######################## -# Print the welcome page -# Globals: -# DISABLE_WELCOME_MESSAGE -# BITNAMI_APP_NAME -# Arguments: -# None -# Returns: -# None -######################### -print_welcome_page() { - if [[ -z "${DISABLE_WELCOME_MESSAGE:-}" ]]; then - if [[ -n "$BITNAMI_APP_NAME" ]]; then - print_image_welcome_page - fi - fi -} - -######################## -# Print the welcome page for a Bitnami Docker image -# Globals: -# BITNAMI_APP_NAME -# Arguments: -# None -# Returns: -# None -######################### -print_image_welcome_page() { - local github_url="https://github.com/bitnami/bitnami-docker-${BITNAMI_APP_NAME}" - - log "" - log "${BOLD}Welcome to the Bitnami ${BITNAMI_APP_NAME} container${RESET}" - log "Subscribe to project updates by watching ${BOLD}${github_url}${RESET}" - log "Submit issues and feature requests at ${BOLD}${github_url}/issues${RESET}" - log "Send us your feedback at ${BOLD}containers@bitnami.com${RESET}" - log "" -} - diff --git a/bitnami/kong/2/ol-7/prebuildfs/libcomponent.sh b/bitnami/kong/2/ol-7/prebuildfs/libcomponent.sh deleted file mode 100644 index 025288664f69..000000000000 --- a/bitnami/kong/2/ol-7/prebuildfs/libcomponent.sh +++ /dev/null @@ -1,64 +0,0 @@ -#!/bin/bash -# -# Library for managing Bitnami components - -# Constants -CACHE_ROOT="/tmp/bitnami/pkg/cache" -DOWNLOAD_URL="https://downloads.bitnami.com/files/stacksmith" - -# Functions - -######################## -# Download and unpack a Bitnami package -# Globals: -# OS_NAME -# OS_ARCH -# OS_FLAVOUR -# Arguments: -# $1 - component's name -# $2 - component's version -# Returns: -# None -######################### -component_unpack() { - local name="${1:?name is required}" - local version="${2:?version is required}" - local base_name="${name}-${version}-${OS_NAME}-${OS_ARCH}-${OS_FLAVOUR}" - local package_sha256="" - - # Validate arguments - shift 2 - while [ "$#" -gt 0 ]; do - case "$1" in - -c|--checksum) - shift - package_sha256="${1:?missing package checksum}" - ;; - *) - echo "Invalid command line flag $1" >&2 - return 1 - ;; - esac - shift - done - - echo "Downloading $base_name package" - if [ -f "${CACHE_ROOT}/${base_name}.tar.gz" ]; then - echo "${CACHE_ROOT}/${base_name}.tar.gz already exists, skipping download." - cp "${CACHE_ROOT}/${base_name}.tar.gz" . - rm "${CACHE_ROOT}/${base_name}.tar.gz" - if [ -f "${CACHE_ROOT}/${base_name}.tar.gz.sha256" ]; then - echo "Using the local sha256 from ${CACHE_ROOT}/${base_name}.tar.gz.sha256" - package_sha256="$(< "${CACHE_ROOT}/${base_name}.tar.gz.sha256")" - rm "${CACHE_ROOT}/${base_name}.tar.gz.sha256" - fi - else - curl --remote-name --silent "${DOWNLOAD_URL}/${base_name}.tar.gz" - fi - if [ -n "$package_sha256" ]; then - echo "Verifying package integrity" - echo "$package_sha256 ${base_name}.tar.gz" | sha256sum --check - - fi - tar --directory /opt/bitnami --extract --gunzip --file "${base_name}.tar.gz" --no-same-owner --strip-components=2 "${base_name}/files/" - rm "${base_name}.tar.gz" -} diff --git a/bitnami/kong/2/ol-7/prebuildfs/libfile.sh b/bitnami/kong/2/ol-7/prebuildfs/libfile.sh deleted file mode 100644 index 337e2e779701..000000000000 --- a/bitnami/kong/2/ol-7/prebuildfs/libfile.sh +++ /dev/null @@ -1,60 +0,0 @@ -#!/bin/bash -# -# Library for managing files - -# Functions - -######################## -# Replace a regex in a file -# Arguments: -# $1 - filename -# $2 - match regex -# $3 - substitute regex -# $4 - use POSIX regex. Default: true -# Returns: -# None -######################### -replace_in_file() { - local filename="${1:?filename is required}" - local match_regex="${2:?match regex is required}" - local substitute_regex="${3:?substitute regex is required}" - local posix_regex=${4:-true} - - local result - - # We should avoid using 'sed in-place' substitutions - # 1) They are not compatible with files mounted from ConfigMap(s) - # 2) We found incompatibility issues with Debian10 and "in-place" substitutions - if [[ $posix_regex = true ]]; then - result="$(sed -E "s@$match_regex@$substitute_regex@g" "$filename")" - else - result="$(sed "s@$match_regex@$substitute_regex@g" "$filename")" - fi - echo "$result" > "$filename" -} - -######################## -# Remove a line in a file based on a regex -# Arguments: -# $1 - filename -# $2 - match regex -# $3 - use POSIX regex. Default: true -# Returns: -# None -######################### -remove_in_file() { - local filename="${1:?filename is required}" - local match_regex="${2:?match regex is required}" - local posix_regex=${3:-true} - local result - - # We should avoid using 'sed in-place' substitutions - # 1) They are not compatible with files mounted from ConfigMap(s) - # 2) We found incompatibility issues with Debian10 and "in-place" substitutions - if [[ $posix_regex = true ]]; then - result="$(sed -E "/$match_regex/d" "$filename")" - else - result="$(sed "/$match_regex/d" "$filename")" - fi - echo "$result" > "$filename" -} diff --git a/bitnami/kong/2/ol-7/prebuildfs/libfs.sh b/bitnami/kong/2/ol-7/prebuildfs/libfs.sh deleted file mode 100644 index 10a24735c096..000000000000 --- a/bitnami/kong/2/ol-7/prebuildfs/libfs.sh +++ /dev/null @@ -1,129 +0,0 @@ -#!/bin/bash -# -# Library for file system actions - -# Load Generic Libraries -. /liblog.sh - -# Functions - -######################## -# Ensure a file/directory is owned (user and group) but the given user -# Arguments: -# $1 - filepath -# $2 - owner -# Returns: -# None -######################### -owned_by() { - local path="${1:?path is missing}" - local owner="${2:?owner is missing}" - - chown "$owner":"$owner" "$path" -} - -######################## -# Ensure a directory exists and, optionally, is owned by the given user -# Arguments: -# $1 - directory -# $2 - owner -# Returns: -# None -######################### -ensure_dir_exists() { - local dir="${1:?directory is missing}" - local owner="${2:-}" - - mkdir -p "${dir}" - if [[ -n $owner ]]; then - owned_by "$dir" "$owner" - fi -} - -######################## -# Checks whether a directory is empty or not -# Arguments: -# $1 - directory -# Returns: -# Boolean -######################### -is_dir_empty() { - local dir="${1:?missing directory}" - - if [[ ! -e "$dir" ]] || [[ -z "$(ls -A "$dir")" ]]; then - true - else - false - fi -} - -######################## -# Configure permisions and ownership recursively -# Globals: -# None -# Arguments: -# $1 - paths (as a string). -# Flags: -# -f|--file-mode - mode for directories. -# -d|--dir-mode - mode for files. -# -u|--user - user -# -g|--group - group -# Returns: -# None -######################### -configure_permissions_ownership() { - local -r paths="${1:?paths is missing}" - local dir_mode="" - local file_mode="" - local user="" - local group="" - - # Validate arguments - shift 1 - while [ "$#" -gt 0 ]; do - case "$1" in - -f|--file-mode) - shift - file_mode="${1:?missing mode for files}" - ;; - -d|--dir-mode) - shift - dir_mode="${1:?missing mode for directories}" - ;; - -u|--user) - shift - user="${1:?missing user}" - ;; - -g|--group) - shift - group="${1:?missing group}" - ;; - *) - echo "Invalid command line flag $1" >&2 - return 1 - ;; - esac - shift - done - - read -r -a filepaths <<< "$paths" - for p in "${filepaths[@]}"; do - if [[ -e "$p" ]]; then - if [[ -n $dir_mode ]]; then - find -L "$p" -type d -exec chmod "$dir_mode" {} \; - fi - if [[ -n $file_mode ]]; then - find -L "$p" -type f -exec chmod "$file_mode" {} \; - fi - if [[ -n $user ]] && [[ -n $group ]]; then - chown -LR "$user":"$group" "$p" - elif [[ -n $user ]] && [[ -z $group ]]; then - chown -LR "$user" "$p" - elif [[ -z $user ]] && [[ -n $group ]]; then - chgrp -LR "$group" "$p" - fi - else - stderr_print "$p does not exist" - fi - done -} diff --git a/bitnami/kong/2/ol-7/prebuildfs/liblog.sh b/bitnami/kong/2/ol-7/prebuildfs/liblog.sh deleted file mode 100644 index 04118273394a..000000000000 --- a/bitnami/kong/2/ol-7/prebuildfs/liblog.sh +++ /dev/null @@ -1,83 +0,0 @@ -#!/bin/bash -# -# Library for logging functions - -# Constants -RESET='\033[0m' -RED='\033[38;5;1m' -GREEN='\033[38;5;2m' -YELLOW='\033[38;5;3m' -MAGENTA='\033[38;5;5m' -CYAN='\033[38;5;6m' - -# Functions - -######################## -# Print to STDERR -# Arguments: -# Message to print -# Returns: -# None -######################### -stderr_print() { - printf "%b\\n" "${*}" >&2 -} - -######################## -# Log message -# Arguments: -# Message to log -# Returns: -# None -######################### -log() { - stderr_print "${CYAN}${MODULE:-} ${MAGENTA}$(date "+%T.%2N ")${RESET}${*}" -} -######################## -# Log an 'info' message -# Arguments: -# Message to log -# Returns: -# None -######################### -info() { - log "${GREEN}INFO ${RESET} ==> ${*}" -} -######################## -# Log message -# Arguments: -# Message to log -# Returns: -# None -######################### -warn() { - log "${YELLOW}WARN ${RESET} ==> ${*}" -} -######################## -# Log an 'error' message -# Arguments: -# Message to log -# Returns: -# None -######################### -error() { - log "${RED}ERROR${RESET} ==> ${*}" -} -######################## -# Log a 'debug' message -# Globals: -# BITNAMI_DEBUG -# Arguments: -# None -# Returns: -# None -######################### -debug() { - # 'is_boolean_yes' is defined in libvalidations.sh, but depends on this file so we cannot source it - local -r bool="${BITNAMI_DEBUG:-false}" - # comparison is performed without regard to the case of alphabetic characters - shopt -s nocasematch - if [[ "$bool" = 1 || "$bool" =~ ^(yes|true)$ ]]; then - log "${MAGENTA}DEBUG${RESET} ==> ${*}" - fi -} diff --git a/bitnami/kong/2/ol-7/prebuildfs/libnet.sh b/bitnami/kong/2/ol-7/prebuildfs/libnet.sh deleted file mode 100644 index f884b7661fd7..000000000000 --- a/bitnami/kong/2/ol-7/prebuildfs/libnet.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/bash -# -# Library for network functions - -# Functions - -######################## -# Resolve dns -# Arguments: -# $1 - Hostname to resolve -# Returns: -# IP -######################### -dns_lookup() { - local host="${1:?host is missing}" - getent ahosts "$host" | awk '/STREAM/ {print $1 }' -} - -######################## -# Get machine's IP -# Arguments: -# None -# Returns: -# Machine IP -######################### -get_machine_ip() { - dns_lookup "$(hostname)" -} - -######################## -# Check if the provided argument is a resolved hostname -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_hostname_resolved() { - local -r host="${1:?missing value}" - if [[ -n "$(dns_lookup "$host")" ]]; then - true - else - false - fi -} diff --git a/bitnami/kong/2/ol-7/prebuildfs/libos.sh b/bitnami/kong/2/ol-7/prebuildfs/libos.sh deleted file mode 100644 index 1a5ba3bb2a64..000000000000 --- a/bitnami/kong/2/ol-7/prebuildfs/libos.sh +++ /dev/null @@ -1,132 +0,0 @@ -#!/bin/bash -# -# Library for operating system actions - -# Functions - -######################## -# Check if an user exists in the system -# Arguments: -# $1 - user -# Returns: -# Boolean -######################### -user_exists() { - local user="${1:?user is missing}" - id "$user" >/dev/null 2>&1 -} - -######################## -# Check if a group exists in the system -# Arguments: -# $1 - group -# Returns: -# Boolean -######################### -group_exists() { - local group="${1:?group is missing}" - getent group "$group" >/dev/null 2>&1 -} - -######################## -# Create a group in the system if it does not exist already -# Arguments: -# $1 - group -# Returns: -# None -######################### -ensure_group_exists() { - local group="${1:?group is missing}" - - if ! group_exists "$group"; then - groupadd "$group" >/dev/null 2>&1 - fi -} - -######################## -# Create an user in the system if it does not exist already -# Arguments: -# $1 - user -# $2 - group -# Returns: -# None -######################### -ensure_user_exists() { - local user="${1:?user is missing}" - local group="${2:-}" - - if ! user_exists "$user"; then - useradd "$user" >/dev/null 2>&1 - if [[ -n "$group" ]]; then - ensure_group_exists "$group" - usermod -a -G "$group" "$user" >/dev/null 2>&1 - fi - fi -} - -######################## -# Check if the script is currently running as root -# Arguments: -# $1 - user -# $2 - group -# Returns: -# Boolean -######################### -am_i_root() { - if [[ "$(id -u)" = "0" ]]; then - true - else - false - fi -} - -######################## -# Get total memory available -# Arguments: -# None -# Returns: -# Memory in bytes -######################### -get_total_memory() { - echo $(($(grep MemTotal /proc/meminfo | awk '{print $2}') / 1024)) -} - -######################### -# Redirects output to /dev/null if debug mode is disabled -# Globals: -# BITNAMI_DEBUG -# Arguments: -# $@ - Command to execute -# Returns: -# None -######################### -debug_execute() { - if ${BITNAMI_DEBUG:-false}; then - "$@" - else - "$@" >/dev/null 2>&1 - fi -} - -######################## -# Retries a command a given number of times -# Arguments: -# $1 - cmd (as a string) -# $2 - max retries. Default: 12 -# $3 - sleep between retries (in seconds). Default: 5 -# Returns: -# Boolean -######################### -retry_while() { - local -r cmd="${1:?cmd is missing}" - local -r retries="${2:-12}" - local -r sleep_time="${3:-5}" - local return_value=1 - - read -r -a command <<< "$cmd" - for ((i = 1 ; i <= retries ; i+=1 )); do - "${command[@]}" && return_value=0 && break - sleep "$sleep_time" - done - return $return_value -} diff --git a/bitnami/kong/2/ol-7/prebuildfs/libservice.sh b/bitnami/kong/2/ol-7/prebuildfs/libservice.sh deleted file mode 100644 index 0a83cd3d927f..000000000000 --- a/bitnami/kong/2/ol-7/prebuildfs/libservice.sh +++ /dev/null @@ -1,57 +0,0 @@ -#!/bin/bash -# -# Library for managing services - -# Functions - -######################## -# Read the provided pid file and returns a PID -# Arguments: -# $1 - Pid file -# Returns: -# PID -######################### -get_pid_from_file() { - local pid_file="${1:?pid file is missing}" - - if [[ -f "$pid_file" ]]; then - if [[ -n "$(< "$pid_file")" ]] && [[ "$(< "$pid_file")" -gt 0 ]]; then - echo "$(< "$pid_file")" - fi - fi -} - -######################## -# Check if a provided PID corresponds to a running service -# Arguments: -# $1 - PID -# Returns: -# Boolean -######################### -is_service_running() { - local pid="${1:?pid is missing}" - - kill -0 "$pid" 2>/dev/null -} - -######################## -# Stop a service by sending a termination signal to its pid -# Arguments: -# $1 - Pid file -# Returns: -# None -######################### -stop_service_using_pid() { - local pid_file="${1:?pid file is missing}" - local pid - - pid="$(get_pid_from_file "$pid_file")" - [[ -z "$pid" ]] || ! is_service_running "$pid" && return - - kill "$pid" - local counter=10 - while [[ "$counter" -ne 0 ]] && is_service_running "$pid"; do - sleep 1 - counter=$((counter - 1)) - done -} diff --git a/bitnami/kong/2/ol-7/prebuildfs/libvalidations.sh b/bitnami/kong/2/ol-7/prebuildfs/libvalidations.sh deleted file mode 100644 index ef9aaf0cf31f..000000000000 --- a/bitnami/kong/2/ol-7/prebuildfs/libvalidations.sh +++ /dev/null @@ -1,246 +0,0 @@ -#!/bin/bash -# -# Validation functions library - -# Load Generic Libraries -. /liblog.sh - -# Functions - -######################## -# Check if the provided argument is an integer -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_int() { - local -r int="${1:?missing value}" - if [[ "$int" =~ ^-?[0-9]+ ]]; then - true - else - false - fi -} - -######################## -# Check if the provided argument is a positive integer -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_positive_int() { - local -r int="${1:?missing value}" - if is_int "$int" && (( "${int}" >= 0 )); then - true - else - false - fi -} - -######################## -# Check if the provided argument is a boolean or is the string 'yes/true' -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_boolean_yes() { - local -r bool="${1:-}" - # comparison is performed without regard to the case of alphabetic characters - shopt -s nocasematch - if [[ "$bool" = 1 || "$bool" =~ ^(yes|true)$ ]]; then - true - else - false - fi -} - -######################## -# Check if the provided argument is a boolean yes/no value -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_yes_no_value() { - local -r bool="${1:-}" - if [[ "$bool" =~ ^(yes|no)$ ]]; then - true - else - false - fi -} - -######################## -# Check if the provided argument is a boolean true/false value -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_true_false_value() { - local -r bool="${1:-}" - if [[ "$bool" =~ ^(true|false)$ ]]; then - true - else - false - fi -} - -######################## -# Check if the provided argument is an empty string or not defined -# Arguments: -# $1 - Value to check -# Returns: -# Boolean -######################### -is_empty_value() { - local -r val="${1:-}" - if [[ -z "$val" ]]; then - true - else - false - fi -} - -######################## -# Validate if the provided argument is a valid port -# Arguments: -# $1 - Port to validate -# Returns: -# Boolean and error message -######################### -validate_port() { - local value - local unprivileged=0 - - # Parse flags - while [[ "$#" -gt 0 ]]; do - case "$1" in - -unprivileged) - unprivileged=1 - ;; - --) - shift - break - ;; - -*) - stderr_print "unrecognized flag $1" - return 1 - ;; - *) - break - ;; - esac - shift - done - - if [[ "$#" -gt 1 ]]; then - echo "too many arguments provided" - return 2 - elif [[ "$#" -eq 0 ]]; then - stderr_print "missing port argument" - return 1 - else - value=$1 - fi - - if [[ -z "$value" ]]; then - echo "the value is empty" - return 1 - else - if ! is_int "$value"; then - echo "value is not an integer" - return 2 - elif [[ "$value" -lt 0 ]]; then - echo "negative value provided" - return 2 - elif [[ "$value" -gt 65535 ]]; then - echo "requested port is greater than 65535" - return 2 - elif [[ "$unprivileged" = 1 && "$value" -lt 1024 ]]; then - echo "privileged port requested" - return 3 - fi - fi -} - -######################## -# Validate if the provided argument is a valid IPv4 address -# Arguments: -# $1 - IP to validate -# Returns: -# Boolean -######################### -validate_ipv4() { - local ip="${1:?ip is missing}" - local stat=1 - - if [[ $ip =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then - read -r -a ip_array <<< "$(tr '.' ' ' <<< "$ip")" - [[ ${ip_array[0]} -le 255 && ${ip_array[1]} -le 255 \ - && ${ip_array[2]} -le 255 && ${ip_array[3]} -le 255 ]] - stat=$? - fi - return $stat -} - -######################## -# Validate a string format -# Arguments: -# $1 - String to validate -# Returns: -# Boolean -######################### -validate_string() { - local string - local min_length=-1 - local max_length=-1 - - # Parse flags - while [ "$#" -gt 0 ]; do - case "$1" in - -min-length) - shift - min_length=${1:-} - ;; - -max-length) - shift - max_length=${1:-} - ;; - --) - shift - break - ;; - -*) - stderr_print "unrecognized flag $1" - return 1 - ;; - *) - break - ;; - esac - shift - done - - if [ "$#" -gt 1 ]; then - stderr_print "too many arguments provided" - return 2 - elif [ "$#" -eq 0 ]; then - stderr_print "missing string" - return 1 - else - string=$1 - fi - - if [[ "$min_length" -ge 0 ]] && [[ "${#string}" -lt "$min_length" ]]; then - echo "string length is less than $min_length" - return 1 - fi - if [[ "$max_length" -ge 0 ]] && [[ "${#string}" -gt "$max_length" ]]; then - echo "string length is great than $max_length" - return 1 - fi -} diff --git a/bitnami/kong/2/ol-7/prebuildfs/libversion.sh b/bitnami/kong/2/ol-7/prebuildfs/libversion.sh deleted file mode 100644 index b16090cfe1f4..000000000000 --- a/bitnami/kong/2/ol-7/prebuildfs/libversion.sh +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/bash -# -# Library for managing versions strings - -# Load Generic Libraries -. ./liblog.sh - -# Functions -######################## -# Gets semantic version -# Arguments: -# $1 - version: string to extract major.minor.patch -# $2 - section: 1 to extract major, 2 to extract minor, 3 to extract patch -# Returns: -# array with the major, minor and release -######################### -get_sematic_version () { - local version="${1:?version is required}" - local section="${2:?section is required}" - local -a version_sections - - #Regex to parse versions: x.y.z - local -r regex='([0-9]+)(\.([0-9]+)(\.([0-9]+))?)?' - - if [[ "$version" =~ $regex ]]; then - local i=1 - local j=1 - local n=${#BASH_REMATCH[*]} - - while [[ $i -lt $n ]]; do - if [[ -n "${BASH_REMATCH[$i]}" ]] && [[ "${BASH_REMATCH[$i]:0:1}" != '.' ]]; then - version_sections[$j]=${BASH_REMATCH[$i]} - ((j++)) - fi - ((i++)) - done - - local number_regex='^[0-9]+$' - if [[ "$section" =~ $number_regex ]] && (( $section > 0 )) && (( $section <= 3 )); then - echo "${version_sections[$section]}" - return - else - stderr_print "Section allowed values are: 1, 2, and 3" - return 1 - fi - fi -} diff --git a/bitnami/kong/2/ol-7/prebuildfs/opt/bitnami/.exists b/bitnami/kong/2/ol-7/prebuildfs/opt/bitnami/.exists deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/bitnami/kong/2/ol-7/prebuildfs/usr/local/bin/install_packages b/bitnami/kong/2/ol-7/prebuildfs/usr/local/bin/install_packages deleted file mode 100755 index 370f3516f403..000000000000 --- a/bitnami/kong/2/ol-7/prebuildfs/usr/local/bin/install_packages +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh -set -eu - -if [[ -n "oracle-epel-release-el7" ]]; then - if ! yum list installed oracle-epel-release-el7 >/dev/null 2>&1; then - yum -y install oracle-epel-release-el7 >/dev/null 2>&1 - CODE=$? - if (( $CODE != 0 )); then - echo "EPEL repository installation failed" - exit $CODE - fi - fi -fi - -max=2 -for ((n = 1 ; n <= max ; n+=1 )); do - set +e - yum --enablerepo base,updates,ol7_developer_EPEL,ol7_optional_latest install -y "$@" - CODE=$? - set -e - if (( $CODE == 0 )); then - break - fi - if (( $n == $max )); then - exit $CODE - fi - echo "yum failed, retrying" -done -rm -r /var/cache/yum diff --git a/bitnami/kong/2/ol-7/rootfs/entrypoint.sh b/bitnami/kong/2/ol-7/rootfs/entrypoint.sh deleted file mode 100755 index a6f9da9603c8..000000000000 --- a/bitnami/kong/2/ol-7/rootfs/entrypoint.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash - -# shellcheck disable=SC1091 - -set -o errexit -set -o nounset -set -o pipefail -#set -o xtrace # Uncomment this line for debugging purpose - -# Load libraries -. /libbitnami.sh -. /liblog.sh -. /libkong.sh - -eval "$(kong_env)" - -print_welcome_page - -if [[ "$*" = *"/run.sh"* ]]; then - info "** Starting Kong setup **" - /setup.sh - info "** Kong setup finished! **" -fi - -echo "" -exec "$@" diff --git a/bitnami/kong/2/ol-7/rootfs/libkong.sh b/bitnami/kong/2/ol-7/rootfs/libkong.sh deleted file mode 100644 index e93fad1818ba..000000000000 --- a/bitnami/kong/2/ol-7/rootfs/libkong.sh +++ /dev/null @@ -1,251 +0,0 @@ -#!/bin/bash -# -# Bitnami Kong library - -# shellcheck disable=SC1090 -# shellcheck disable=SC1091 - -# Load generic libraries -. /libfs.sh -. /liblog.sh -. /libnet.sh -. /libos.sh -. /libservice.sh -. /libvalidations.sh - -######################## -# Load global variables used for Kong configuration. -# Globals: -# KONG_* -# Arguments: -# None -# Returns: -# Series of exports to be used as 'eval' arguments -######################### -kong_env() { - # Avoid environment settings getting overridden twice - if [[ -n "${MODULE:-}" ]]; then - return - fi - - cat <<"EOF" -# Bitnami debug -export MODULE=kong -export BITNAMI_DEBUG="${BITNAMI_DEBUG:-false}" - -# Paths -export KONG_BASE_DIR="/opt/bitnami/kong" -export KONG_CONF_DIR="${KONG_BASE_DIR}/conf" -export KONG_SERVER_DIR="${KONG_BASE_DIR}/server" - -export KONG_CONF_FILE="${KONG_CONF_DIR}/kong.conf" -export KONG_DEFAULT_CONF_FILE="${KONG_CONF_DIR}/kong.conf.default" - -# Users -export KONG_DAEMON_USER="${KONG_DAEMON_USER:-kong}" -export KONG_DAEMON_GROUP="${KONG_DAEMON_GROUP:-kong}" - -# Cluster settings -export KONG_MIGRATE="${KONG_MIGRATE:-no}" - -# Port and service bind configurations for KONG_PROXY_LISTEN and KONG_ADMIN_LISTEN -# By setting these separately, we are consistent with other Bitnami solutions -# However it is still possible to directly set KONG_PROXY_LISTEN and KONG_ADMIN_LISTEN -export KONG_PROXY_LISTEN_ADDRESS="${KONG_PROXY_LISTEN_ADDRESS:-0.0.0.0}" -export KONG_PROXY_HTTP_PORT_NUMBER="${KONG_PROXY_HTTP_PORT_NUMBER:-8000}" -export KONG_PROXY_HTTPS_PORT_NUMBER="${KONG_PROXY_HTTPS_PORT_NUMBER:-8443}" -export KONG_ADMIN_LISTEN_ADDRESS="${KONG_ADMIN_LISTEN_ADDRESS:-127.0.0.1}" -export KONG_ADMIN_HTTP_PORT_NUMBER="${KONG_ADMIN_HTTP_PORT_NUMBER:-8001}" -export KONG_ADMIN_HTTPS_PORT_NUMBER="${KONG_ADMIN_HTTPS_PORT_NUMBER:-8444}" - -# Kong configuration -# These environment variables are used by Kong and allow overriding values in its configuration file -export KONG_NGINX_DAEMON="off" -EOF - - if am_i_root; then - cat <<"EOF" -export KONG_NGINX_USER="${KONG_DAEMON_USER} ${KONG_DAEMON_GROUP}" -EOF - fi - - if [[ -f "${KONG_CASSANDRA_PASSWORD_FILE:-}" ]]; then - cat <<"EOF" -export KONG_CASSANDRA_PASSWORD="$(< "${KONG_CASSANDRA_PASSWORD_FILE}")" -EOF - fi - - if [[ -f "${KONG_POSTGRESQL_PASSWORD_FILE:-}" ]]; then - cat <<"EOF" -export KONG_PG_PASSWORD="$(< "${KONG_POSTGRESQL_PASSWORD_FILE}")" -EOF - fi - - # Compound environment variables that form a single Kong configuration entry - if [[ -n "${KONG_PROXY_LISTEN:-}" ]]; then - cat <<"EOF" -export KONG_PROXY_LISTEN_OVERRIDE="yes" -EOF - else - cat <<"EOF" -export KONG_PROXY_LISTEN="${KONG_PROXY_LISTEN_ADDRESS}:${KONG_PROXY_HTTP_PORT_NUMBER}, ${KONG_PROXY_LISTEN_ADDRESS}:${KONG_PROXY_HTTPS_PORT_NUMBER} ssl" -export KONG_PROXY_LISTEN_OVERRIDE="no" -EOF - fi - if [[ -n "${KONG_ADMIN_LISTEN:-}" ]]; then - cat <<"EOF" -export KONG_ADMIN_LISTEN_OVERRIDE="yes" -EOF - else - cat <<"EOF" -export KONG_ADMIN_LISTEN="${KONG_ADMIN_LISTEN_ADDRESS}:${KONG_ADMIN_HTTP_PORT_NUMBER}, ${KONG_ADMIN_LISTEN_ADDRESS}:${KONG_ADMIN_HTTPS_PORT_NUMBER} ssl" -export KONG_ADMIN_LISTEN_OVERRIDE="no" -EOF - fi -} - -######################## -# Validate settings in KONG_* environment variables -# Globals: -# KONG_* -# Arguments: -# None -# Returns: -# None -######################### -kong_validate() { - info "Validating settings in KONG_* env vars" - local error_code=0 - - # Auxiliary functions - - print_validation_error() { - error "$1" - error_code="1" - } - - check_yes_no_value() { - if ! is_yes_no_value "${!1}"; then - print_validation_error "The allowed values for ${1} are [yes, no]" - fi - } - - check_password_file() { - if [[ -n "${!1:-}" ]] && ! [[ -f "${!1:-}" ]]; then - print_validation_error "The variable ${1} is defined but the file ${!1} is not accessible or does not exist" - fi - } - - check_resolved_hostname() { - if ! is_hostname_resolved "$1"; then - warn "Hostname ${1} could not be resolved, this could lead to connection issues" - fi - } - - check_allowed_port() { - local validate_port_args=() - ! am_i_root && validate_port_args+=("-unprivileged") - if ! err="$(validate_port "${validate_port_args[@]}" "${!1}")"; then - print_validation_error "An invalid port was specified in the environment variable ${1}: ${err}" - fi - } - - check_conflicting_ports() { - local -r total="$#" - for i in $(seq 1 "$((total - 1))"); do - for j in $(seq "$((i + 1))" "$total"); do - if (( "${!i}" == "${!j}" )); then - print_validation_error "${!i} and ${!j} are bound to the same port" - fi - done - done - } - - check_yes_no_value KONG_MIGRATE - - # Validate some of the supported environment variables used by Kong - - # Database setting validations - if [[ "${KONG_DATABASE:-postgres}" = "postgres" ]]; then - # PostgreSQL is the default database type - check_password_file KONG_POSTGRESQL_PASSWORD_FILE - [[ -n "${KONG_PG_HOST:-}" ]] && check_resolved_hostname "${KONG_PG_HOST:-}" - if [[ -n "${!KONG_CASSANDRA_@}" ]]; then - warn "KONG_DATABASE is empty or set to 'postgres', so the following environment variables will be ignored: ${!KONG_CASSANDRA_@}" - fi - elif [[ "${KONG_DATABASE:-}" = "cassandra" ]]; then - check_password_file KONG_CASSANDRA_PASSWORD_FILE - for cassandra_contact_point in $(echo "${CASSANDRA_CONTACT_POINTS:-}" | sed -r 's/[, ]+/\n/'); do - check_resolved_hostname "${cassandra_contact_point}" - done - if [[ -n "${!KONG_PG_@}" ]]; then - warn "KONG_DATABASE is set to 'cassandra', so the following environment variables will be ignored: ${!KONG_PG_@}" - fi - elif [[ "${KONG_DATABASE:-}" = "off" ]]; then - warn "KONG_DATABASE is set to 'off', Kong will run but data will not be persisted" - else - print_validation_error "Wrong value '${KONG_DATABASE}' passed to KONG_DATABASE. Valid values: 'off', 'cassandra', 'postgres'" - fi - - # Listen addresses and port validations - used_ports=() - if is_boolean_yes "$KONG_PROXY_LISTEN_OVERRIDE"; then - warn "KONG_PROXY_LISTEN was set, it will not be validated and the environment variables KONG_PROXY_LISTEN_ADDRESS, KONG_PROXY_HTTP_PORT_NUMBER and KONG_PROXY_HTTPS_PORT_NUMBER will be ignored" - else - used_ports+=(KONG_PROXY_HTTP_PORT_NUMBER KONG_PROXY_HTTPS_PORT_NUMBER) - if [[ "$KONG_PROXY_LISTEN_ADDRESS" != "0.0.0.0" && "$KONG_PROXY_LISTEN_ADDRESS" != "127.0.0.1" ]]; then - warn "Kong Proxy is set to listen at ${KONG_PROXY_LISTEN_ADDRESS} instead of 0.0.0.0 or 127.0.0.1, this could make Kong inaccessible" - fi - fi - if is_boolean_yes "$KONG_ADMIN_LISTEN_OVERRIDE"; then - warn "KONG_ADMIN_LISTEN was set, it will not be validated and the environment variables KONG_ADMIN_LISTEN_ADDRESS, KONG_ADMIN_HTTP_PORT_NUMBER and KONG_ADMIN_HTTPS_PORT_NUMBER will be ignored" - else - used_ports+=(KONG_ADMIN_HTTP_PORT_NUMBER KONG_ADMIN_HTTPS_PORT_NUMBER) - if [[ "$KONG_ADMIN_LISTEN_ADDRESS" != "127.0.0.1" ]]; then - warn "Kong Admin is set to listen at ${KONG_ADMIN_LISTEN_ADDRESS} instead of 127.0.0.1, opening it to the outside could make it insecure" - fi - fi - for port in "${used_ports[@]}"; do - check_allowed_port "${port}" - done - if [[ "${#used_ports[@]}" -ne 0 ]]; then - check_conflicting_ports "${used_ports[@]}" - fi - - # Quit if any failures occurred - [[ "$error_code" -eq 0 ]] || exit "$error_code" -} - -######################## -# Ensure Kong is initialized -# Globals: -# KONG_* -# Arguments: -# None -# Returns: -# None -######################### -kong_initialize() { - info "Initializing Kong" - - info "Waiting for database connection to succeed" - - while ! kong_migrations_list_output="$(kong migrations list 2>&1)"; do - if is_boolean_yes "$KONG_MIGRATE" && [[ "$kong_migrations_list_output" =~ "Database needs bootstrapping"* ]]; then - break - fi - debug "$kong_migrations_list_output" - debug "Database is still not ready, will retry" - sleep 1 - done - - if is_boolean_yes "$KONG_MIGRATE"; then - info "Migrating database" - kong migrations bootstrap - while ! kong migrations list; do - debug "Error during the initial bootstrap for the database, will retry" - kong migrations up - kong migrations finish - done - fi -} diff --git a/bitnami/kong/2/ol-7/rootfs/licenses/licenses.txt b/bitnami/kong/2/ol-7/rootfs/licenses/licenses.txt deleted file mode 100644 index c76ba31f3b8a..000000000000 --- a/bitnami/kong/2/ol-7/rootfs/licenses/licenses.txt +++ /dev/null @@ -1,3 +0,0 @@ -Bitnami containers ship with software bundles. You can find the licenses under: -/opt/bitnami/nami/COPYING -/opt/bitnami/[name-of-bundle]/licenses/[bundle-version].txt diff --git a/bitnami/kong/2/ol-7/rootfs/postunpack.sh b/bitnami/kong/2/ol-7/rootfs/postunpack.sh deleted file mode 100755 index f19e435173e2..000000000000 --- a/bitnami/kong/2/ol-7/rootfs/postunpack.sh +++ /dev/null @@ -1,70 +0,0 @@ -#!/bin/bash - -# shellcheck disable=SC1091 - -set -o errexit -set -o nounset -set -o pipefail -# set -o xtrace # Uncomment this line for debugging purpose - -. /libfs.sh -. /libos.sh -. /libkong.sh - -# Auxiliar functions - -######################## -# Set a configuration to Kong's configuration file -# Globals: -# KONG_CONF_FILE -# Arguments: -# $1 - key -# $2 - value -# Returns: -# None -######################### -kong_conf_set() { - local -r key="${1:?missing key}" - local -r value="${2:-}" - - # Check if the value was commented or set before - if grep -q "^#*${key}\s*=[^#]*" "$KONG_CONF_FILE"; then - debug "Updating entry for property '${key}' in configuration file" - # Update the existing key (leave trailing space for comments) - sed -ri "s|^(#*${key}\s*=)[^#]*|\1 ${value} |" "$KONG_CONF_FILE" - else - debug "Adding new entry for property '${key}' in configuration file" - # Add a new key - printf '%s = %s\n' "$key" "$value" >>"$KONG_CONF_FILE" - fi -} - -######################## -# Uncomment non-empty entries in Kong configuration -# Globals: -# KONG_CONF_FILE -# Arguments: -# None -# Returns: -# None -######################### -kong_configure_non_empty_values() { - # Uncomment all non-empty keys in the main Kong configuration file - sed -ri 's/^#+([a-z_ ]+)=(\s*[^# ]+)/\1=\2 /' "$KONG_CONF_FILE" -} - -# Load Kong environment variables -eval "$(kong_env)" - -# Ensure users and groups used by Kong exist -ensure_user_exists "$KONG_DAEMON_USER" "$KONG_DAEMON_GROUP" -# Ensure directories used by Kong exist and have proper permissions -ensure_dir_exists "$KONG_SERVER_DIR" -chmod -R g+rwX "$KONG_SERVER_DIR" "$KONG_CONF_DIR" -# Copy configuration file and set default values -cp "$KONG_DEFAULT_CONF_FILE" "$KONG_CONF_FILE" -kong_conf_set prefix "$KONG_SERVER_DIR" -kong_conf_set nginx_daemon off -kong_conf_set lua_package_path -kong_conf_set nginx_user -kong_configure_non_empty_values diff --git a/bitnami/kong/2/ol-7/rootfs/run.sh b/bitnami/kong/2/ol-7/rootfs/run.sh deleted file mode 100755 index e1a409e62410..000000000000 --- a/bitnami/kong/2/ol-7/rootfs/run.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -# shellcheck disable=SC1091 - -set -o errexit -set -o nounset -set -o pipefail -# set -o xtrace # Uncomment this line for debugging purpose - -# Load libraries -. /liblog.sh -. /libos.sh -. /libkong.sh - -# Load Kong environment variables -eval "$(kong_env)" - -info "** Starting Kong **" - -exec kong start diff --git a/bitnami/kong/2/ol-7/rootfs/setup.sh b/bitnami/kong/2/ol-7/rootfs/setup.sh deleted file mode 100755 index 97a3f821c294..000000000000 --- a/bitnami/kong/2/ol-7/rootfs/setup.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -# shellcheck disable=SC1091 - -set -o errexit -set -o nounset -set -o pipefail -# set -o xtrace # Uncomment this line for debugging purpose - -# Load libraries -. /libos.sh -. /libkong.sh - -# Load Kong environment variables -eval "$(kong_env)" - -# Ensure Kong environment variables are valid -kong_validate -# Ensure file ownership is correct -am_i_root && chown -R "$KONG_DAEMON_USER":"$KONG_DAEMON_GROUP" "$KONG_SERVER_DIR" "$KONG_CONF_DIR" -# Ensure Kong is initialized -kong_initialize From 36a8c692203059bd260cf047601c3800793f6fae Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 2 Mar 2020 19:59:35 +0000 Subject: [PATCH 304/950] 2.0.2-debian-10-r4 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 9a23b6491717..0773150fce6a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 76f4063dbbe8..d3a2262e6bd6 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r3`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r3/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r4`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r4/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 6909267979ddd23f881d6c9d2c6b91a6b0a9fe61 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 3 Mar 2020 20:07:22 +0000 Subject: [PATCH 305/950] 2.0.2-debian-10-r5 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0773150fce6a..d396947e6c0d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d3a2262e6bd6..a25fae847ede 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r4`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r4/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r5`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r5/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 031e1525a1547c067fc6768894fb359277ce0c0e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 4 Mar 2020 20:14:59 +0000 Subject: [PATCH 306/950] 2.0.2-debian-10-r6 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index d396947e6c0d..e267692c712a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a25fae847ede..12690ec71918 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r5`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r5/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r6`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r6/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ff87240ef674d7a206013afdbccc354657195009 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 5 Mar 2020 20:28:47 +0000 Subject: [PATCH 307/950] 2.0.2-debian-10-r7 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index e267692c712a..3dcd814f298a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 12690ec71918..3a47de412c80 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r6`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r6/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r7`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r7/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 29cf62f58cd928079e794d7ddb6e667a20fbeeba Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 6 Mar 2020 20:38:26 +0000 Subject: [PATCH 308/950] 2.0.2-debian-10-r8 release --- bitnami/kong/2/debian-10/Dockerfile | 3 ++- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 3dcd814f298a..d3ff2c912858 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -12,12 +12,13 @@ RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libya RUN . ./libcomponent.sh && component_unpack "kong" "2.0.2-0" --checksum c339f57de02772539c8cb11dacfbee354b1dd0d1b0115eaebc7130064e132114 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives +RUN useradd -r -u 1001 -g root kong RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 3a47de412c80..68a39147d05f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r7`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r7/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r8`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r8/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f6e590791b259f587b22df4413ba74dcc2a9184d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 7 Mar 2020 20:48:25 +0000 Subject: [PATCH 309/950] 2.0.2-debian-10-r9 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index d3ff2c912858..5d92b626f8d9 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 68a39147d05f..e86da3266888 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r8`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r8/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r9`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r9/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 1ef7a0516043c12886318ce141b17e875c7fcb1f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 8 Mar 2020 20:58:50 +0000 Subject: [PATCH 310/950] 2.0.2-debian-10-r10 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 5d92b626f8d9..43196ae770c3 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r10" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e86da3266888..1c99e4bb1ad0 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r9`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r9/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r10`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r10/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0c6930a581b1cc5226bd84fd81b26b28834c5fe4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 9 Mar 2020 21:06:23 +0000 Subject: [PATCH 311/950] 2.0.2-debian-10-r11 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 43196ae770c3..fc22064960d4 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r10" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r11" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1c99e4bb1ad0..944254e77fd1 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r10`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r10/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r11`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r11/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 11ed704be0794f13835da184c827331b4ed0369e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 10 Mar 2020 21:13:43 +0000 Subject: [PATCH 312/950] 2.0.2-debian-10-r12 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index fc22064960d4..cdd4e9880c95 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r11" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r12" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 944254e77fd1..6706b087b8c1 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r11`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r11/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r12`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r12/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 73a6e9f30350915e9edd863c4f0321e60c81ef41 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 11 Mar 2020 21:19:39 +0000 Subject: [PATCH 313/950] 2.0.2-debian-10-r13 release --- bitnami/kong/2/debian-10/Dockerfile | 6 +++--- bitnami/kong/README.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index cdd4e9880c95..96a0de05ee2c 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -10,16 +10,16 @@ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps sudo unzip zlib1g RUN . ./libcomponent.sh && component_unpack "kong" "2.0.2-0" --checksum c339f57de02772539c8cb11dacfbee354b1dd0d1b0115eaebc7130064e132114 +RUN . ./libcomponent.sh && component_unpack "gosu" "1.11.0-3" --checksum c18bb8bcc95aa2494793ed5a506c4d03acc82c8c60ad061d5702e0b4048f0cb1 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN useradd -r -u 1001 -g root kong -RUN /build/install-gosu.sh COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r12" \ - PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH" + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r13" \ + PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/gosu/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 6706b087b8c1..299f663037b7 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r12`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r12/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r13`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r13/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 76151716e24d813c7bd5466cc3d6a1423d5f58b9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 12 Mar 2020 14:23:54 +0000 Subject: [PATCH 314/950] 2.0.2-debian-10-r14 release --- bitnami/kong/2/debian-10/Dockerfile | 4 +- .../kong/2/debian-10/prebuildfs/libbitnami.sh | 3 +- bitnami/kong/2/debian-10/prebuildfs/libfs.sh | 3 +- bitnami/kong/2/debian-10/prebuildfs/liblog.sh | 8 ++- bitnami/kong/2/debian-10/prebuildfs/libos.sh | 72 +++++++++++++++++++ .../kong/2/debian-10/prebuildfs/libservice.sh | 60 +++++++++++++++- .../2/debian-10/prebuildfs/libvalidations.sh | 3 +- .../kong/2/debian-10/prebuildfs/libversion.sh | 3 +- bitnami/kong/README.md | 2 +- 9 files changed, 149 insertions(+), 9 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 96a0de05ee2c..90aa51c45ab7 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps sudo unzip zlib1g -RUN . ./libcomponent.sh && component_unpack "kong" "2.0.2-0" --checksum c339f57de02772539c8cb11dacfbee354b1dd0d1b0115eaebc7130064e132114 +RUN . ./libcomponent.sh && component_unpack "kong" "2.0.2-1" --checksum ea43d30d06a749965ffdc63ccede4433ea7899833a4eb74c62fed02ce3670299 RUN . ./libcomponent.sh && component_unpack "gosu" "1.11.0-3" --checksum c18bb8bcc95aa2494793ed5a506c4d03acc82c8c60ad061d5702e0b4048f0cb1 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -18,7 +18,7 @@ RUN useradd -r -u 1001 -g root kong COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r13" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r14" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/gosu/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/libbitnami.sh b/bitnami/kong/2/debian-10/prebuildfs/libbitnami.sh index 529c3fd4a3e2..ec789d8227eb 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/libbitnami.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/libbitnami.sh @@ -1,9 +1,10 @@ #!/bin/bash +# shellcheck disable=SC1090 # # Bitnami custom library # Load Generic Libraries -. /liblog.sh +. "${BITNAMI_SCRIPTS_DIR:-}"/liblog.sh # Constants BOLD='\033[1m' diff --git a/bitnami/kong/2/debian-10/prebuildfs/libfs.sh b/bitnami/kong/2/debian-10/prebuildfs/libfs.sh index 10a24735c096..1a1fc5522dec 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/libfs.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/libfs.sh @@ -1,9 +1,10 @@ #!/bin/bash +# shellcheck disable=SC1090 # # Library for file system actions # Load Generic Libraries -. /liblog.sh +. "${BITNAMI_SCRIPTS_DIR:-}"/liblog.sh # Functions diff --git a/bitnami/kong/2/debian-10/prebuildfs/liblog.sh b/bitnami/kong/2/debian-10/prebuildfs/liblog.sh index 04118273394a..1285b05ba344 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/liblog.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/liblog.sh @@ -20,7 +20,13 @@ CYAN='\033[38;5;6m' # None ######################### stderr_print() { - printf "%b\\n" "${*}" >&2 + # 'is_boolean_yes' is defined in libvalidations.sh, but depends on this file so we cannot source it + local -r bool="${BITNAMI_QUIET:-false}" + # comparison is performed without regard to the case of alphabetic characters + shopt -s nocasematch + if ! [[ "$bool" = 1 || "$bool" =~ ^(yes|true)$ ]]; then + printf "%b\\n" "${*}" >&2 + fi } ######################## diff --git a/bitnami/kong/2/debian-10/prebuildfs/libos.sh b/bitnami/kong/2/debian-10/prebuildfs/libos.sh index 1a5ba3bb2a64..10022fb21d8d 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/libos.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/libos.sh @@ -1,7 +1,11 @@ #!/bin/bash +# shellcheck disable=SC1090 # # Library for operating system actions +# Load Generic Libraries +. "${BITNAMI_SCRIPTS_DIR:-}"/liblog.sh + # Functions ######################## @@ -91,6 +95,74 @@ get_total_memory() { echo $(($(grep MemTotal /proc/meminfo | awk '{print $2}') / 1024)) } +######################## +# Get machine size depending on specified memory +# Globals: +# None +# Arguments: +# $1 - memory size (optional) +# Returns: +# Detected instance size +######################### +get_machine_size() { + local memory="${1:-}" + if [[ -z "$memory" ]]; then + debug "Memory was not specified, detecting available memory automatically" + memory="$(get_total_memory)" + fi + sanitized_memory=$(convert_to_mb "$memory") + if [[ "$sanitized_memory" -gt 26000 ]]; then + echo 2xlarge + elif [[ "$sanitized_memory" -gt 13000 ]]; then + echo xlarge + elif [[ "$sanitized_memory" -gt 6000 ]]; then + echo large + elif [[ "$sanitized_memory" -gt 3000 ]]; then + echo medium + elif [[ "$sanitized_memory" -gt 1500 ]]; then + echo small + else + echo micro + fi +} + +######################## +# Get machine size depending on specified memory +# Globals: +# None +# Arguments: +# $1 - memory size (optional) +# Returns: +# Detected instance size +######################### +get_supported_machine_sizes() { + echo micro small medium large xlarge 2xlarge +} + +######################## +# Convert memory size from string to amount of megabytes (i.e. 2G -> 2048) +# Globals: +# None +# Arguments: +# $1 - memory size +# Returns: +# Result of the conversion +######################### +convert_to_mb() { + local amount="${1:-}" + if [[ $amount =~ ^([0-9]+)(M|G) ]]; then + size="${BASH_REMATCH[1]}" + unit="${BASH_REMATCH[2]}" + if [[ "$unit" = "G" ]]; then + amount="$((size * 1024))" + else + amount="$size" + fi + fi + echo "$amount" +} + + ######################### # Redirects output to /dev/null if debug mode is disabled # Globals: diff --git a/bitnami/kong/2/debian-10/prebuildfs/libservice.sh b/bitnami/kong/2/debian-10/prebuildfs/libservice.sh index 0a83cd3d927f..35c0163a9ef1 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/libservice.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/libservice.sh @@ -17,7 +17,7 @@ get_pid_from_file() { if [[ -f "$pid_file" ]]; then if [[ -n "$(< "$pid_file")" ]] && [[ "$(< "$pid_file")" -gt 0 ]]; then echo "$(< "$pid_file")" - fi + fi fi } @@ -55,3 +55,61 @@ stop_service_using_pid() { counter=$((counter - 1)) done } + +######################## +# Generate a monit configuration file for a given service +# Arguments: +# $1 - Service name +# $2 - Pid file +# $3 - Start command +# $4 - Stop command +# Returns: +# None +######################### +generate_monit_conf() { + local -r service_name="${1:?service name is missing}" + local -r pid_file="${2:?pid file is missing}" + local -r start_command="${3:?start command is missing}" + local -r stop_command="${4:?stop command is missing}" + local -r monit_conf_dir="/etc/monit/conf.d" + + mkdir -p "$monit_conf_dir" + cat >"${monit_conf_dir}/${service_name}.conf" <"${logrotate_conf_dir}/${service_name}" < Date: Fri, 13 Mar 2020 14:36:52 +0000 Subject: [PATCH 315/950] 2.0.2-debian-10-r15 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- bitnami/kong/2/debian-10/prebuildfs/libos.sh | 11 ++++++----- bitnami/kong/README.md | 2 +- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 90aa51c45ab7..ce15d33dda25 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,8 +18,8 @@ RUN useradd -r -u 1001 -g root kong COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r14" \ - PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/gosu/bin:$PATH" + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r15" \ + PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/libos.sh b/bitnami/kong/2/debian-10/prebuildfs/libos.sh index 10022fb21d8d..041581ca0655 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/libos.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/libos.sh @@ -60,11 +60,12 @@ ensure_user_exists() { local group="${2:-}" if ! user_exists "$user"; then - useradd "$user" >/dev/null 2>&1 - if [[ -n "$group" ]]; then - ensure_group_exists "$group" - usermod -a -G "$group" "$user" >/dev/null 2>&1 - fi + useradd "$user" >/dev/null 2>&1 + fi + + if [[ -n "$group" ]]; then + ensure_group_exists "$group" + usermod -a -G "$group" "$user" >/dev/null 2>&1 fi } diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b92f59f863a8..9a8a822c8b29 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r14`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r14/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r15`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r15/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 3a32248ba784d411f42d5527cdcd9c9c4efd356c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 14 Mar 2020 14:45:45 +0000 Subject: [PATCH 316/950] 2.0.2-debian-10-r16 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index ce15d33dda25..3d6355c28a03 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN useradd -r -u 1001 -g root kong COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r15" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r16" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9a8a822c8b29..c50b7ac3229f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r15`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r15/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r16`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r16/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 50182df3591ba69641bff9a8e678129ea7a3d80e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 15 Mar 2020 14:51:40 +0000 Subject: [PATCH 317/950] 2.0.2-debian-10-r17 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 3d6355c28a03..010c1aa7161b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN useradd -r -u 1001 -g root kong COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r16" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r17" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c50b7ac3229f..90bf25afbd31 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r16`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r16/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r17`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r17/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From bfa29d227d6f648f4d3bbfac85d83313abdbd6ae Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 16 Mar 2020 14:57:16 +0000 Subject: [PATCH 318/950] 2.0.2-debian-10-r18 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 010c1aa7161b..e3bcaf51762e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN useradd -r -u 1001 -g root kong COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r17" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r18" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 90bf25afbd31..f4b83ee1d54e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r17`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r17/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r18`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r18/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). @@ -307,7 +307,7 @@ We'd love for you to contribute to this container. You can request new features # Issues -If you encountered a problem running this container, you can file an [issue](https://github.com/bitnami/bitnami-docker-kong/issues). For us to provide better support, be sure to include the following information in your issue: +If you encountered a problem running this container, you can file an [issue](https://github.com/bitnami/bitnami-docker-kong/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`) From 08275001c0ab17d86d02d299aac40fe2ad7b1d79 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 17 Mar 2020 15:03:35 +0000 Subject: [PATCH 319/950] 2.0.2-debian-10-r19 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index e3bcaf51762e..ced89f0ac5b7 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN useradd -r -u 1001 -g root kong COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r18" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r19" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f4b83ee1d54e..38ba67331f4e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r18`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r18/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r19`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r19/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d5dbc5b3b5e4d47e42ba57e54b261c7edc7df8fa Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 18 Mar 2020 15:11:28 +0000 Subject: [PATCH 320/950] 2.0.2-debian-10-r20 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index ced89f0ac5b7..8c0d073696a8 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN useradd -r -u 1001 -g root kong COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r19" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r20" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 38ba67331f4e..5e2d560dc80e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r19`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r19/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r20`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r20/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e205745c6aa6503eacf185a4316bc06b5553669e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 18 Mar 2020 16:26:38 +0000 Subject: [PATCH 321/950] 2.0.2-debian-10-r21 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/2/debian-10/rootfs/libkong.sh | 104 ++++++++++++++++++ bitnami/kong/2/debian-10/rootfs/postunpack.sh | 1 + bitnami/kong/2/debian-10/rootfs/setup.sh | 2 + bitnami/kong/README.md | 2 +- 5 files changed, 109 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 8c0d073696a8..1b4d13568bbf 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN useradd -r -u 1001 -g root kong COPY rootfs / RUN /postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r20" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r21" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/rootfs/libkong.sh b/bitnami/kong/2/debian-10/rootfs/libkong.sh index e93fad1818ba..9657293fd458 100644 --- a/bitnami/kong/2/debian-10/rootfs/libkong.sh +++ b/bitnami/kong/2/debian-10/rootfs/libkong.sh @@ -40,6 +40,7 @@ export KONG_SERVER_DIR="${KONG_BASE_DIR}/server" export KONG_CONF_FILE="${KONG_CONF_DIR}/kong.conf" export KONG_DEFAULT_CONF_FILE="${KONG_CONF_DIR}/kong.conf.default" +export KONG_INITSCRIPTS_DIR="/docker-entrypoint-initdb.d" # Users export KONG_DAEMON_USER="${KONG_DAEMON_USER:-kong}" @@ -249,3 +250,106 @@ kong_initialize() { done fi } + +######################## +# Return true if kong is running +# Globals: +# KONG_* +# Arguments: +# None +# Returns: +# None +######################### +is_kong_running() { + if kong health 2>&1 | grep -E "Kong is healthy" > /dev/null; then + true + else + false + fi +} + +######################## +# Return true if kong is not running +# Globals: +# KONG_* +# Arguments: +# None +# Returns: +# None +######################### +is_kong_not_running() { + ! is_kong_running +} + +######################## +# Stop any background kong instance +# Globals: +# KONG_* +# Arguments: +# None +# Returns: +# None +######################### +kong_stop() { + local -r retries=5 + local -r sleep_time=5 + kong stop + if ! retry_while is_kong_not_running "$retries" "$sleep_time"; then + error "Kong failed to shut down" + exit 1 + fi +} + +######################## +# Start kong in background +# Globals: +# KONG_* +# Arguments: +# None +# Returns: +# None +######################### +kong_start_bg() { + local -r retries=5 + local -r sleep_time=5 + info "Starting kong in background" + kong start & + if retry_while is_kong_running "$retries" "$sleep_time"; then + info "Kong started successfully in background" + fi +} + +######################## +# Run custom initialization scripts +# Globals: +# KONG_* +# Arguments: +# None +# Returns: +# None +######################### +kong_custom_init_scripts() { + if [[ -n $(find "${KONG_INITSCRIPTS_DIR}/" -type f -regex ".*\.sh") ]]; then + info "Loading user's custom files from $KONG_INITSCRIPTS_DIR ..."; + local -r tmp_file="/tmp/filelist" + kong_start_bg + find "${KONG_INITSCRIPTS_DIR}/" -type f -regex ".*\.sh" | sort > "$tmp_file" + while read -r f; do + case "$f" in + *.sh) + if [[ -x "$f" ]]; then + debug "Executing $f"; "$f" + else + debug "Sourcing $f"; . "$f" + fi + ;; + *) + debug "Ignoring $f" ;; + esac + done < $tmp_file + kong_stop + rm -f "$tmp_file" + else + info "No custom scripts in $KONG_INITSCRIPTS_DIR" + fi +} diff --git a/bitnami/kong/2/debian-10/rootfs/postunpack.sh b/bitnami/kong/2/debian-10/rootfs/postunpack.sh index f19e435173e2..e4b865845f4f 100755 --- a/bitnami/kong/2/debian-10/rootfs/postunpack.sh +++ b/bitnami/kong/2/debian-10/rootfs/postunpack.sh @@ -60,6 +60,7 @@ eval "$(kong_env)" ensure_user_exists "$KONG_DAEMON_USER" "$KONG_DAEMON_GROUP" # Ensure directories used by Kong exist and have proper permissions ensure_dir_exists "$KONG_SERVER_DIR" +ensure_dir_exists "$KONG_INITSCRIPTS_DIR" chmod -R g+rwX "$KONG_SERVER_DIR" "$KONG_CONF_DIR" # Copy configuration file and set default values cp "$KONG_DEFAULT_CONF_FILE" "$KONG_CONF_FILE" diff --git a/bitnami/kong/2/debian-10/rootfs/setup.sh b/bitnami/kong/2/debian-10/rootfs/setup.sh index 97a3f821c294..0f1f3fe8de6b 100755 --- a/bitnami/kong/2/debian-10/rootfs/setup.sh +++ b/bitnami/kong/2/debian-10/rootfs/setup.sh @@ -20,3 +20,5 @@ kong_validate am_i_root && chown -R "$KONG_DAEMON_USER":"$KONG_DAEMON_GROUP" "$KONG_SERVER_DIR" "$KONG_CONF_DIR" # Ensure Kong is initialized kong_initialize +# Allow running custom initialization scripts +kong_custom_init_scripts diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 5e2d560dc80e..e27d628f0e1e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r20`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r20/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r21`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r21/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f56144cbd289bebc837279956adb2b136f6d0874 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 19 Mar 2020 16:31:55 +0000 Subject: [PATCH 322/950] 2.0.2-debian-10-r22 release --- bitnami/kong/2/debian-10/Dockerfile | 12 ++++++------ .../2/debian-10/prebuildfs/build/install-gosu.sh | 10 ---------- .../kong/2/debian-10/prebuildfs/opt/bitnami/.exists | 0 .../{ => opt/bitnami/scripts}/libbitnami.sh | 5 +++-- .../{ => opt/bitnami/scripts}/libcomponent.sh | 0 .../prebuildfs/{ => opt/bitnami/scripts}/libfile.sh | 0 .../prebuildfs/{ => opt/bitnami/scripts}/libfs.sh | 5 +++-- .../prebuildfs/{ => opt/bitnami/scripts}/liblog.sh | 0 .../prebuildfs/{ => opt/bitnami/scripts}/libnet.sh | 4 +++- .../prebuildfs/{ => opt/bitnami/scripts}/libos.sh | 5 +++-- .../{ => opt/bitnami/scripts}/libservice.sh | 0 .../{ => opt/bitnami/scripts}/libvalidations.sh | 5 +++-- .../{ => opt/bitnami/scripts}/libversion.sh | 5 +++-- .../rootfs/{ => opt/bitnami}/licenses/licenses.txt | 0 .../{ => opt/bitnami/scripts/kong}/entrypoint.sh | 10 +++++----- .../{ => opt/bitnami/scripts/kong}/postunpack.sh | 8 ++++---- .../rootfs/{ => opt/bitnami/scripts/kong}/run.sh | 6 +++--- .../rootfs/{ => opt/bitnami/scripts/kong}/setup.sh | 4 ++-- .../rootfs/{ => opt/bitnami/scripts}/libkong.sh | 13 ++++++------- bitnami/kong/README.md | 8 ++++---- 20 files changed, 48 insertions(+), 52 deletions(-) delete mode 100755 bitnami/kong/2/debian-10/prebuildfs/build/install-gosu.sh delete mode 100644 bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.exists rename bitnami/kong/2/debian-10/prebuildfs/{ => opt/bitnami/scripts}/libbitnami.sh (94%) rename bitnami/kong/2/debian-10/prebuildfs/{ => opt/bitnami/scripts}/libcomponent.sh (100%) rename bitnami/kong/2/debian-10/prebuildfs/{ => opt/bitnami/scripts}/libfile.sh (100%) rename bitnami/kong/2/debian-10/prebuildfs/{ => opt/bitnami/scripts}/libfs.sh (97%) rename bitnami/kong/2/debian-10/prebuildfs/{ => opt/bitnami/scripts}/liblog.sh (100%) rename bitnami/kong/2/debian-10/prebuildfs/{ => opt/bitnami/scripts}/libnet.sh (97%) rename bitnami/kong/2/debian-10/prebuildfs/{ => opt/bitnami/scripts}/libos.sh (98%) rename bitnami/kong/2/debian-10/prebuildfs/{ => opt/bitnami/scripts}/libservice.sh (100%) rename bitnami/kong/2/debian-10/prebuildfs/{ => opt/bitnami/scripts}/libvalidations.sh (98%) rename bitnami/kong/2/debian-10/prebuildfs/{ => opt/bitnami/scripts}/libversion.sh (95%) rename bitnami/kong/2/debian-10/rootfs/{ => opt/bitnami}/licenses/licenses.txt (100%) rename bitnami/kong/2/debian-10/rootfs/{ => opt/bitnami/scripts/kong}/entrypoint.sh (60%) rename bitnami/kong/2/debian-10/rootfs/{ => opt/bitnami/scripts/kong}/postunpack.sh (91%) rename bitnami/kong/2/debian-10/rootfs/{ => opt/bitnami/scripts/kong}/run.sh (72%) rename bitnami/kong/2/debian-10/rootfs/{ => opt/bitnami/scripts/kong}/setup.sh (88%) rename bitnami/kong/2/debian-10/rootfs/{ => opt/bitnami/scripts}/libkong.sh (98%) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 1b4d13568bbf..e5b8fb2cda22 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,20 +9,20 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps sudo unzip zlib1g -RUN . ./libcomponent.sh && component_unpack "kong" "2.0.2-1" --checksum ea43d30d06a749965ffdc63ccede4433ea7899833a4eb74c62fed02ce3670299 -RUN . ./libcomponent.sh && component_unpack "gosu" "1.11.0-3" --checksum c18bb8bcc95aa2494793ed5a506c4d03acc82c8c60ad061d5702e0b4048f0cb1 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.2-1" --checksum ea43d30d06a749965ffdc63ccede4433ea7899833a4eb74c62fed02ce3670299 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.11.0-3" --checksum c18bb8bcc95aa2494793ed5a506c4d03acc82c8c60ad061d5702e0b4048f0cb1 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN useradd -r -u 1001 -g root kong COPY rootfs / -RUN /postunpack.sh +RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r21" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r22" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 USER 1001 -ENTRYPOINT [ "/entrypoint.sh" ] -CMD [ "/run.sh" ] +ENTRYPOINT [ "/opt/bitnami/scripts/kong/entrypoint.sh" ] +CMD [ "/opt/bitnami/scripts/kong/run.sh" ] diff --git a/bitnami/kong/2/debian-10/prebuildfs/build/install-gosu.sh b/bitnami/kong/2/debian-10/prebuildfs/build/install-gosu.sh deleted file mode 100755 index 1756700daa89..000000000000 --- a/bitnami/kong/2/debian-10/prebuildfs/build/install-gosu.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash - -VERSION="1.11" -SHA256="0b843df6d86e270c5b0f5cbd3c326a04e18f4b7f9b8457fa497b0454c4b138d7" - -curl --silent -L "https://github.com/tianon/gosu/releases/download/${VERSION}/gosu-amd64" > "/usr/local/bin/gosu" -echo "$SHA256" "/usr/local/bin/gosu" | sha256sum --check -chmod u+x "/usr/local/bin/gosu" -mkdir -p "/opt/bitnami/licenses" -curl --silent -L "https://raw.githubusercontent.com/tianon/gosu/master/LICENSE" > "/opt/bitnami/licenses/gosu-${VERSION}.txt" diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.exists b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.exists deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/bitnami/kong/2/debian-10/prebuildfs/libbitnami.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libbitnami.sh similarity index 94% rename from bitnami/kong/2/debian-10/prebuildfs/libbitnami.sh rename to bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libbitnami.sh index ec789d8227eb..2160b50559cf 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/libbitnami.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libbitnami.sh @@ -1,10 +1,11 @@ #!/bin/bash -# shellcheck disable=SC1090 # # Bitnami custom library +# shellcheck disable=SC1091 + # Load Generic Libraries -. "${BITNAMI_SCRIPTS_DIR:-}"/liblog.sh +. /opt/bitnami/scripts/liblog.sh # Constants BOLD='\033[1m' diff --git a/bitnami/kong/2/debian-10/prebuildfs/libcomponent.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libcomponent.sh similarity index 100% rename from bitnami/kong/2/debian-10/prebuildfs/libcomponent.sh rename to bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libcomponent.sh diff --git a/bitnami/kong/2/debian-10/prebuildfs/libfile.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfile.sh similarity index 100% rename from bitnami/kong/2/debian-10/prebuildfs/libfile.sh rename to bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfile.sh diff --git a/bitnami/kong/2/debian-10/prebuildfs/libfs.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh similarity index 97% rename from bitnami/kong/2/debian-10/prebuildfs/libfs.sh rename to bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh index 1a1fc5522dec..fac947bc44f2 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/libfs.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh @@ -1,10 +1,11 @@ #!/bin/bash -# shellcheck disable=SC1090 # # Library for file system actions +# shellcheck disable=SC1091 + # Load Generic Libraries -. "${BITNAMI_SCRIPTS_DIR:-}"/liblog.sh +. /opt/bitnami/scripts/liblog.sh # Functions diff --git a/bitnami/kong/2/debian-10/prebuildfs/liblog.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/liblog.sh similarity index 100% rename from bitnami/kong/2/debian-10/prebuildfs/liblog.sh rename to bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/liblog.sh diff --git a/bitnami/kong/2/debian-10/prebuildfs/libnet.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libnet.sh similarity index 97% rename from bitnami/kong/2/debian-10/prebuildfs/libnet.sh rename to bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libnet.sh index 96e491e5a9db..e3145b134ece 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/libnet.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libnet.sh @@ -2,8 +2,10 @@ # # Library for network functions +# shellcheck disable=SC1091 + # Load Generic Libraries -. /liblog.sh +. /opt/bitnami/scripts/liblog.sh # Functions diff --git a/bitnami/kong/2/debian-10/prebuildfs/libos.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh similarity index 98% rename from bitnami/kong/2/debian-10/prebuildfs/libos.sh rename to bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh index 041581ca0655..b6fc10db1518 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/libos.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh @@ -1,10 +1,11 @@ #!/bin/bash -# shellcheck disable=SC1090 # # Library for operating system actions +# shellcheck disable=SC1091 + # Load Generic Libraries -. "${BITNAMI_SCRIPTS_DIR:-}"/liblog.sh +. /opt/bitnami/scripts/liblog.sh # Functions diff --git a/bitnami/kong/2/debian-10/prebuildfs/libservice.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh similarity index 100% rename from bitnami/kong/2/debian-10/prebuildfs/libservice.sh rename to bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh diff --git a/bitnami/kong/2/debian-10/prebuildfs/libvalidations.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libvalidations.sh similarity index 98% rename from bitnami/kong/2/debian-10/prebuildfs/libvalidations.sh rename to bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libvalidations.sh index 63c3d5ff1974..8d827924afe4 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/libvalidations.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libvalidations.sh @@ -1,10 +1,11 @@ #!/bin/bash -# shellcheck disable=SC1090 # # Validation functions library +# shellcheck disable=SC1091 + # Load Generic Libraries -. "${BITNAMI_SCRIPTS_DIR:-}"/liblog.sh +. /opt/bitnami/scripts/liblog.sh # Functions diff --git a/bitnami/kong/2/debian-10/prebuildfs/libversion.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libversion.sh similarity index 95% rename from bitnami/kong/2/debian-10/prebuildfs/libversion.sh rename to bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libversion.sh index 6836372e0b55..66d4f457bdd2 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/libversion.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libversion.sh @@ -1,10 +1,11 @@ #!/bin/bash -# shellcheck disable=SC1090 # # Library for managing versions strings +# shellcheck disable=SC1091 + # Load Generic Libraries -. "${BITNAMI_SCRIPTS_DIR:-}"/liblog.sh +. /opt/bitnami/scripts/liblog.sh # Functions ######################## diff --git a/bitnami/kong/2/debian-10/rootfs/licenses/licenses.txt b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/licenses/licenses.txt similarity index 100% rename from bitnami/kong/2/debian-10/rootfs/licenses/licenses.txt rename to bitnami/kong/2/debian-10/rootfs/opt/bitnami/licenses/licenses.txt diff --git a/bitnami/kong/2/debian-10/rootfs/entrypoint.sh b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/entrypoint.sh similarity index 60% rename from bitnami/kong/2/debian-10/rootfs/entrypoint.sh rename to bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/entrypoint.sh index a6f9da9603c8..ce0a5d7a669c 100755 --- a/bitnami/kong/2/debian-10/rootfs/entrypoint.sh +++ b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/entrypoint.sh @@ -8,17 +8,17 @@ set -o pipefail #set -o xtrace # Uncomment this line for debugging purpose # Load libraries -. /libbitnami.sh -. /liblog.sh -. /libkong.sh +. /opt/bitnami/scripts/libbitnami.sh +. /opt/bitnami/scripts/liblog.sh +. /opt/bitnami/scripts/libkong.sh eval "$(kong_env)" print_welcome_page -if [[ "$*" = *"/run.sh"* ]]; then +if [[ "$*" = *"/opt/bitnami/scripts/kong/run.sh"* ]]; then info "** Starting Kong setup **" - /setup.sh + /opt/bitnami/scripts/kong/setup.sh info "** Kong setup finished! **" fi diff --git a/bitnami/kong/2/debian-10/rootfs/postunpack.sh b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/postunpack.sh similarity index 91% rename from bitnami/kong/2/debian-10/rootfs/postunpack.sh rename to bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/postunpack.sh index e4b865845f4f..8b0917d699d1 100755 --- a/bitnami/kong/2/debian-10/rootfs/postunpack.sh +++ b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/postunpack.sh @@ -7,9 +7,9 @@ set -o nounset set -o pipefail # set -o xtrace # Uncomment this line for debugging purpose -. /libfs.sh -. /libos.sh -. /libkong.sh +. /opt/bitnami/scripts/libfs.sh +. /opt/bitnami/scripts/libos.sh +. /opt/bitnami/scripts/libkong.sh # Auxiliar functions @@ -35,7 +35,7 @@ kong_conf_set() { else debug "Adding new entry for property '${key}' in configuration file" # Add a new key - printf '%s = %s\n' "$key" "$value" >>"$KONG_CONF_FILE" + printf '/opt/bitnami/scripts/kong = %s\n' "$key" "$value" >>"$KONG_CONF_FILE" fi } diff --git a/bitnami/kong/2/debian-10/rootfs/run.sh b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/run.sh similarity index 72% rename from bitnami/kong/2/debian-10/rootfs/run.sh rename to bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/run.sh index e1a409e62410..9f82d7d13273 100755 --- a/bitnami/kong/2/debian-10/rootfs/run.sh +++ b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/run.sh @@ -8,9 +8,9 @@ set -o pipefail # set -o xtrace # Uncomment this line for debugging purpose # Load libraries -. /liblog.sh -. /libos.sh -. /libkong.sh +. /opt/bitnami/scripts/liblog.sh +. /opt/bitnami/scripts/libos.sh +. /opt/bitnami/scripts/libkong.sh # Load Kong environment variables eval "$(kong_env)" diff --git a/bitnami/kong/2/debian-10/rootfs/setup.sh b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/setup.sh similarity index 88% rename from bitnami/kong/2/debian-10/rootfs/setup.sh rename to bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/setup.sh index 0f1f3fe8de6b..a213410dc0de 100755 --- a/bitnami/kong/2/debian-10/rootfs/setup.sh +++ b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/setup.sh @@ -8,8 +8,8 @@ set -o pipefail # set -o xtrace # Uncomment this line for debugging purpose # Load libraries -. /libos.sh -. /libkong.sh +. /opt/bitnami/scripts/libos.sh +. /opt/bitnami/scripts/libkong.sh # Load Kong environment variables eval "$(kong_env)" diff --git a/bitnami/kong/2/debian-10/rootfs/libkong.sh b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/libkong.sh similarity index 98% rename from bitnami/kong/2/debian-10/rootfs/libkong.sh rename to bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/libkong.sh index 9657293fd458..acf698a68598 100644 --- a/bitnami/kong/2/debian-10/rootfs/libkong.sh +++ b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/libkong.sh @@ -2,16 +2,15 @@ # # Bitnami Kong library -# shellcheck disable=SC1090 # shellcheck disable=SC1091 # Load generic libraries -. /libfs.sh -. /liblog.sh -. /libnet.sh -. /libos.sh -. /libservice.sh -. /libvalidations.sh +. /opt/bitnami/scripts/libfs.sh +. /opt/bitnami/scripts/liblog.sh +. /opt/bitnami/scripts/libnet.sh +. /opt/bitnami/scripts/libos.sh +. /opt/bitnami/scripts/libservice.sh +. /opt/bitnami/scripts/libvalidations.sh ######################## # Load global variables used for Kong configuration. diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e27d628f0e1e..cb2e87fcfab8 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r21`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r21/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r22`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r22/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). @@ -171,14 +171,14 @@ ENV ... # Install required system packages and dependencies RUN install_packages xxx yyy zzz -RUN . ./libcomponent.sh && component_unpack && component_unpack "kong" "aa.bb.cc-dd" +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack && component_unpack "kong" "aa.bb.cc-dd" COPY rootfs / ENV ... EXPOSE 8080 8443 -ENTRYPOINT [ "/entrypoint.sh" ] -CMD [ "/run.sh" ] +ENTRYPOINT [ "/opt/bitnami/scripts/entrypoint.sh" ] +CMD [ "/opt/bitnami/scripts/run.sh" ] ``` The Dockerfile has several sections related to: From 84840b123dbd3b5461cfeb0c8d9b6f67a7b70923 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 20 Mar 2020 16:50:18 +0000 Subject: [PATCH 323/950] 2.0.2-debian-10-r23 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../opt/bitnami/licenses/licenses.txt | 0 .../debian-10/rootfs/opt/bitnami/scripts/kong/run.sh | 11 +++++++---- .../2/debian-10/rootfs/opt/bitnami/scripts/libkong.sh | 1 + bitnami/kong/README.md | 3 ++- 5 files changed, 11 insertions(+), 6 deletions(-) rename bitnami/kong/2/debian-10/{rootfs => prebuildfs}/opt/bitnami/licenses/licenses.txt (100%) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index e5b8fb2cda22..71f4e5b0093b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN useradd -r -u 1001 -g root kong COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r22" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r23" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/licenses/licenses.txt b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/licenses/licenses.txt similarity index 100% rename from bitnami/kong/2/debian-10/rootfs/opt/bitnami/licenses/licenses.txt rename to bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/licenses/licenses.txt diff --git a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/run.sh b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/run.sh index 9f82d7d13273..b56d29c9cba4 100755 --- a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/run.sh +++ b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/run.sh @@ -14,7 +14,10 @@ set -o pipefail # Load Kong environment variables eval "$(kong_env)" - -info "** Starting Kong **" - -exec kong start +if is_boolean_yes "$KONG_EXIT_AFTER_MIGRATE"; then + info "** Container configured to just perform the database migration (KONG_EXIT_AFTER_DATABASE=yes). Exiting now **" + exit 0 +else + info "** Starting Kong **" + exec kong start +fi diff --git a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/libkong.sh b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/libkong.sh index acf698a68598..e95b3e6c8278 100644 --- a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/libkong.sh +++ b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/libkong.sh @@ -47,6 +47,7 @@ export KONG_DAEMON_GROUP="${KONG_DAEMON_GROUP:-kong}" # Cluster settings export KONG_MIGRATE="${KONG_MIGRATE:-no}" +export KONG_EXIT_AFTER_MIGRATE="${KONG_EXIT_AFTER_MIGRATE:-no}" # Port and service bind configurations for KONG_PROXY_LISTEN and KONG_ADMIN_LISTEN # By setting these separately, we are consistent with other Bitnami solutions diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index cb2e87fcfab8..d95dec8df156 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r22`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r22/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r23`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r23/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). @@ -112,6 +112,7 @@ The Bitnami Docker Kong can be easily setup with the following environment varia - `KONG_ADMIN_HTTP_PORT_NUMBER`: The port Kong Admin is listening for HTTP requests. Default: **8001** - `KONG_ADMIN_HTTPS_PORT_NUMBER`: The port Kong Admin is listening for HTTPS requests. Default: **8444** - `KONG_MIGRATE`: Whether to automatically run Kong migration scripts on this node. In a cluster, only one node should have this flag enabled. Default: **no** +- `KONG_EXIT_AFTER_MIGRATE`: Whether to exit after performing the migration (it will not launch the Kong daemon). This is useful using the container in Jobs and Cron Jobs. Default: **no** This container also supports configuring Kong via environment values starting with `KONG_`. For instance, by setting the `KONG_LOG_LEVEL` environment variable, Kong will take into account this value rather than the property set in `kong.conf`. It is recommended to set the following environment variables: From 7ff5f597b5816125cf1fe75b4b92b6eca2da2939 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 21 Mar 2020 16:58:55 +0000 Subject: [PATCH 324/950] 2.0.2-debian-10-r24 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/run.sh | 2 +- bitnami/kong/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 71f4e5b0093b..5bc728d2eb69 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN useradd -r -u 1001 -g root kong COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r23" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r24" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/run.sh b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/run.sh index b56d29c9cba4..df28471525cf 100755 --- a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/run.sh +++ b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/run.sh @@ -15,7 +15,7 @@ set -o pipefail # Load Kong environment variables eval "$(kong_env)" if is_boolean_yes "$KONG_EXIT_AFTER_MIGRATE"; then - info "** Container configured to just perform the database migration (KONG_EXIT_AFTER_DATABASE=yes). Exiting now **" + info "** Container configured to just perform the database migration (KONG_EXIT_AFTER_MIGRATE=yes). Exiting now **" exit 0 else info "** Starting Kong **" diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d95dec8df156..40b59d2051ba 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r23`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r23/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r24`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r24/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f6031af366d3caf89bebd52bce75070be030d5aa Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 22 Mar 2020 17:06:01 +0000 Subject: [PATCH 325/950] 2.0.2-debian-10-r25 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 5bc728d2eb69..882a49855c76 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN useradd -r -u 1001 -g root kong COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r24" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r25" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 40b59d2051ba..2984ff5b6536 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r24`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r24/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r25`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r25/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 6fd0e918371e3bbffb67fc96bc60b31cb3b2f009 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 23 Mar 2020 17:15:24 +0000 Subject: [PATCH 326/950] 2.0.2-debian-10-r26 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 882a49855c76..ce9c122bb763 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -1,4 +1,4 @@ -FROM bitnami/minideb:buster +FROM docker.io/bitnami/minideb:buster LABEL maintainer "Bitnami " ENV HOME="/" \ @@ -18,7 +18,7 @@ RUN useradd -r -u 1001 -g root kong COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r25" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r26" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2984ff5b6536..71c5a7e7d49f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r25`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r25/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r26`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r26/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 98e4337156f6b2b2fbc9a58060dd0372f3ad7856 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 24 Mar 2020 17:53:23 +0000 Subject: [PATCH 327/950] 2.0.2-debian-10-r27 release --- bitnami/kong/2/debian-10/Dockerfile | 3 +-- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index ce9c122bb763..dd38575320ab 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -13,12 +13,11 @@ RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.2-1" RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.11.0-3" --checksum c18bb8bcc95aa2494793ed5a506c4d03acc82c8c60ad061d5702e0b4048f0cb1 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives -RUN useradd -r -u 1001 -g root kong COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r26" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r27" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 71c5a7e7d49f..e60b5c6c1e1f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r26`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r26/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r27`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r27/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 1d6b0ba3af8c6adf9dbccc354da0d383fc6a3db5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 25 Mar 2020 19:27:32 +0000 Subject: [PATCH 328/950] 2.0.2-debian-10-r28 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index dd38575320ab..5ae2255359e0 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r27" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r28" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e60b5c6c1e1f..8c4d77aab983 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r27`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r27/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r28`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r28/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9fa6831b9bf6d16425510a2ea9e72f7979c4b916 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 26 Mar 2020 19:38:39 +0000 Subject: [PATCH 329/950] 2.0.2-debian-10-r29 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 5ae2255359e0..991f93ed41af 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r28" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r29" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 8c4d77aab983..5f6be7f28e0a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r28`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r28/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r29`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r29/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From fede0049c5491116a96d8f360e0f142ac04cfaa4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 27 Mar 2020 20:47:59 +0000 Subject: [PATCH 330/950] 2.0.2-debian-10-r31 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 991f93ed41af..4097a3765d8f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r29" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r31" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 5f6be7f28e0a..6d11622ed0be 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r29`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r29/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r31`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r31/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 2601f2a0d67d1a6208ee041987906a16b560b689 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 28 Mar 2020 20:57:28 +0000 Subject: [PATCH 331/950] 2.0.2-debian-10-r32 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 4097a3765d8f..899f56269a62 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r31" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r32" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 6d11622ed0be..364a0e1644d2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r31`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r31/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r32`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r32/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 906617231613c1382ca6ca8b6d4e55331d2a9414 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 29 Mar 2020 21:05:26 +0000 Subject: [PATCH 332/950] 2.0.2-debian-10-r33 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 899f56269a62..0f5f957e9f32 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r32" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r33" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 364a0e1644d2..2d7ba71abc49 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r32`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r32/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r33`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r33/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 81c1a7156e2ccb5bf26e0da306e54327cbc077f6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 30 Mar 2020 21:20:23 +0000 Subject: [PATCH 333/950] 2.0.2-debian-10-r34 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0f5f957e9f32..3ab269b360d2 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r33" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r34" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2d7ba71abc49..d4b8a0816102 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r33`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r33/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r34`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r34/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From a2ac768c3d00f55beb29b615c0761ad65098b0a6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 31 Mar 2020 15:25:15 +0000 Subject: [PATCH 334/950] 2.0.2-debian-10-r35 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 3ab269b360d2..37d603339d83 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps sudo unzip zlib1g -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.2-1" --checksum ea43d30d06a749965ffdc63ccede4433ea7899833a4eb74c62fed02ce3670299 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.2-2" --checksum bf6f3d80a402a643256109cc6257ecc98fe11e82a668901db957ab86fcbcfbd7 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.11.0-3" --checksum c18bb8bcc95aa2494793ed5a506c4d03acc82c8c60ad061d5702e0b4048f0cb1 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r34" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r35" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d4b8a0816102..6f9246b25bce 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r34`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r34/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r35`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r35/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d44ac4222556d73245cd4b0cde56f7014980e432 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 1 Apr 2020 17:29:45 +0000 Subject: [PATCH 335/950] 2.0.2-debian-10-r36 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 37d603339d83..57eaaf2bceaf 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r35" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r36" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 6f9246b25bce..3e5013f803a2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r35`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r35/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r36`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r36/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c66bb4e874f162dd29774ee4efa3d7ddc0fe7b66 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 1 Apr 2020 23:00:21 +0000 Subject: [PATCH 336/950] 2.0.2-debian-10-r37 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 57eaaf2bceaf..041235164fba 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r36" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r37" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 3e5013f803a2..d92c8ef30ddd 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r36`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r36/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r37`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r37/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 74b37e654d038db760d92d0fe215139fed64724a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 2 Apr 2020 23:07:34 +0000 Subject: [PATCH 337/950] 2.0.2-debian-10-r38 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 041235164fba..59df81c63a97 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r37" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r38" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d92c8ef30ddd..a2ff3258238c 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r37`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r37/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r38`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r38/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 37aaea9922708ebe7665604dbd81cf94a6e68abc Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 3 Apr 2020 23:14:09 +0000 Subject: [PATCH 338/950] 2.0.2-debian-10-r39 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 59df81c63a97..10baec02ea86 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r38" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r39" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a2ff3258238c..2aac682d5301 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r38`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r38/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r39`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r39/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 30dc0326c2a3d71e3d899177f5f3ec78557abbef Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 4 Apr 2020 23:21:31 +0000 Subject: [PATCH 339/950] 2.0.2-debian-10-r40 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 10baec02ea86..6c7a0af9828d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r39" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r40" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2aac682d5301..d90e7056862a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r39`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r39/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r40`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r40/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 1322ffe79cdc92982c4fda4b3456191000923f10 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 5 Apr 2020 23:29:45 +0000 Subject: [PATCH 340/950] 2.0.2-debian-10-r41 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 6c7a0af9828d..127c8aca6769 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r40" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r41" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d90e7056862a..f2b56f1a149f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r40`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r40/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r41`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r41/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 17e6f69dcb6919b5b45f34d52638960afeb1e907 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 6 Apr 2020 23:37:15 +0000 Subject: [PATCH 341/950] 2.0.2-debian-10-r42 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 127c8aca6769..274c7579bad2 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r41" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r42" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f2b56f1a149f..869e9e594e40 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r41`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r41/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r42`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r42/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 804df082a31395e3fb125875e32eaa2b7d264f2b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 7 Apr 2020 23:45:06 +0000 Subject: [PATCH 342/950] 2.0.2-debian-10-r43 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 274c7579bad2..e51832af0f88 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r42" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r43" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 869e9e594e40..72dcde421ef8 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r42`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r42/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r43`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r43/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ad80f729151f987686ad70ea96cd4f791ce668fb Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 8 Apr 2020 23:55:28 +0000 Subject: [PATCH 343/950] 2.0.2-debian-10-r44 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index e51832af0f88..c433b844ebed 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r43" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r44" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 72dcde421ef8..06bf291ee017 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r43`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r43/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r44`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r44/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e36689b4332ec8c07207e5dd40cb510e3cc280a1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 10 Apr 2020 00:05:22 +0000 Subject: [PATCH 344/950] 2.0.2-debian-10-r45 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../prebuildfs/opt/bitnami/scripts/libnet.sh | 25 +++++++++++++++++++ bitnami/kong/README.md | 2 +- 3 files changed, 27 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c433b844ebed..ec2a9951f0ce 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r44" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r45" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libnet.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libnet.sh index e3145b134ece..6cb749858648 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libnet.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libnet.sh @@ -21,6 +21,31 @@ dns_lookup() { getent ahosts "$host" | awk '/STREAM/ {print $1 }' } +######################### +## Wait for a hostname and return the IP +# Arguments: +# $1 - hostname +# $2 - number of retries +# $3 - seconds to wait between retries +# Returns: +# - IP address that corresponds to the hostname +######################### +wait_for_dns_lookup() { + local hostname="${1:?hostname is missing}" + local retries="${2:-5}" + local seconds="${3:-1}" + check_host() { + if [[ $(dns_lookup "$hostname") == "" ]]; then + false + else + true + fi + } + # Wait 10 minutes for the host to be ready + retry_while "check_host ${hostname}" "$retries" "$seconds" + dns_lookup "$hostname" +} + ######################## # Get machine's IP # Arguments: diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 06bf291ee017..f17808783a42 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r44`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r44/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r45`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r45/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 58978acfd07328782af040c2cad039332be5b0b8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 11 Apr 2020 00:44:37 +0000 Subject: [PATCH 345/950] 2.0.2-debian-10-r46 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index ec2a9951f0ce..03a8aa65357a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r45" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r46" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f17808783a42..516829957a1b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r45`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r45/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r46`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r46/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From eef71add503415c6c32b178898db6e1a8d80b694 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 12 Apr 2020 00:50:33 +0000 Subject: [PATCH 346/950] 2.0.2-debian-10-r47 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 03a8aa65357a..b99c6b78a152 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r46" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r47" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 516829957a1b..b0c8099007dc 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r46`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r46/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r47`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r47/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 08eb9d497a445f3116a713203897370019aa3ad2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 13 Apr 2020 00:59:03 +0000 Subject: [PATCH 347/950] 2.0.2-debian-10-r48 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index b99c6b78a152..c5d52cd1a097 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r47" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r48" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b0c8099007dc..fa300bb29b95 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r47`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r47/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r48`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r48/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9ed420e2753b776183afbb63cbfe23358db50117 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 13 Apr 2020 16:56:18 +0000 Subject: [PATCH 348/950] 2.0.2-debian-10-r49 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 28 ++++++++++++++-------------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c5d52cd1a097..3a1794b17911 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r48" \ + BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r49" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index fa300bb29b95..243e176f7ddf 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -12,7 +12,7 @@ $ docker run --name kong bitnami/kong:latest ## Docker Compose -```bash +```console $ curl -sSL https://raw.githubusercontent.com/bitnami/bitnami-docker-kong/master/docker-compose.yml > docker-compose.yml $ docker-compose up -d ``` @@ -32,7 +32,7 @@ $ docker-compose up -d You can find an example for testing Kong in Kubernetes with the `test.yaml` file. To launch it, run the command: -```bash +```console $ kubectl apply -f test.yaml ``` @@ -51,7 +51,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r48`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r48/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.2-debian-10-r49`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r49/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). @@ -59,19 +59,19 @@ Subscribe to project updates by watching the [bitnami/kong GitHub repo](https:// The recommended way to get the Bitnami Kong Docker Image is to pull the prebuilt image from the [Docker Hub Registry](https://hub.docker.com/r/bitnami/kong). -```bash +```console $ docker pull bitnami/kong:latest ``` To use a specific version, you can pull a versioned tag. You can view the [list of available versions](https://hub.docker.com/r/bitnami/kong/tags/) in the Docker Hub Registry. -```bash +```console $ docker pull bitnami/kong:[TAG] ``` If you wish, you can also build the image yourself. -```bash +```console $ docker build -t bitnami/kong:latest 'https://github.com/bitnami/bitnami-docker-kong.git#master:2/debian-10' ``` @@ -85,7 +85,7 @@ Containers attached to the same network can communicate with each other using th ### Step 1: Create a network -```bash +```console $ docker network create kong-network --driver bridge ``` @@ -93,7 +93,7 @@ $ docker network create kong-network --driver bridge Use the `--network ` argument to the `docker run` command to attach the container to the `kong-network` network. -```bash +```console $ docker run --name kong-node1 --network kong-network bitnami/kong:latest ``` @@ -126,7 +126,7 @@ Check the official [Kong Configuration Reference](https://docs.konghq.com/latest The image looks for Kong the configuration file in `/opt/bitnami/kong/conf/kong.conf`, which you can overwrite using your own custom configuration file. -```bash +```console $ docker run --name kong \ -e KONG_DATABASE=off \ -v /path/to/kong.conf:/opt/bitnami/kong/conf/kong.conf \ @@ -155,7 +155,7 @@ services: The Bitnami Kong Docker image sends the container logs to `stdout`. To view the logs: -```bash +```console $ docker logs kong ``` @@ -276,7 +276,7 @@ Bitnami provides up-to-date versions of Kong, including security patches, soon a ### Step 1: Get the updated image -```bash +```console $ docker pull bitnami/kong:latest ``` @@ -284,13 +284,13 @@ $ docker pull bitnami/kong:latest Stop the currently running container using the command -```bash +```console $ docker stop kong ``` ### Step 3: Remove the currently running container -```bash +```console $ docker rm -v kong ``` @@ -298,7 +298,7 @@ $ docker rm -v kong Re-create your container from the new image. -```bash +```console $ docker run --name kong bitnami/kong:latest ``` From e579e08de96356c4a06005cc9987179b3cc3cd3c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 14 Apr 2020 15:39:35 +0000 Subject: [PATCH 349/950] 2.0.3-debian-10-r0 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- bitnami/kong/README.md | 4 +--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 3a1794b17911..727be5820556 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps sudo unzip zlib1g -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.2-2" --checksum bf6f3d80a402a643256109cc6257ecc98fe11e82a668901db957ab86fcbcfbd7 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.3-0" --checksum bc3ee3cecff31386a2e778e29a74ff2259ef4c3da3f62a811fffd0a75caf4276 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.11.0-3" --checksum c18bb8bcc95aa2494793ed5a506c4d03acc82c8c60ad061d5702e0b4048f0cb1 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.2-debian-10-r49" \ + BITNAMI_IMAGE_VERSION="2.0.3-debian-10-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 243e176f7ddf..7dec74501e5d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -46,12 +46,10 @@ Non-root container images add an extra layer of security and are generally recom # Supported tags and respective `Dockerfile` links -> NOTE: Debian 9 and Oracle Linux 7 images have been deprecated in favor of Debian 10 images. Bitnami will not longer publish new Docker images based on Debian 9 or Oracle Linux 7. - Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.2-debian-10-r49`, `2`, `2.0.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.2-debian-10-r49/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.3-debian-10-r0`, `2`, `2.0.3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.3-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 337af5951e840d17fa89c6ec6f162414e2c0b718 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 15 Apr 2020 07:54:05 +0000 Subject: [PATCH 350/950] 2.0.3-debian-10-r1 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 727be5820556..73eb53fbc7b3 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.3-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.0.3-debian-10-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7dec74501e5d..743c514abbab 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -49,7 +49,7 @@ 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/containers/how-to/understand-rolling-tags-containers/). -* [`2-debian-10`, `2.0.3-debian-10-r0`, `2`, `2.0.3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.3-debian-10-r0/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.3-debian-10-r1`, `2`, `2.0.3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.3-debian-10-r1/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 91696c4bd2e09f3f05026abbd1585fab4db754a3 Mon Sep 17 00:00:00 2001 From: tompizmor Date: Fri, 17 Apr 2020 13:49:12 +0200 Subject: [PATCH 351/950] Delete unmaintained test.yaml file --- bitnami/kong/test.yaml | 109 ----------------------------------------- 1 file changed, 109 deletions(-) delete mode 100644 bitnami/kong/test.yaml diff --git a/bitnami/kong/test.yaml b/bitnami/kong/test.yaml deleted file mode 100644 index 1ff8f8e99c0f..000000000000 --- a/bitnami/kong/test.yaml +++ /dev/null @@ -1,109 +0,0 @@ -## This is test deployment for Kubernetes platforms. -## This is _not_ intended to be used in production. -## -apiVersion: apps/v1 -kind: Deployment -metadata: - labels: - app.kubernetes.io/name: test-postgresql - app.kubernetes.io/component: test-postgresql -spec: - replicas: 1 - selector: - matchLabels: - app.kubernetes.io/name: test-postgresql - app.kubernetes.io/component: postgresql - template: - metadata: - labels: - app.kubernetes.io/name: test-postgresql - app.kubernetes.io/component: postgresql - spec: - containers: - - image: bitnami/postgresql - name: test-postgresql - env: - - name: POSTGRESQL_USERNAME - value: kong - - name: POSTGRESQL_PASSWORD - value: bitnami - - name: POSTGRESQL_DATABASE - value: kong - posts: - - name: postgresql - containerPort: 5432 - protocol: TCP ---- -apiVersion: apps/v1 -kind: Deployment -metadata: - labels: - app.kubernetes.io/name: test-kong - app.kubernetes.io/component: kong -spec: - replicas: 1 - selector: - matchLabels: - app.kubernetes.io/name: test-kong - app.kubernetes.io/component: kong - template: - metadata: - labels: - app.kubernetes.io/name: test-kong - app.kubernetes.io/component: kong - spec: - containers: - - image: bitnami/kong - name: kong - env: - - name: KONG_MIGRATE - value: yes - - name: KONG_PG_HOST - value: postgresql - - name: KONG_PG_PASSWORD - value: bitnami - ports: - - name: kong-proxy - containerPort: 8000 - protocol: TCP - - name: kong-proxy-ssl - containerPort: 8000 - protocol: TCP ---- -apiVersion: v1 -kind: Service -metadata: - name: test-postgresql - labels: - app.kubernetes.io/name: test-postgresql - app.kubernetes.io/component: postgresql -spec: - type: ClusterIP - ports: - - port: 5432 - protocol: TCP - targetPort: postgresql - selector: - app.kubernetes.io/name: test-postgresql - app.kubernetes.io/component: postgresql - ---- -apiVersion: v1 -kind: Service -metadata: - name: test-kong - labels: - app.kubernetes.io/name: test-kong - app.kubernetes.io/component: kong -spec: - type: ClusterIP - ports: - - port: 8000 - protocol: TCP - targetPort: kong-proxy - - port: 8443 - protocol: TCP - targetPort: kong-proxy-ssl - selector: - app.kubernetes.io/name: test-kong - app.kubernetes.io/component: kong From a28058bbce26a5984288e9f1f63b3bcefdc10074 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 21 Apr 2020 12:21:48 +0000 Subject: [PATCH 352/950] 2.0.3-debian-10-r2 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- bitnami/kong/README.md | 18 +++--------------- 2 files changed, 5 insertions(+), 17 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 73eb53fbc7b3..196a91b65dbe 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -10,14 +10,14 @@ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps sudo unzip zlib1g RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.3-0" --checksum bc3ee3cecff31386a2e778e29a74ff2259ef4c3da3f62a811fffd0a75caf4276 -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.11.0-3" --checksum c18bb8bcc95aa2494793ed5a506c4d03acc82c8c60ad061d5702e0b4048f0cb1 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-0" --checksum 582d501eeb6b338a24f417fededbf14295903d6be55c52d66c52e616c81bcd8c RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.3-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.0.3-debian-10-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 743c514abbab..251f1983c898 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -28,28 +28,16 @@ $ docker-compose up -d > This [CVE scan report](https://quay.io/repository/bitnami/kong?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. -# How to deploy Kong in Kubernetes? - -You can find an example for testing Kong in Kubernetes with the `test.yaml` file. To launch it, run the command: - -```console -$ kubectl apply -f test.yaml -``` - -> NOTE: If you are pulling from a private container registry, replace the image name with the full URL to the docker image, e.g.: -> -> - image: 'your-registry/image-name:your-version' - # Why use a non-root container? -Non-root container images add an extra layer of security and are generally recommended for production environments. However, because they run as a non-root user, privileged tasks are typically off-limits. Learn more about non-root containers [in our docs](https://docs.bitnami.com/containers/how-to/work-with-non-root-containers/). +Non-root container images add an extra layer of security and are generally recommended for production environments. However, because they run as a non-root user, privileged tasks are typically off-limits. Learn more about non-root containers [in our docs](https://docs.bitnami.com/tutorials/work-with-non-root-containers/). # 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/containers/how-to/understand-rolling-tags-containers/). +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/). -* [`2-debian-10`, `2.0.3-debian-10-r1`, `2`, `2.0.3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.3-debian-10-r1/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.3-debian-10-r2`, `2`, `2.0.3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.3-debian-10-r2/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From a9eaf7b1e358cbd1a57b6fe999faa6a59842563c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 21 Apr 2020 18:28:02 +0000 Subject: [PATCH 353/950] 2.0.3-debian-10-r3 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 196a91b65dbe..0b6ee513b20b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.3-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.0.3-debian-10-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 251f1983c898..fa301a1b453e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.3-debian-10-r2`, `2`, `2.0.3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.3-debian-10-r2/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.3-debian-10-r3`, `2`, `2.0.3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.3-debian-10-r3/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8c2a46056b02e3f4a8fcbb0698ede5b7eb374ca9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 21 Apr 2020 22:43:11 +0000 Subject: [PATCH 354/950] 2.0.3-debian-10-r4 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0b6ee513b20b..621a4e5566d6 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.3-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="2.0.3-debian-10-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index fa301a1b453e..cc6e5edbdf37 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.3-debian-10-r3`, `2`, `2.0.3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.3-debian-10-r3/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.3-debian-10-r4`, `2`, `2.0.3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.3-debian-10-r4/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From daea85759f624963294e749738aeee1c3d679a49 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 22 Apr 2020 02:35:12 +0000 Subject: [PATCH 355/950] 2.0.3-debian-10-r5 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 621a4e5566d6..0880376f4d1c 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps sudo unzip zlib1g -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.3-0" --checksum bc3ee3cecff31386a2e778e29a74ff2259ef4c3da3f62a811fffd0a75caf4276 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.3-1" --checksum c559bf2c61a1d3a52aee78c1501eef3b8d5ef17690e2bdee1c1bce9e50f8ee8e RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-0" --checksum 582d501eeb6b338a24f417fededbf14295903d6be55c52d66c52e616c81bcd8c RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.3-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="2.0.3-debian-10-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index cc6e5edbdf37..a77f5d1fd575 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.3-debian-10-r4`, `2`, `2.0.3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.3-debian-10-r4/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.3-debian-10-r5`, `2`, `2.0.3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.3-debian-10-r5/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 25ab4e61d2c9dc60a082d221341b2d0295a0a1dd Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 22 Apr 2020 08:45:02 +0000 Subject: [PATCH 356/950] 2.0.3-debian-10-r6 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0880376f4d1c..71637cf3a8cb 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.3-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="2.0.3-debian-10-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a77f5d1fd575..dac7260ded15 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.3-debian-10-r5`, `2`, `2.0.3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.3-debian-10-r5/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.3-debian-10-r6`, `2`, `2.0.3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.3-debian-10-r6/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 64488eb363f4c1ec11991460aba37d0fd4a6e690 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 23 Apr 2020 09:30:48 +0000 Subject: [PATCH 357/950] 2.0.3-debian-10-r7 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 71637cf3a8cb..73081ca5f355 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.3-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="2.0.3-debian-10-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index dac7260ded15..34ca13973972 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.3-debian-10-r6`, `2`, `2.0.3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.3-debian-10-r6/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.3-debian-10-r7`, `2`, `2.0.3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.3-debian-10-r7/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e3b9213339dc63fcbd5ea33fd2b8ad6c374d5ec3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 23 Apr 2020 22:07:11 +0000 Subject: [PATCH 358/950] 2.0.4-debian-10-r0 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 73081ca5f355..434f473b281b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps sudo unzip zlib1g -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.3-1" --checksum c559bf2c61a1d3a52aee78c1501eef3b8d5ef17690e2bdee1c1bce9e50f8ee8e +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.4-0" --checksum 8ad8cdb9e0f415c0755e95b74b842e2f5ffb355bf9d44b5cb923abbabf3cb948 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-0" --checksum 582d501eeb6b338a24f417fededbf14295903d6be55c52d66c52e616c81bcd8c RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.3-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 34ca13973972..9f72120e85ca 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.3-debian-10-r7`, `2`, `2.0.3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.3-debian-10-r7/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r0`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From a3b39bdaa68b40d1fd477b73c53bddf5f03a00e1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 24 Apr 2020 22:44:47 +0000 Subject: [PATCH 359/950] 2.0.4-debian-10-r1 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 434f473b281b..6b3846814e7f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9f72120e85ca..927bb4f14f6f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r0`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r0/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r1`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r1/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From fc0c44999f9cd7eddf3aad2d7641a685134f1911 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 25 Apr 2020 23:30:21 +0000 Subject: [PATCH 360/950] 2.0.4-debian-10-r2 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 6b3846814e7f..37b1a4336d59 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 927bb4f14f6f..fcea9e0d9941 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r1`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r1/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r2`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r2/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 431575de05becdcf20cd7b95c22ada7d0de825f6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 27 Apr 2020 00:05:37 +0000 Subject: [PATCH 361/950] 2.0.4-debian-10-r3 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 37b1a4336d59..d523957d52c1 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index fcea9e0d9941..d123b9cb7c74 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r2`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r2/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r3`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r3/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 636f0bf99c50832bf87fb4a848cb76737e3ecf41 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 27 Apr 2020 23:08:26 +0000 Subject: [PATCH 362/950] 2.0.4-debian-10-r4 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index d523957d52c1..f08226d5a967 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps sudo unzip zlib1g -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.4-0" --checksum 8ad8cdb9e0f415c0755e95b74b842e2f5ffb355bf9d44b5cb923abbabf3cb948 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.4-1" --checksum 3faaeb03ed38cf33df2ade35b91d3bbb1c9dd0c382dc0753b7479d598b646b8d RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-0" --checksum 582d501eeb6b338a24f417fededbf14295903d6be55c52d66c52e616c81bcd8c RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d123b9cb7c74..afca9a693e6d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r3`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r3/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r4`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r4/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c03916a1966427c1ca9531815a922d034fd06ac9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 29 Apr 2020 07:54:16 +0000 Subject: [PATCH 363/950] 2.0.4-debian-10-r7 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index f08226d5a967..c0a883cc8b19 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index afca9a693e6d..9fec524975a9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r4`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r4/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r7`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r7/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e17df63f565dbeb30b67d9ac86ce4b9dbc14ed45 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 29 Apr 2020 18:12:14 +0000 Subject: [PATCH 364/950] 2.0.4-debian-10-r8 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../debian-10/prebuildfs/opt/bitnami/scripts/libbitnami.sh | 1 - .../2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh | 6 +++--- bitnami/kong/README.md | 6 +++--- 4 files changed, 7 insertions(+), 8 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c0a883cc8b19..40d9a8998b09 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libbitnami.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libbitnami.sh index 2160b50559cf..ef29e361dad1 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libbitnami.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libbitnami.sh @@ -46,7 +46,6 @@ print_image_welcome_page() { log "${BOLD}Welcome to the Bitnami ${BITNAMI_APP_NAME} container${RESET}" log "Subscribe to project updates by watching ${BOLD}${github_url}${RESET}" log "Submit issues and feature requests at ${BOLD}${github_url}/issues${RESET}" - log "Send us your feedback at ${BOLD}containers@bitnami.com${RESET}" log "" } diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh index b6fc10db1518..dac6c18b8854 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh @@ -192,9 +192,9 @@ debug_execute() { # Boolean ######################### retry_while() { - local -r cmd="${1:?cmd is missing}" - local -r retries="${2:-12}" - local -r sleep_time="${3:-5}" + local cmd="${1:?cmd is missing}" + local retries="${2:-12}" + local sleep_time="${3:-5}" local return_value=1 read -r -a command <<< "$cmd" diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9fec524975a9..d162ae2494c0 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r7`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r7/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r8`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r8/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). @@ -164,8 +164,8 @@ COPY rootfs / ENV ... EXPOSE 8080 8443 -ENTRYPOINT [ "/opt/bitnami/scripts/entrypoint.sh" ] -CMD [ "/opt/bitnami/scripts/run.sh" ] +ENTRYPOINT [ "/opt/bitnami/scripts/kong/entrypoint.sh" ] +CMD [ "/opt/bitnami/scripts/kong/run.sh" ] ``` The Dockerfile has several sections related to: From 058449f179fd6d1df76188e7bc818669a3a19d52 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 5 May 2020 12:17:12 +0000 Subject: [PATCH 365/950] 2.0.4-debian-10-r9 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 40d9a8998b09..dc89043bb540 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d162ae2494c0..4cc7eaa376cb 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r8`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r8/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r9`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r9/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 757be0547b136badae4fab6a2ce74ce1003cf904 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 5 May 2020 20:26:06 +0000 Subject: [PATCH 366/950] 2.0.4-debian-10-r10 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../prebuildfs/opt/bitnami/scripts/libservice.sh | 9 ++++++++- bitnami/kong/README.md | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index dc89043bb540..91af79060b0c 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps sudo unzip zlib1g -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.4-1" --checksum 3faaeb03ed38cf33df2ade35b91d3bbb1c9dd0c382dc0753b7479d598b646b8d +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.4-2" --checksum 59958df039817f6d2b17a2542981db18a8d60d58d2f7bc86eac5a4c6b62f659c RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-0" --checksum 582d501eeb6b338a24f417fededbf14295903d6be55c52d66c52e616c81bcd8c RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r10" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh index 35c0163a9ef1..d5382a7cecc2 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh @@ -38,17 +38,24 @@ is_service_running() { # Stop a service by sending a termination signal to its pid # Arguments: # $1 - Pid file +# $2 - Signal number (optional) # Returns: # None ######################### stop_service_using_pid() { local pid_file="${1:?pid file is missing}" + local signal="${2:-}" local pid pid="$(get_pid_from_file "$pid_file")" [[ -z "$pid" ]] || ! is_service_running "$pid" && return - kill "$pid" + if [[ -n "$signal" ]]; then + kill "-${signal}" "$pid" + else + kill "$pid" + fi + local counter=10 while [[ "$counter" -ne 0 ]] && is_service_running "$pid"; do sleep 1 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4cc7eaa376cb..9e847d758655 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r9`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r9/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r10`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r10/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ef58e6abffe5121c9304f40da6f6a566553b7cf8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 6 May 2020 08:18:20 +0000 Subject: [PATCH 367/950] 2.0.4-debian-10-r11 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 91af79060b0c..039f421c09b2 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps sudo unzip zlib1g -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.4-2" --checksum 59958df039817f6d2b17a2542981db18a8d60d58d2f7bc86eac5a4c6b62f659c +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.4-3" --checksum 3d2c46f295a5b4a63ae7bbd46a469eb1b35394162841e7844997a62fcf1ce647 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-0" --checksum 582d501eeb6b338a24f417fededbf14295903d6be55c52d66c52e616c81bcd8c RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r10" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r11" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9e847d758655..9eef29d5dd24 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r10`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r10/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r11`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r11/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f385006e9c36d00d0476c66529e05675604a4b4e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 6 May 2020 20:24:10 +0000 Subject: [PATCH 368/950] 2.0.4-debian-10-r12 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 039f421c09b2..d70bfb13c301 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps sudo unzip zlib1g -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.4-3" --checksum 3d2c46f295a5b4a63ae7bbd46a469eb1b35394162841e7844997a62fcf1ce647 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.4-4" --checksum 592e6ec8910b2e14d3e8fcf446bb66afcff35b3d998c20042c86ea5d61158874 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-0" --checksum 582d501eeb6b338a24f417fededbf14295903d6be55c52d66c52e616c81bcd8c RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r11" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r12" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9eef29d5dd24..0b8280f684ec 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r11`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r11/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r12`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r12/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 36e84a8ce132280dc5d58ef3c06593e1dcc8ef57 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 7 May 2020 21:50:09 +0000 Subject: [PATCH 369/950] 2.0.4-debian-10-r13 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index d70bfb13c301..debfe81238a7 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r12" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r13" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0b8280f684ec..c1c46a9e4494 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r12`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r12/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r13`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r13/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 42743fb76dbf8fc3cf32073da91d2af2b2bc7bd7 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 8 May 2020 22:40:26 +0000 Subject: [PATCH 370/950] 2.0.4-debian-10-r14 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index debfe81238a7..f7d05784da31 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r13" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r14" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c1c46a9e4494..45fc2e4249b5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r13`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r13/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r14`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r14/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 046d8ac76fcea855f8dafaa505f136ee5d6cf39d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 9 May 2020 23:23:26 +0000 Subject: [PATCH 371/950] 2.0.4-debian-10-r15 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index f7d05784da31..1529a1a9ae3a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r14" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r15" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 45fc2e4249b5..f096257a936d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r14`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r14/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r15`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r15/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 316b56b1d99e8bff5276c36a2a0b8632c261751a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 11 May 2020 00:17:26 +0000 Subject: [PATCH 372/950] 2.0.4-debian-10-r16 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 1529a1a9ae3a..259d13742cd1 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r15" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r16" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f096257a936d..97fa0f5e6ef5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r15`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r15/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r16`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r16/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 76ae5350446810d0077b71f50891abab2054ff87 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 12 May 2020 00:58:29 +0000 Subject: [PATCH 373/950] 2.0.4-debian-10-r17 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../2/debian-10/prebuildfs/opt/bitnami/scripts/libfile.sh | 5 +++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 259d13742cd1..1061881db80a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r16" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r17" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfile.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfile.sh index 337e2e779701..8cdb3dfd0b7f 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfile.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfile.sh @@ -25,10 +25,11 @@ replace_in_file() { # We should avoid using 'sed in-place' substitutions # 1) They are not compatible with files mounted from ConfigMap(s) # 2) We found incompatibility issues with Debian10 and "in-place" substitutions + del=$'\001' # Use a non-printable character as a 'sed' delimiter to avoid issues if [[ $posix_regex = true ]]; then - result="$(sed -E "s@$match_regex@$substitute_regex@g" "$filename")" + result="$(sed -E "s${del}${match_regex}${del}${substitute_regex}${del}g" "$filename")" else - result="$(sed "s@$match_regex@$substitute_regex@g" "$filename")" + result="$(sed "s${del}${match_regex}${del}${substitute_regex}${del}g" "$filename")" fi echo "$result" > "$filename" } diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 97fa0f5e6ef5..e1aff0b2920b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r16`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r16/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r17`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r17/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 856a85a33e0d05339dea4831cac562ea5ae71387 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 13 May 2020 01:33:19 +0000 Subject: [PATCH 374/950] 2.0.4-debian-10-r18 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 1061881db80a..fb017a8f8a4f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r17" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r18" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e1aff0b2920b..27ed84dbef94 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r17`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r17/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r18`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r18/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f88d5215abecae90a8d5d5e5a25b2fe43549024c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 13 May 2020 08:04:18 +0000 Subject: [PATCH 375/950] 2.0.4-debian-10-r19 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index fb017a8f8a4f..43e83087226b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps sudo unzip zlib1g -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.4-4" --checksum 592e6ec8910b2e14d3e8fcf446bb66afcff35b3d998c20042c86ea5d61158874 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.4-5" --checksum 1c8bd99a5eaad6abb89da829d4223d8a3d6705c4de688f791c9e03170a75b886 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-0" --checksum 582d501eeb6b338a24f417fededbf14295903d6be55c52d66c52e616c81bcd8c RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r18" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r19" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 27ed84dbef94..235eaee9e0a6 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r18`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r18/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r19`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r19/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From df58abfe406f818cd22ff192510853e5a5fb2efa Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 14 May 2020 08:48:11 +0000 Subject: [PATCH 376/950] 2.0.4-debian-10-r20 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 43e83087226b..555b3be2cb23 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r19" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r20" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 235eaee9e0a6..362a646440b7 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r19`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r19/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r20`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r20/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 706faf3f3e47bb9ae7f06bf022aeaa04066955e3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 15 May 2020 09:33:49 +0000 Subject: [PATCH 377/950] 2.0.4-debian-10-r21 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 555b3be2cb23..979eaf959aa7 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r20" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r21" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 362a646440b7..eba64fc90f4f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r20`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r20/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r21`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r21/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c3d4241bcd6d6cbc0d794a7749f8d0ec1fc1a897 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 16 May 2020 10:12:19 +0000 Subject: [PATCH 378/950] 2.0.4-debian-10-r22 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 979eaf959aa7..09516d6e834b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r21" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r22" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index eba64fc90f4f..108b52216b9f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r21`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r21/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r22`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r22/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8c7e65ce796a91d43252ba989a2c18aded379984 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 17 May 2020 10:51:08 +0000 Subject: [PATCH 379/950] 2.0.4-debian-10-r23 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 09516d6e834b..cb3a43d72ded 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r22" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r23" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 108b52216b9f..5d9428ad01c2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r22`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r22/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r23`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r23/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d9ed6ed24076e4b8cd98d89ef7327a3c3768fd2c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 18 May 2020 11:41:09 +0000 Subject: [PATCH 380/950] 2.0.4-debian-10-r24 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index cb3a43d72ded..1d6f53ba9b0f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r23" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r24" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 5d9428ad01c2..b8ad566d9885 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r23`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r23/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r24`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r24/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d12819eb9824973893cedd05ca9ee6fa705c2e1a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 19 May 2020 12:26:02 +0000 Subject: [PATCH 381/950] 2.0.4-debian-10-r25 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 1d6f53ba9b0f..dacd0f43058f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r24" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r25" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b8ad566d9885..965e7822c3bc 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r24`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r24/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r25`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r25/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 348dc04ecb9ea531ff900776c00807a0bbdadc7c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 19 May 2020 17:28:24 +0000 Subject: [PATCH 382/950] 2.0.4-debian-10-r26 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index dacd0f43058f..66fb1c6e0b31 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps sudo unzip zlib1g -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.4-5" --checksum 1c8bd99a5eaad6abb89da829d4223d8a3d6705c4de688f791c9e03170a75b886 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.4-6" --checksum bd1ebd44eadd067e3e7399c0e11168253452d175ef19e8e0c540d8ae11380d54 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-0" --checksum 582d501eeb6b338a24f417fededbf14295903d6be55c52d66c52e616c81bcd8c RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r25" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r26" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 965e7822c3bc..6ccc84d83712 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r25`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r25/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r26`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r26/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 4c387d9ae7fa56082d5e0357075518a8ded1e329 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 20 May 2020 18:17:11 +0000 Subject: [PATCH 383/950] 2.0.4-debian-10-r27 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- bitnami/kong/2/debian-10/docker-compose.yml | 4 ++-- .../prebuildfs/usr/sbin/install_packages | 24 +++++++++++++++++++ bitnami/kong/README.md | 2 +- bitnami/kong/docker-compose-cassandra.yml | 4 ++-- bitnami/kong/docker-compose-cluster.yml | 8 +++---- bitnami/kong/docker-compose.yml | 4 ++-- 7 files changed, 37 insertions(+), 13 deletions(-) create mode 100755 bitnami/kong/2/debian-10/prebuildfs/usr/sbin/install_packages diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 66fb1c6e0b31..9a7b527444ad 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -8,7 +8,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies -RUN install_packages ca-certificates curl libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps sudo unzip zlib1g +RUN install_packages ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.4-6" --checksum bd1ebd44eadd067e3e7399c0e11168253452d175ef19e8e0c540d8ae11380d54 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-0" --checksum 582d501eeb6b338a24f417fededbf14295903d6be55c52d66c52e616c81bcd8c RUN apt-get update && apt-get upgrade -y && \ @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r26" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r27" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/docker-compose.yml b/bitnami/kong/2/debian-10/docker-compose.yml index c1c4b2c620ad..9966483c46d6 100644 --- a/bitnami/kong/2/debian-10/docker-compose.yml +++ b/bitnami/kong/2/debian-10/docker-compose.yml @@ -1,7 +1,7 @@ version: '2' services: postgresql: - image: bitnami/postgresql:11 + image: docker.io/bitnami/postgresql:11-debian-10 volumes: - postgresql_data:/bitnami/postgresql environment: @@ -9,7 +9,7 @@ services: - POSTGRESQL_PASSWORD=bitnami - POSTGRESQL_DATABASE=kong kong: - image: bitnami/kong:2 + image: docker.io/bitnami/kong:2-debian-10 ports: - 8000:8000 - 8443:8443 diff --git a/bitnami/kong/2/debian-10/prebuildfs/usr/sbin/install_packages b/bitnami/kong/2/debian-10/prebuildfs/usr/sbin/install_packages new file mode 100755 index 000000000000..c9577647443b --- /dev/null +++ b/bitnami/kong/2/debian-10/prebuildfs/usr/sbin/install_packages @@ -0,0 +1,24 @@ +#!/bin/sh +set -e +set -u +export DEBIAN_FRONTEND=noninteractive +n=0 +max=2 +until [ $n -gt $max ]; do + set +e + ( + apt-get update -qq && + apt-get install -y --no-install-recommends "$@" + ) + CODE=$? + set -e + if [ $CODE -eq 0 ]; then + break + fi + if [ $n -eq $max ]; then + exit $CODE + fi + echo "apt failed, retrying" + n=$(($n + 1)) +done +rm -r /var/lib/apt/lists /var/cache/apt/archives diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 6ccc84d83712..b6c30b1a3b9e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r26`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r26/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r27`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r27/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). diff --git a/bitnami/kong/docker-compose-cassandra.yml b/bitnami/kong/docker-compose-cassandra.yml index 2aefd1ea4f3f..7fc4a8137824 100644 --- a/bitnami/kong/docker-compose-cassandra.yml +++ b/bitnami/kong/docker-compose-cassandra.yml @@ -1,7 +1,7 @@ version: '2' services: cassandra: - image: bitnami/cassandra:3 + image: docker.io/bitnami/cassandra:3-debian-10 volumes: - cassandra_data:/bitnami environment: @@ -11,7 +11,7 @@ services: - CASSANDRA_PASSWORD=kong - CASSANDRA_PASSWORD_SEEDER=yes kong: - image: bitnami/kong:1 + image: docker.io/bitnami/kong:2-debian-10 ports: - 8000:8000 - 8443:8443 diff --git a/bitnami/kong/docker-compose-cluster.yml b/bitnami/kong/docker-compose-cluster.yml index 496703019eb1..0e335432513c 100644 --- a/bitnami/kong/docker-compose-cluster.yml +++ b/bitnami/kong/docker-compose-cluster.yml @@ -1,7 +1,7 @@ version: '2' services: cassandra: - image: bitnami/cassandra:3 + image: docker.io/bitnami/cassandra:3-debian-10 volumes: - cassandra_data:/bitnami environment: @@ -15,7 +15,7 @@ services: - MAX_HEAP_SIZE=2G - HEAP_NEWSIZE=200M cassandra2: - image: bitnami/cassandra:3 + image: docker.io/bitnami/cassandra:3-debian-10 volumes: - cassandra2_data:/bitnami environment: @@ -28,7 +28,7 @@ services: - MAX_HEAP_SIZE=2G - HEAP_NEWSIZE=200M kong: - image: bitnami/kong:1 + image: docker.io/bitnami/kong:2-debian-10 ports: - 18000:8000 - 18443:8443 @@ -41,7 +41,7 @@ services: # If in doubt, set to the amount of CPU cores divided by the number of Kong/Cassandra nodes in the machine - KONG_NGINX_WORKER_PROCESSES=2 kong2: - image: bitnami/kong:1 + image: docker.io/bitnami/kong:2-debian-10 ports: - 28000:8000 - 28443:8443 diff --git a/bitnami/kong/docker-compose.yml b/bitnami/kong/docker-compose.yml index c1c4b2c620ad..9966483c46d6 100644 --- a/bitnami/kong/docker-compose.yml +++ b/bitnami/kong/docker-compose.yml @@ -1,7 +1,7 @@ version: '2' services: postgresql: - image: bitnami/postgresql:11 + image: docker.io/bitnami/postgresql:11-debian-10 volumes: - postgresql_data:/bitnami/postgresql environment: @@ -9,7 +9,7 @@ services: - POSTGRESQL_PASSWORD=bitnami - POSTGRESQL_DATABASE=kong kong: - image: bitnami/kong:2 + image: docker.io/bitnami/kong:2-debian-10 ports: - 8000:8000 - 8443:8443 From 62b3be4aaba50741c88a489ecb5a0749e04c94ec Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 21 May 2020 19:10:52 +0000 Subject: [PATCH 384/950] 2.0.4-debian-10-r28 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 9a7b527444ad..c7be0fc3d136 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r27" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r28" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b6c30b1a3b9e..c8c9bf78514f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r27`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r27/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r28`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r28/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b5da4ea4e0a65b979e729efae33fa314b202401d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 22 May 2020 19:49:16 +0000 Subject: [PATCH 385/950] 2.0.4-debian-10-r29 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c7be0fc3d136..777eba93cf7d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r28" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r29" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c8c9bf78514f..bc66b6f9b181 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r28`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r28/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r29`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r29/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 639c1003ad67371ca338a6adc2ef79dd2af5b0a9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 23 May 2020 20:27:19 +0000 Subject: [PATCH 386/950] 2.0.4-debian-10-r30 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 777eba93cf7d..df369241f397 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r29" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r30" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index bc66b6f9b181..d6986f2cac3b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r29`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r29/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r30`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r30/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e837fe862804219d5d62967d6ba8856cb7c3eb9e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 24 May 2020 21:02:46 +0000 Subject: [PATCH 387/950] 2.0.4-debian-10-r31 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index df369241f397..c7db67218372 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r30" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r31" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d6986f2cac3b..1c2b80c81000 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r30`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r30/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r31`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r31/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From eb5924f1d09daa2b6d4f5ac37536c46d17b9bf89 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 25 May 2020 20:49:16 +0000 Subject: [PATCH 388/950] 2.0.4-debian-10-r32 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c7db67218372..c7e4a2a8267e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.4-6" --checksum bd1ebd44eadd067e3e7399c0e11168253452d175ef19e8e0c540d8ae11380d54 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.4-7" --checksum 7426c466a80ff0211d86072752a3b761a29f39996c9c8ab364269bddad78d2b1 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-0" --checksum 582d501eeb6b338a24f417fededbf14295903d6be55c52d66c52e616c81bcd8c RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r31" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r32" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1c2b80c81000..3350494f3e23 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r31`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r31/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r32`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r32/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 99d5317a257693fe4a7e2ff5d6896379e1890ea5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 28 May 2020 21:30:05 +0000 Subject: [PATCH 389/950] 2.0.4-debian-10-r33 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c7e4a2a8267e..ab584aff65c4 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.4-7" --checksum 7426c466a80ff0211d86072752a3b761a29f39996c9c8ab364269bddad78d2b1 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.4-9" --checksum 8bf6d46db253fcb4c9de2452e4817f29ede3c428e49f741fd3322f6e90cf9ab8 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-0" --checksum 582d501eeb6b338a24f417fededbf14295903d6be55c52d66c52e616c81bcd8c RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r32" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r33" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 3350494f3e23..da73b02e0390 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r32`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r32/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r33`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r33/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8bb365ff57d7ba0dee88a310c056256f1ece721e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 29 May 2020 22:10:58 +0000 Subject: [PATCH 390/950] 2.0.4-debian-10-r34 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index ab584aff65c4..631bded43984 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r33" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r34" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index da73b02e0390..e20c0015b5b1 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r33`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r33/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r34`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r34/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 31af14d89259e77d083c3ea0b6a2a1b444ac3868 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 30 May 2020 22:49:44 +0000 Subject: [PATCH 391/950] 2.0.4-debian-10-r35 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 631bded43984..dc582d8886dd 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r34" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r35" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e20c0015b5b1..1f9f02f17666 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r34`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r34/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r35`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r35/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 74e707b8544e0f1fb647f79e4e5bb185c3124b14 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 31 May 2020 23:24:54 +0000 Subject: [PATCH 392/950] 2.0.4-debian-10-r36 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index dc582d8886dd..53484741eee3 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r35" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r36" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1f9f02f17666..e1f740dbb1ae 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r35`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r35/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r36`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r36/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 74c29e20105d8e2a9cd0cc41ba591001dfea189a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 2 Jun 2020 00:57:14 +0000 Subject: [PATCH 393/950] 2.0.4-debian-10-r37 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../prebuildfs/opt/bitnami/scripts/libfile.sh | 19 ++ .../prebuildfs/opt/bitnami/scripts/libfs.sh | 25 +- .../prebuildfs/opt/bitnami/scripts/liblog.sh | 25 +- .../prebuildfs/opt/bitnami/scripts/libnet.sh | 14 +- .../prebuildfs/opt/bitnami/scripts/libos.sh | 57 ++++ .../opt/bitnami/scripts/libservice.sh | 49 ++- .../opt/bitnami/scripts/libwebserver.sh | 320 ++++++++++++++++++ bitnami/kong/README.md | 2 +- 9 files changed, 487 insertions(+), 26 deletions(-) create mode 100644 bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 53484741eee3..4159cd5a6991 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r36" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r37" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfile.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfile.sh index 8cdb3dfd0b7f..b09575cbe4a6 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfile.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfile.sh @@ -59,3 +59,22 @@ remove_in_file() { fi echo "$result" > "$filename" } + +######################## +# Appends text after the last line matching a pattern +# Arguments: +# $1 - file +# $2 - match regex +# $3 - contents to add +# Returns: +# None +######################### +append_file_after_last_match() { + local file="${1:?missing file}" + local match_regex="${2:?missing pattern}" + local value="${3:?missing value}" + + # We read the file in reverse, replace the first match (0,/pattern/s) and then reverse the results again + result="$(tac "$file" | sed -E "0,/($match_regex)/s||${value}\n\1|" | tac)" + echo "$result" > "$file" +} diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh index fac947bc44f2..251a47dc7052 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh @@ -44,10 +44,10 @@ ensure_dir_exists() { ######################## # Checks whether a directory is empty or not -# Arguments: +# arguments: # $1 - directory -# Returns: -# Boolean +# returns: +# boolean ######################### is_dir_empty() { local dir="${1:?missing directory}" @@ -59,6 +59,25 @@ is_dir_empty() { fi } +######################## +# Checks whether a file can be written to or not +# arguments: +# $1 - file +# returns: +# boolean +######################### +is_file_writable() { + local file="${1:?missing file}" + local dir + dir="$(dirname "$file")" + + if [[ ( -f "$file" && -w "$file" ) || ( ! -f "$file" && -d "$dir" && -w "$dir" ) ]]; then + true + else + false + fi +} + ######################## # Configure permisions and ownership recursively # Globals: diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/liblog.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/liblog.sh index 1285b05ba344..60ec4cbfc32a 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/liblog.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/liblog.sh @@ -21,7 +21,7 @@ CYAN='\033[38;5;6m' ######################### stderr_print() { # 'is_boolean_yes' is defined in libvalidations.sh, but depends on this file so we cannot source it - local -r bool="${BITNAMI_QUIET:-false}" + local bool="${BITNAMI_QUIET:-false}" # comparison is performed without regard to the case of alphabetic characters shopt -s nocasematch if ! [[ "$bool" = 1 || "$bool" =~ ^(yes|true)$ ]]; then @@ -80,10 +80,31 @@ error() { ######################### debug() { # 'is_boolean_yes' is defined in libvalidations.sh, but depends on this file so we cannot source it - local -r bool="${BITNAMI_DEBUG:-false}" + local bool="${BITNAMI_DEBUG:-false}" # comparison is performed without regard to the case of alphabetic characters shopt -s nocasematch if [[ "$bool" = 1 || "$bool" =~ ^(yes|true)$ ]]; then log "${MAGENTA}DEBUG${RESET} ==> ${*}" fi } + +######################## +# Indent a string +# Arguments: +# $1 - string +# $2 - number of indentation characters (default: 4) +# $3 - indentation character (default: " ") +# Returns: +# None +######################### +indent() { + local string="${1:-}" + local num="${2:?missing num}" + local char="${3:-" "}" + # Build the indentation unit string + local indent_unit="" + for ((i = 0; i < num; i++)); do + indent_unit="${indent_unit}${char}" + done + echo "$string" | sed "s/^/${indent_unit}/" +} diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libnet.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libnet.sh index 6cb749858648..f6380b714583 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libnet.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libnet.sh @@ -22,7 +22,7 @@ dns_lookup() { } ######################### -## Wait for a hostname and return the IP +# Wait for a hostname and return the IP # Arguments: # $1 - hostname # $2 - number of retries @@ -35,13 +35,13 @@ wait_for_dns_lookup() { local retries="${2:-5}" local seconds="${3:-1}" check_host() { - if [[ $(dns_lookup "$hostname") == "" ]]; then - false - else - true - fi + if [[ $(dns_lookup "$hostname") == "" ]]; then + false + else + true + fi } - # Wait 10 minutes for the host to be ready + # Wait for the host to be ready retry_while "check_host ${hostname}" "$retries" "$seconds" dns_lookup "$hostname" } diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh index dac6c18b8854..fab3aed61bd5 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh @@ -204,3 +204,60 @@ retry_while() { done return $return_value } + +######################## +# Generate a random string +# Arguments: +# -t|--type - String type (ascii, alphanumeric, numeric), defaults to ascii +# -c|--count - Number of characters, defaults to 32 +# Arguments: +# None +# Returns: +# None +# Returns: +# String +######################### +generate_random_string() { + local type="ascii" + local count="32" + local filter + local result + # Validate arguments + while [[ "$#" -gt 0 ]]; do + case "$1" in + -t|--type) + shift + type="$1" + ;; + -c|--count) + shift + count="$1" + ;; + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; + esac + shift + done + # Validate type + case "$type" in + ascii) + filter="[:print:]" + ;; + alphanumeric) + filter="a-zA-Z0-9" + ;; + numeric) + filter="0-9" + ;; + *) + echo "Invalid type ${type}" >&2 + return 1 + esac + # Obtain count + 10 lines from /dev/urandom to ensure that the resulting string has the expected size + # Note there is a very small chance of strings starting with EOL character + # Therefore, the higher amount of lines read, this will happen less frequently + result="$(head -n "$((count + 10))" /dev/urandom | tr -dc "$filter" | head -c "$count")" + echo "$result" +} diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh index d5382a7cecc2..cd68366f90ac 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh @@ -2,6 +2,11 @@ # # Library for managing services +# shellcheck disable=SC1091 + +# Load Generic Libraries +. /opt/bitnami/scripts/libvalidations.sh + # Functions ######################## @@ -70,18 +75,38 @@ stop_service_using_pid() { # $2 - Pid file # $3 - Start command # $4 - Stop command +# Flags: +# --disabled - Whether to disable the monit configuration # Returns: # None ######################### generate_monit_conf() { - local -r service_name="${1:?service name is missing}" - local -r pid_file="${2:?pid file is missing}" - local -r start_command="${3:?start command is missing}" - local -r stop_command="${4:?stop command is missing}" - local -r monit_conf_dir="/etc/monit/conf.d" + local service_name="${1:?service name is missing}" + local pid_file="${2:?pid file is missing}" + local start_command="${3:?start command is missing}" + local stop_command="${4:?stop command is missing}" + local monit_conf_dir="/etc/monit/conf.d" + local disabled="no" + # Parse optional CLI flags + shift 4 + while [[ "$#" -gt 0 ]]; do + case "$1" in + --disabled) + shift + disabled="$1" + ;; + *) + echo "Invalid command line flag ${1}" >&2 + return 1 + ;; + esac + shift + done + + is_boolean_yes "$disabled" && conf_suffix=".disabled" mkdir -p "$monit_conf_dir" - cat >"${monit_conf_dir}/${service_name}.conf" <"${monit_conf_dir}/${service_name}.conf${conf_suffix:-}" <"${logrotate_conf_dir}/${service_name}" </dev/null; then + print_validation_error "Could not load the $(web_server_type) web server library from /opt/bitnami/scripts. Check that it exists and is readable." + fi + + return "$error_code" +} + +######################## +# Check whether the web server is running +# Globals: +# * +# Arguments: +# None +# Returns: +# true if the web server is running, false otherwise +######################### +is_web_server_running() { + "is_$(web_server_type)_running" +} + +######################## +# Start web server +# Globals: +# * +# Arguments: +# None +# Returns: +# None +######################### +web_server_start() { + "${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/start.sh" +} + +######################## +# Stop web server +# Globals: +# * +# Arguments: +# None +# Returns: +# None +######################### +web_server_stop() { + "${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/stop.sh" +} + +######################## +# Restart web server +# Globals: +# * +# Arguments: +# None +# Returns: +# None +######################### +web_server_restart() { + "${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/restart.sh" +} + +######################## +# Reload web server +# Globals: +# * +# Arguments: +# None +# Returns: +# None +######################### +web_server_reload() { + "${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/reload.sh" +} + +######################## +# Ensure a web server application configuration exists (i.e. Apache virtual host format or NGINX server block) +# It serves as a wrapper for the specific web server function +# Globals: +# * +# Arguments: +# $1 - App name +# Flags: +# --hosts - Hosts to enable +# --type - Application type, which has an effect on which configuration template to use +# --allow-remote-connections - Whether to allow remote connections or to require local connections +# --disabled - Whether to render the file with a .disabled prefix +# --enable-https - Enable app configuration on HTTPS port +# --http-port - HTTP port number +# --https-port - HTTPS port number +# --document-root - Path to document root directory +# Apache-specific flags: +# --apache-additional-configuration - Additional vhost configuration (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-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) +# Returns: +# true if the configuration was enabled, false otherwise +######################## +ensure_web_server_app_configuration_exists() { + local app="${1:?missing app}" + local -a args=() + # Validate arguments + shift + while [[ "$#" -gt 0 ]]; do + case "$1" in + # Common flags + --hosts \ + | --type \ + | --allow-remote-connections \ + | --disabled \ + | --enable-https \ + | --http-port \ + | --https-port \ + | --document-root \ + ) + args+=("$1" "$2") + shift + ;; + + # Specific Apache flags + --apache-additional-configuration \ + | --apache-allow-override \ + | --apache-extra-directory-configuration \ + | --apache-move-htaccess \ + ) + [[ "$(web_server_type)" == "apache" ]] && args+=("${1//apache-/}" "$2") + shift + ;; + + # Specific NGINX flags + --nginx-additional-configuration) + [[ "$(web_server_type)" == "nginx" ]] && args+=("${1//nginx-/}" "$2") + shift + ;; + + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; + esac + shift + done + "ensure_$(web_server_type)_app_configuration_exists" "$app" "${args[@]}" +} + +######################## +# Ensure a web server application configuration does not exist anymore (i.e. Apache virtual host format or NGINX server block) +# It serves as a wrapper for the specific web server function +# Globals: +# * +# Arguments: +# $1 - App name +# Returns: +# true if the configuration was disabled, false otherwise +######################## +ensure_web_server_app_configuration_not_exists() { + local app="${1:?missing app}" + "ensure_$(web_server_type)_app_configuration_not_exists" "$app" +} + +######################## +# Ensure the web server loads the configuration for an application in a URL prefix +# It serves as a wrapper for the specific web server function +# Globals: +# * +# Arguments: +# $1 - App name +# Flags: +# --allow-remote-connections - Whether to allow remote connections or to require local connections +# --document-root - Path to document root directory +# --prefix - URL prefix from where it will be accessible (i.e. /myapp) +# --type - Application type, which has an effect on what configuration template will be used +# Apache-specific flags: +# --apache-additional-configuration - Additional vhost configuration (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-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) +# Returns: +# true if the configuration was enabled, false otherwise +######################## +ensure_web_server_prefix_configuration_exists() { + local app="${1:?missing app}" + local -a args=() + # Validate arguments + shift + while [[ "$#" -gt 0 ]]; do + case "$1" in + # Common flags + --allow-remote-connections \ + | --document-root \ + | --prefix \ + | --type \ + ) + args+=("$1" "$2") + shift + ;; + + # Specific Apache flags + --apache-additional-configuration \ + | --apache-allow-override \ + | --apache-extra-directory-configuration \ + | --apache-move-htaccess \ + ) + [[ "$(web_server_type)" == "apache" ]] && args+=("${1//apache-/}" "$2") + shift + ;; + + # Specific NGINX flags + --nginx-additional-configuration) + [[ "$(web_server_type)" == "nginx" ]] && args+=("${1//nginx-/}" "$2") + shift + ;; + + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; + esac + shift + done + "ensure_$(web_server_type)_prefix_configuration_exists" "$app" "${args[@]}" +} + +######################## +# Enable loading page, which shows users that the initialization process is not yet completed +# Globals: +# * +# Arguments: +# None +# Returns: +# None +######################### +web_server_enable_loading_page() { + ensure_web_server_app_configuration_exists "__loading" --hosts "_default_" \ + --apache-additional-configuration " +# Show a HTTP 503 Service Unavailable page by default +RedirectMatch 503 ^/$ +# Show index.html if server is answering with 404 Not Found or 503 Service Unavailable status codes +ErrorDocument 404 /index.html +ErrorDocument 503 /index.html" \ + --nginx-additional-configuration " +# Show a HTTP 503 Service Unavailable page by default +location / { + return 503; +} +# Show index.html if server is answering with 404 Not Found or 503 Service Unavailable status codes +error_page 404 @installing; +error_page 503 @installing; +location @installing { + rewrite ^(.*)$ /index.html break; +}" + web_server_reload +} + +######################## +# Enable loading page, which shows users that the initialization process is not yet completed +# Globals: +# * +# Arguments: +# None +# Returns: +# None +######################### +web_server_disable_install_page() { + ensure_web_server_app_configuration_not_exists "__loading" + web_server_reload +} diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e1f740dbb1ae..245837c46938 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r36`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r36/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r37`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r37/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d348fd9491205a3cb3576319dc7da6e0beeae90a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 3 Jun 2020 01:39:37 +0000 Subject: [PATCH 394/950] 2.0.4-debian-10-r38 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 4159cd5a6991..166b9644e475 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r37" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r38" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 245837c46938..29ff6e982ea0 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r37`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r37/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r38`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r38/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 24b7fd982dfe4a44c23ac3486919c50fff82e0bc Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 4 Jun 2020 02:18:03 +0000 Subject: [PATCH 395/950] 2.0.4-debian-10-r39 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 166b9644e475..5c4df67d51d9 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r38" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r39" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 29ff6e982ea0..c1116bd6b383 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r38`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r38/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r39`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r39/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 62541eb7ac834b35dd7e2f5e0d947392ea0c0465 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 5 Jun 2020 03:55:05 +0000 Subject: [PATCH 396/950] 2.0.4-debian-10-r40 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../prebuildfs/opt/bitnami/scripts/libcomponent.sh | 9 +++++++-- bitnami/kong/README.md | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 5c4df67d51d9..67ff12bb0593 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r39" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r40" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libcomponent.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libcomponent.sh index 025288664f69..76083e1e0a1d 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libcomponent.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libcomponent.sh @@ -25,7 +25,8 @@ component_unpack() { local version="${2:?version is required}" local base_name="${name}-${version}-${OS_NAME}-${OS_ARCH}-${OS_FLAVOUR}" local package_sha256="" - + local directory="/opt/bitnami" + # Validate arguments shift 2 while [ "$#" -gt 0 ]; do @@ -59,6 +60,10 @@ component_unpack() { echo "Verifying package integrity" echo "$package_sha256 ${base_name}.tar.gz" | sha256sum --check - fi - tar --directory /opt/bitnami --extract --gunzip --file "${base_name}.tar.gz" --no-same-owner --strip-components=2 "${base_name}/files/" + tar --directory "${directory}" --extract --gunzip --file "${base_name}.tar.gz" --no-same-owner --strip-components=2 "${base_name}/files/" rm "${base_name}.tar.gz" + + # Include metadata about the package + touch "${directory}/.bitnami_packages" + echo "$base_name" >> "${directory}/.bitnami_packages" } diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c1116bd6b383..0584318ae0f9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r39`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r39/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r40`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r40/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 99455b5680dbe666c1a1e67c78027ada1312e261 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 6 Jun 2020 13:27:06 +0000 Subject: [PATCH 397/950] 2.0.4-debian-10-r41 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 67ff12bb0593..7aceae8b66a0 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r40" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r41" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0584318ae0f9..098fcee61106 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r40`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r40/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r41`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r41/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 2a324a6c38f0cb48955430dc8079088c5109c3cc Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 7 Jun 2020 22:54:13 +0000 Subject: [PATCH 398/950] 2.0.4-debian-10-r42 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 7aceae8b66a0..fd7d91bd4c08 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r41" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r42" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 098fcee61106..a248588cac8e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r41`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r41/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r42`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r42/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5812f03916d698d4b5b64dfcac8f9b9cc523be05 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 8 Jun 2020 07:38:37 +0000 Subject: [PATCH 399/950] 2.0.4-debian-10-r43 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index fd7d91bd4c08..566ac060fce7 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r42" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r43" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a248588cac8e..1e4a41caf0bb 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r42`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r42/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r43`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r43/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9590d98a2bdc5970c71e45835ee127ebe65d4d15 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 15 Jun 2020 20:35:57 +0000 Subject: [PATCH 400/950] 2.0.4-debian-10-r45 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../prebuildfs/opt/bitnami/scripts/libnet.sh | 12 +++++++++++- bitnami/kong/README.md | 2 +- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 566ac060fce7..cf415473d368 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.4-9" --checksum 8bf6d46db253fcb4c9de2452e4817f29ede3c428e49f741fd3322f6e90cf9ab8 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.4-10" --checksum 47a0e3e6716feb73f57e7e25cb5f95841b390b8411c10114bd0671968a48ae26 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-0" --checksum 582d501eeb6b338a24f417fededbf14295903d6be55c52d66c52e616c81bcd8c RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r43" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r45" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libnet.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libnet.sh index f6380b714583..d658d7607277 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libnet.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libnet.sh @@ -54,7 +54,17 @@ wait_for_dns_lookup() { # Machine IP ######################### get_machine_ip() { - dns_lookup "$(hostname)" + local -a ip_addresses + local hostname + hostname="$(hostname)" + read -r -a ip_addresses <<< "$(dns_lookup "$hostname" | xargs echo)" + if [[ "${#ip_addresses[@]}" -gt 1 ]]; then + warn "Found more than one IP address associated to hostname ${hostname}: ${ip_addresses[*]}, will use ${ip_addresses[0]}" + elif [[ "${#ip_addresses[@]}" -lt 1 ]]; then + error "Could not find any IP address associated to hostname ${hostname}" + exit 1 + fi + echo "${ip_addresses[0]}" } ######################## diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1e4a41caf0bb..75b62651b1ff 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r43`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r43/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r45`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r45/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 1a24574f4032743944857f66bf32943159cee28a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 16 Jun 2020 15:33:49 +0000 Subject: [PATCH 401/950] 2.0.4-debian-10-r46 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index cf415473d368..3355a243df97 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r45" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r46" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 75b62651b1ff..65335f7645f2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r45`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r45/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r46`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r46/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 260a490a85b42cefc9a3498712153df0d085d898 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 17 Jun 2020 18:50:02 +0000 Subject: [PATCH 402/950] 2.0.4-debian-10-r47 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 3355a243df97..a2a924fa910a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r46" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r47" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 65335f7645f2..69517f0d0a6f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r46`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r46/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r47`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r47/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d826da6d49a101bfb5a59020e29eae80b834f31b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 18 Jun 2020 19:32:49 +0000 Subject: [PATCH 403/950] 2.0.4-debian-10-r48 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../prebuildfs/opt/bitnami/scripts/libfs.sh | 17 ++++ .../opt/bitnami/scripts/libpersistence.sh | 99 +++++++++++++++++++ bitnami/kong/README.md | 2 +- 4 files changed, 118 insertions(+), 2 deletions(-) create mode 100644 bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a2a924fa910a..4d8b32a955a1 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r47" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r48" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh index 251a47dc7052..c7c94c3ba988 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh @@ -59,6 +59,23 @@ is_dir_empty() { fi } +######################## +# Checks whether a mounted directory is empty or not +# arguments: +# $1 - directory +# returns: +# boolean +######################### +is_mounted_dir_empty() { + local dir="${1:?missing directory}" + + if is_dir_empty "$dir" || find "$dir" -mindepth 1 -maxdepth 1 -not -name ".snapshot" -not -name "lost+found" -exec false {} +; then + true + else + false + fi +} + ######################## # Checks whether a file can be written to or not # arguments: diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh new file mode 100644 index 000000000000..d4a0b32e1132 --- /dev/null +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh @@ -0,0 +1,99 @@ +#!/bin/bash +# +# Bitnami persistence library +# Used for bringing persistence capabilities to applications that don't have clear separation of data and logic + +# shellcheck disable=SC1091 + +# Load Generic Libraries +. /opt/bitnami/scripts/libfs.sh +. /opt/bitnami/scripts/liblog.sh +. /opt/bitnami/scripts/libversion.sh + +# Functions + +######################## +# Persist an application directory +# Globals: +# BITNAMI_ROOT_DIR +# BITNAMI_VOLUME_DIR +# Arguments: +# $1 - App folder name +# $2 - List of app files to persist +# Returns: +# true if all steps succeeded, false otherwise +######################### +persist_app() { + local -r app="${1:?missing app}" + local -a files_to_restore + read -r -a files_to_persist <<< "$2" + 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 + warn "No files are configured to be persisted" + return + fi + local file_to_persist_origin file_to_persist_destination file_to_persist_destination_folder + for file_to_persist in "${files_to_persist[@]}"; do + file_to_persist_origin="${install_dir}/${file_to_persist}" + file_to_persist_destination="${persist_dir}/${file_to_persist}" + file_to_persist_destination_folder="$(dirname "$file_to_persist_destination")" + mkdir -p "$file_to_persist_destination_folder" + cp -Lr "$file_to_persist_origin" "$file_to_persist_destination_folder" + done + # Install the persisted files into the installation directory, via symlinks + restore_persisted_app "$@" +} + +######################## +# Restore a persisted application directory +# Globals: +# BITNAMI_ROOT_DIR +# BITNAMI_VOLUME_DIR +# FORCE_MAJOR_UPGRADE +# Arguments: +# $1 - App folder name +# $2 - List of app files to restore +# Returns: +# true if all steps succeeded, false otherwise +######################### +restore_persisted_app() { + local -r app="${1:?missing app}" + local -a files_to_restore + read -r -a files_to_restore <<< "$2" + 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 + warn "No persisted files are configured to be restored" + return + fi + local file_to_restore_origin file_to_restore_destination + for file_to_restore in "${files_to_restore[@]}"; do + # We use realpath to ensure that the case of '.' is covered and the directory is removed + file_to_restore_origin="$(realpath "${install_dir}/${file_to_restore}")" + file_to_restore_destination="$(realpath "${persist_dir}/${file_to_restore}")" + rm -rf "$file_to_restore_origin" + ln -sfn "$file_to_restore_destination" "$file_to_restore_origin" + done +} + +######################## +# Check if an application directory was already persisted +# Globals: +# BITNAMI_VOLUME_DIR +# Arguments: +# $1 - App folder name +# Returns: +# true if all steps succeeded, false otherwise +######################### +is_app_initialized() { + local -r app="${1:?missing app}" + local -r persist_dir="${BITNAMI_VOLUME_DIR}/${app}" + if ! is_mounted_dir_empty "$persist_dir"; then + true + else + false + fi +} diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 69517f0d0a6f..d0785ca5e608 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r47`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r47/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r48`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r48/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 959f45207f14f8f02bd59ef80f324943f173a6d6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 19 Jun 2020 20:19:39 +0000 Subject: [PATCH 404/950] 2.0.4-debian-10-r49 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 4d8b32a955a1..b6939bcb7711 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r48" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r49" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d0785ca5e608..7a9d66053e15 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r48`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r48/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r49`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r49/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 088345514ef09998bbe401a5d0ff52557dcd9264 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 20 Jun 2020 20:51:52 +0000 Subject: [PATCH 405/950] 2.0.4-debian-10-r50 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index b6939bcb7711..08bae9b51baa 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r49" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r50" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7a9d66053e15..c074bf8169e8 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r49`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r49/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r50`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r50/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 79f6eeb065b66ed25ec559f44136c9a77461f846 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 21 Jun 2020 21:29:01 +0000 Subject: [PATCH 406/950] 2.0.4-debian-10-r51 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 08bae9b51baa..820a1cfbaeae 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r50" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r51" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c074bf8169e8..744dca191ea4 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r50`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r50/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r51`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r51/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From bbab7164c3c711a7de7eeeb749a905a630a358f4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 22 Jun 2020 22:04:27 +0000 Subject: [PATCH 407/950] 2.0.4-debian-10-r52 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 820a1cfbaeae..bb92d620f49a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r51" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r52" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 744dca191ea4..81d0fff744ba 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r51`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r51/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r52`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r52/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d0ddfa96be7ae8cd61152e65ad29360bc669aced Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 23 Jun 2020 22:41:20 +0000 Subject: [PATCH 408/950] 2.0.4-debian-10-r53 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index bb92d620f49a..00a59d587361 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r52" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r53" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 81d0fff744ba..f097cb42e497 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r52`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r52/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r53`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r53/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d382870ef01097eab6fa6b840801877312c28c83 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 25 Jun 2020 00:44:08 +0000 Subject: [PATCH 409/950] 2.0.4-debian-10-r54 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../prebuildfs/opt/bitnami/scripts/libos.sh | 24 +++++++++++++++---- bitnami/kong/README.md | 2 +- 3 files changed, 22 insertions(+), 6 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 00a59d587361..7bd26bbc49dc 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r53" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r54" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh index fab3aed61bd5..17309d011b4f 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh @@ -102,12 +102,28 @@ get_total_memory() { # Globals: # None # Arguments: -# $1 - memory size (optional) +# None +# Flags: +# --memory - memory size (optional) # Returns: # Detected instance size ######################### get_machine_size() { - local memory="${1:-}" + local memory="" + # Validate arguments + while [[ "$#" -gt 0 ]]; do + case "$1" in + --memory) + shift + memory="${1:?missing memory}" + ;; + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; + esac + shift + done if [[ -z "$memory" ]]; then debug "Memory was not specified, detecting available memory automatically" memory="$(get_total_memory)" @@ -152,10 +168,10 @@ get_supported_machine_sizes() { ######################### convert_to_mb() { local amount="${1:-}" - if [[ $amount =~ ^([0-9]+)(M|G) ]]; then + if [[ $amount =~ ^([0-9]+)(m|M|g|G) ]]; then size="${BASH_REMATCH[1]}" unit="${BASH_REMATCH[2]}" - if [[ "$unit" = "G" ]]; then + if [[ "$unit" = "g" || "$unit" = "G" ]]; then amount="$((size * 1024))" else amount="$size" diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f097cb42e497..5c97e4cbc27d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r53`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r53/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r54`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r54/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 1358de73f577806d1f9979c4142bb98319fa7dcf Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 26 Jun 2020 01:25:57 +0000 Subject: [PATCH 410/950] 2.0.4-debian-10-r55 release --- bitnami/kong/2/debian-10/Dockerfile | 6 ++--- .../opt/bitnami/scripts/libpersistence.sh | 23 +++++++++++++++---- bitnami/kong/README.md | 2 +- 3 files changed, 23 insertions(+), 8 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 7bd26bbc49dc..8f89f3de62a5 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -8,16 +8,16 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies -RUN install_packages ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g +RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.4-10" --checksum 47a0e3e6716feb73f57e7e25cb5f95841b390b8411c10114bd0671968a48ae26 -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-0" --checksum 582d501eeb6b338a24f417fededbf14295903d6be55c52d66c52e616c81bcd8c +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-1" --checksum 51cfb1b7fd7b05b8abd1df0278c698103a9b1a4964bdacd87ca1d5c01631d59c RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r54" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r55" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh index d4a0b32e1132..a7e977516d3a 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh @@ -7,6 +7,7 @@ # Load Generic Libraries . /opt/bitnami/scripts/libfs.sh +. /opt/bitnami/scripts/libos.sh . /opt/bitnami/scripts/liblog.sh . /opt/bitnami/scripts/libversion.sh @@ -34,14 +35,28 @@ persist_app() { warn "No files are configured to be persisted" return fi - local file_to_persist_origin file_to_persist_destination file_to_persist_destination_folder + pushd "$install_dir" >/dev/null + local file_to_persist_destination file_to_persist_destination_folder + local -r tmp_file="/tmp/perms.acl" for file_to_persist in "${files_to_persist[@]}"; do - file_to_persist_origin="${install_dir}/${file_to_persist}" file_to_persist_destination="${persist_dir}/${file_to_persist}" file_to_persist_destination_folder="$(dirname "$file_to_persist_destination")" - mkdir -p "$file_to_persist_destination_folder" - cp -Lr "$file_to_persist_origin" "$file_to_persist_destination_folder" + # Get original permissions (except for the root directory, to avoid issues with volumes) + find "$file_to_persist" | grep -E -v '^\.$' | xargs getfacl -R > "$tmp_file" + # Copy directories to the volume + ensure_dir_exists "$file_to_persist_destination_folder" + cp -Lr --preserve=links "$file_to_persist" "$file_to_persist_destination_folder" + # Restore permissions + pushd "$persist_dir" >/dev/null + if am_i_root; then + setfacl --restore="$tmp_file" + else + # When running as non-root, don't change ownership + setfacl --restore=<(grep -E -v '^# (owner|group):' "$tmp_file") + fi + popd >/dev/null done + popd >/dev/null # Install the persisted files into the installation directory, via symlinks restore_persisted_app "$@" } diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 5c97e4cbc27d..c4ec33a1c304 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r54`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r54/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r55`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r55/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 6da8872314d84e93c4e4ee7533e4d80f088ed905 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 27 Jun 2020 02:03:04 +0000 Subject: [PATCH 411/950] 2.0.4-debian-10-r56 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../prebuildfs/opt/bitnami/scripts/libfs.sh | 16 ++++++++++++++++ .../opt/bitnami/scripts/libpersistence.sh | 18 ++++++++++-------- bitnami/kong/README.md | 2 +- 4 files changed, 28 insertions(+), 10 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 8f89f3de62a5..9b8ad1cea16c 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r55" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r56" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh index c7c94c3ba988..257c4297590a 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh @@ -95,6 +95,22 @@ is_file_writable() { fi } +######################## +# Relativize a path +# arguments: +# $1 - path +# $2 - base +# returns: +# None +######################### +relativize() { + local -r path="${1:?missing path}" + local -r base="${2:?missing base}" + pushd / >/dev/null + realpath -q --no-symlinks --relative-base="$base" "$path" | sed -e 's|^/$|.|' -e 's|^/||' + popd >/dev/null +} + ######################## # Configure permisions and ownership recursively # Globals: diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh index a7e977516d3a..dce83ffca153 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh @@ -36,16 +36,17 @@ persist_app() { return fi pushd "$install_dir" >/dev/null - local file_to_persist_destination file_to_persist_destination_folder + local file_to_persist_relative file_to_persist_destination file_to_persist_destination_folder local -r tmp_file="/tmp/perms.acl" for file_to_persist in "${files_to_persist[@]}"; do - file_to_persist_destination="${persist_dir}/${file_to_persist}" + file_to_persist_relative="$(relativize "$file_to_persist" "$install_dir")" + file_to_persist_destination="${persist_dir}/${file_to_persist_relative}" file_to_persist_destination_folder="$(dirname "$file_to_persist_destination")" # Get original permissions (except for the root directory, to avoid issues with volumes) - find "$file_to_persist" | grep -E -v '^\.$' | xargs getfacl -R > "$tmp_file" + find "$file_to_persist_relative" | grep -E -v '^\.$' | xargs getfacl -R > "$tmp_file" # Copy directories to the volume ensure_dir_exists "$file_to_persist_destination_folder" - cp -Lr --preserve=links "$file_to_persist" "$file_to_persist_destination_folder" + cp -Lr --preserve=links "$file_to_persist_relative" "$file_to_persist_destination_folder" # Restore permissions pushd "$persist_dir" >/dev/null if am_i_root; then @@ -84,11 +85,12 @@ restore_persisted_app() { warn "No persisted files are configured to be restored" return fi - local file_to_restore_origin file_to_restore_destination + local file_to_restore_relative file_to_restore_origin file_to_restore_destination for file_to_restore in "${files_to_restore[@]}"; do - # We use realpath to ensure that the case of '.' is covered and the directory is removed - file_to_restore_origin="$(realpath "${install_dir}/${file_to_restore}")" - file_to_restore_destination="$(realpath "${persist_dir}/${file_to_restore}")" + file_to_restore_relative="$(relativize "$file_to_restore" "$install_dir")" + # We use 'realpath --no-symlinks' to ensure that the case of '.' is covered and the directory is removed + file_to_restore_origin="$(realpath --no-symlinks "${install_dir}/${file_to_restore_relative}")" + file_to_restore_destination="$(realpath --no-symlinks "${persist_dir}/${file_to_restore_relative}")" rm -rf "$file_to_restore_origin" ln -sfn "$file_to_restore_destination" "$file_to_restore_origin" done diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c4ec33a1c304..9f863fe994eb 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r55`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r55/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r56`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r56/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9635cf1619c80ca20d0b9c6a127f7b69ec40d1af Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 28 Jun 2020 02:42:38 +0000 Subject: [PATCH 412/950] 2.0.4-debian-10-r57 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 9b8ad1cea16c..6fc36f34802d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r56" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r57" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9f863fe994eb..f7494cd33f5a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r56`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r56/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r57`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r57/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e7d9f264a60b0a76cc1226815c951247a566d862 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 29 Jun 2020 03:14:32 +0000 Subject: [PATCH 413/950] 2.0.4-debian-10-r58 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 6fc36f34802d..0f4b981d507a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r57" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r58" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f7494cd33f5a..2cd9b5deee7b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r57`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r57/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r58`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r58/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 253fed3dd7514d36ece092ac07a7c0c319373b4d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 30 Jun 2020 03:46:41 +0000 Subject: [PATCH 414/950] 2.0.4-debian-10-r59 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh | 2 +- .../prebuildfs/opt/bitnami/scripts/libpersistence.sh | 4 ++++ bitnami/kong/README.md | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0f4b981d507a..66c0d18fcc4f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r58" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r59" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh index 257c4297590a..8f37ecbd823e 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh @@ -106,7 +106,7 @@ is_file_writable() { relativize() { local -r path="${1:?missing path}" local -r base="${2:?missing base}" - pushd / >/dev/null + pushd "$base" >/dev/null realpath -q --no-symlinks --relative-base="$base" "$path" | sed -e 's|^/$|.|' -e 's|^/||' popd >/dev/null } diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh index dce83ffca153..6e42c882dbff 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh @@ -39,6 +39,10 @@ persist_app() { local file_to_persist_relative file_to_persist_destination file_to_persist_destination_folder local -r tmp_file="/tmp/perms.acl" for file_to_persist in "${files_to_persist[@]}"; do + if [[ ! -f "$file_to_persist" && ! -d "$file_to_persist" ]]; then + error "Cannot persist '${file_to_persist}' because it does not exist" + return 1 + fi file_to_persist_relative="$(relativize "$file_to_persist" "$install_dir")" file_to_persist_destination="${persist_dir}/${file_to_persist_relative}" file_to_persist_destination_folder="$(dirname "$file_to_persist_destination")" diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2cd9b5deee7b..13bbbfa6197e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r58`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r58/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r59`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r59/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From aa71f71662ac6ffac749c9b80c430f3cf3dff722 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 1 Jul 2020 04:27:47 +0000 Subject: [PATCH 415/950] 2.0.4-debian-10-r60 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 66c0d18fcc4f..9c47bd7acaa3 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r59" \ + BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r60" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 13bbbfa6197e..7da83aa292e5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r59`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r59/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.4-debian-10-r60`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r60/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 297e0c486abfbdacfbc3460c0bc563d5bfd4a050 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 1 Jul 2020 17:06:34 +0000 Subject: [PATCH 416/950] 2.0.5-debian-10-r0 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh | 2 ++ bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 9c47bd7acaa3..b931fb543b9f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.4-10" --checksum 47a0e3e6716feb73f57e7e25cb5f95841b390b8411c10114bd0671968a48ae26 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.5-0" --checksum ee638e9588fb1cd3db2825a768627251a329aba7bd2a8e270c23eb01c3e5b7cb RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-1" --checksum 51cfb1b7fd7b05b8abd1df0278c698103a9b1a4964bdacd87ca1d5c01631d59c RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.4-debian-10-r60" \ + BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh index 23da5c787d9c..78c85c5ad384 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh @@ -139,6 +139,7 @@ web_server_reload() { # --document-root - Path to document root directory # Apache-specific flags: # --apache-additional-configuration - Additional vhost configuration (no default) +# --apache-before-vhost-configuration - Configuration to add before the 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-move-htaccess - Move .htaccess files to a common place so they can be loaded during Apache startup @@ -170,6 +171,7 @@ ensure_web_server_app_configuration_exists() { # Specific Apache flags --apache-additional-configuration \ + | --apache-before-vhost-configuration \ | --apache-allow-override \ | --apache-extra-directory-configuration \ | --apache-move-htaccess \ diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7da83aa292e5..e8e3d8225411 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.4-debian-10-r60`, `2`, `2.0.4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.4-debian-10-r60/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.5-debian-10-r0`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From a08ecfcbd5c260238aefd1d6c2bd3b0061cc630a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 1 Jul 2020 19:20:21 +0000 Subject: [PATCH 417/950] 2.0.5-debian-10-r1 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index b931fb543b9f..619a2a1fdaa0 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.5-0" --checksum ee638e9588fb1cd3db2825a768627251a329aba7bd2a8e270c23eb01c3e5b7cb +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.5-1" --checksum d165f7554f194802b2b277817fc7745138eaa621aa2d3aea1f09bb57f8fb0041 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-1" --checksum 51cfb1b7fd7b05b8abd1df0278c698103a9b1a4964bdacd87ca1d5c01631d59c RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e8e3d8225411..e5d30b190a86 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.5-debian-10-r0`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r0/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.5-debian-10-r1`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r1/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f7729c1405fb2fa0ad3c535967c3a0ea40f46097 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 2 Jul 2020 19:54:50 +0000 Subject: [PATCH 418/950] 2.0.5-debian-10-r2 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 619a2a1fdaa0..20fb024407b5 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e5d30b190a86..5e320a52a708 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.5-debian-10-r1`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r1/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.5-debian-10-r2`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r2/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From a38d67e03fd760144e47ed7e5bc8f2cbfd9209f9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 3 Jul 2020 20:28:25 +0000 Subject: [PATCH 419/950] 2.0.5-debian-10-r3 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 20fb024407b5..8aca6c0417ab 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 5e320a52a708..b5225230f611 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.5-debian-10-r2`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r2/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.5-debian-10-r3`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r3/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 2b6efe3a28b3669fabf8a2a047583e06765215fa Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 4 Jul 2020 21:08:08 +0000 Subject: [PATCH 420/950] 2.0.5-debian-10-r4 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 8aca6c0417ab..ead9dfde4550 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b5225230f611..da047b892312 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.5-debian-10-r3`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r3/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.5-debian-10-r4`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r4/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e37cec7d2f2c3cfaa012fcb7623eeb60adc58e3e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 5 Jul 2020 21:44:49 +0000 Subject: [PATCH 421/950] 2.0.5-debian-10-r5 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index ead9dfde4550..6b6bfca7f377 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index da047b892312..ff0530ec71f7 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.5-debian-10-r4`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r4/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.5-debian-10-r5`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r5/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 6596dc5ad4f4066928df45c9515b31aa1e1317dd Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 6 Jul 2020 03:59:23 +0000 Subject: [PATCH 422/950] 2.0.5-debian-10-r6 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- bitnami/kong/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 6b6bfca7f377..f9edd98c1cae 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.5-1" --checksum d165f7554f194802b2b277817fc7745138eaa621aa2d3aea1f09bb57f8fb0041 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.5-2" --checksum b2d87564556fded2e5782574e24e4b9c15736a5275eadfe3cdde7438c41f26df RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-1" --checksum 51cfb1b7fd7b05b8abd1df0278c698103a9b1a4964bdacd87ca1d5c01631d59c RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index ff0530ec71f7..24cd87cdf213 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.5-debian-10-r5`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r5/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.5-debian-10-r6`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r6/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 90e51b98a72159a0aed4c7d49210da8b77c3984f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 7 Jul 2020 04:37:51 +0000 Subject: [PATCH 423/950] 2.0.5-debian-10-r7 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index f9edd98c1cae..ca1d19ca67c3 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 24cd87cdf213..8e874be1b8be 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.5-debian-10-r6`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r6/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.5-debian-10-r7`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r7/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 3818e9b7dc72c30d8d9e0fcb0e414bdad8056717 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 8 Jul 2020 05:16:43 +0000 Subject: [PATCH 424/950] 2.0.5-debian-10-r8 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index ca1d19ca67c3..32b5d5b67556 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 8e874be1b8be..d2861f9a2a37 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.5-debian-10-r7`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r7/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.5-debian-10-r8`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r8/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From a59a780bf6c1b002b2b0e059bc3c7a4ec9fd3080 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 9 Jul 2020 05:50:08 +0000 Subject: [PATCH 425/950] 2.0.5-debian-10-r9 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../opt/bitnami/scripts/libwebserver.sh | 58 ++++++++++++++++--- bitnami/kong/README.md | 2 +- 3 files changed, 52 insertions(+), 10 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 32b5d5b67556..69063f9c4b5c 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get upgrade -y && \ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh index 78c85c5ad384..d74114834f8e 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh @@ -150,7 +150,7 @@ web_server_reload() { ######################## ensure_web_server_app_configuration_exists() { local app="${1:?missing app}" - local -a args=() + local -a args=("$app") # Validate arguments shift while [[ "$#" -gt 0 ]]; do @@ -165,7 +165,7 @@ ensure_web_server_app_configuration_exists() { | --https-port \ | --document-root \ ) - args+=("$1" "$2") + args+=("$1" "${2:?missing value}") shift ;; @@ -176,13 +176,13 @@ ensure_web_server_app_configuration_exists() { | --apache-extra-directory-configuration \ | --apache-move-htaccess \ ) - [[ "$(web_server_type)" == "apache" ]] && args+=("${1//apache-/}" "$2") + [[ "$(web_server_type)" == "apache" ]] && args+=("${1//apache-/}" "${2:?missing value}") shift ;; # Specific NGINX flags --nginx-additional-configuration) - [[ "$(web_server_type)" == "nginx" ]] && args+=("${1//nginx-/}" "$2") + [[ "$(web_server_type)" == "nginx" ]] && args+=("${1//nginx-/}" "${2:?missing value}") shift ;; @@ -193,7 +193,7 @@ ensure_web_server_app_configuration_exists() { esac shift done - "ensure_$(web_server_type)_app_configuration_exists" "$app" "${args[@]}" + "ensure_$(web_server_type)_app_configuration_exists" "${args[@]}" } ######################## @@ -235,7 +235,7 @@ ensure_web_server_app_configuration_not_exists() { ######################## ensure_web_server_prefix_configuration_exists() { local app="${1:?missing app}" - local -a args=() + local -a args=("$app") # Validate arguments shift while [[ "$#" -gt 0 ]]; do @@ -246,7 +246,7 @@ ensure_web_server_prefix_configuration_exists() { | --prefix \ | --type \ ) - args+=("$1" "$2") + args+=("$1" "${2:?missing value}") shift ;; @@ -273,7 +273,49 @@ ensure_web_server_prefix_configuration_exists() { esac shift done - "ensure_$(web_server_type)_prefix_configuration_exists" "$app" "${args[@]}" + "ensure_$(web_server_type)_prefix_configuration_exists" "${args[@]}" +} + +######################## +# Ensure a web server application configuration is updated with the runtime configuration (i.e. ports) +# It serves as a wrapper for the specific web server function +# Globals: +# * +# Arguments: +# $1 - App name +# Flags: +# --hosts - Hosts to enable +# --enable-https - Update HTTPS app configuration +# --http-port - HTTP port number +# --https-port - HTTPS port number +# Returns: +# true if the configuration was updated, false otherwise +######################## +web_server_update_app_configuration() { + local app="${1:?missing app}" + local -a args=("$app") + # Validate arguments + shift + while [[ "$#" -gt 0 ]]; do + case "$1" in + # Common flags + --hosts \ + | --enable-https \ + | --http-port \ + | --https-port \ + ) + args+=("$1" "${2:?missing value}") + shift + ;; + + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; + esac + shift + done + "$(web_server_type)_update_app_configuration" "${args[@]}" } ######################## diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d2861f9a2a37..59e6a008dfb7 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.5-debian-10-r8`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r8/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.5-debian-10-r9`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r9/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7098c13d3c032d126d2d103218229195e6ec8d25 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 14 Jul 2020 12:29:18 +0000 Subject: [PATCH 426/950] 2.0.5-debian-10-r10 release --- bitnami/kong/2/debian-10/Dockerfile | 3 +- .../prebuildfs/opt/bitnami/scripts/libos.sh | 12 ++++ .../opt/bitnami/scripts/libpersistence.sh | 6 +- .../opt/bitnami/scripts/libservice.sh | 58 +++++++++++++++++++ bitnami/kong/README.md | 2 +- 5 files changed, 77 insertions(+), 4 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 69063f9c4b5c..e9c5cfd08b36 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -13,11 +13,12 @@ RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.5-2" RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-1" --checksum 51cfb1b7fd7b05b8abd1df0278c698103a9b1a4964bdacd87ca1d5c01631d59c RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives +RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r10" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh index 17309d011b4f..cc45a19ce099 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh @@ -277,3 +277,15 @@ generate_random_string() { result="$(head -n "$((count + 10))" /dev/urandom | tr -dc "$filter" | head -c "$count")" echo "$result" } + +######################## +# Create md5 hash from a string +# Arguments: +# $1 - string +# Returns: +# md5 hash - string +######################### +generate_md5_hash() { + local -r str="${1:?missing input string}" + echo -n "$str" | md5sum | awk '{print $1}' +} diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh index 6e42c882dbff..452c1f4b2831 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh @@ -46,8 +46,9 @@ persist_app() { file_to_persist_relative="$(relativize "$file_to_persist" "$install_dir")" file_to_persist_destination="${persist_dir}/${file_to_persist_relative}" file_to_persist_destination_folder="$(dirname "$file_to_persist_destination")" - # Get original permissions (except for the root directory, to avoid issues with volumes) - find "$file_to_persist_relative" | grep -E -v '^\.$' | xargs getfacl -R > "$tmp_file" + # Get original permissions for existing files, which will be applied later + # Exclude the root directory with 'sed', to avoid issues when copying the entirety of it to a volume + getfacl -R "$file_to_persist_relative" | sed -E '/# file: (\..+|[^.])/,$!d' > "$tmp_file" # Copy directories to the volume ensure_dir_exists "$file_to_persist_destination_folder" cp -Lr --preserve=links "$file_to_persist_relative" "$file_to_persist_destination_folder" @@ -62,6 +63,7 @@ persist_app() { popd >/dev/null done popd >/dev/null + rm -f "$tmp_file" # Install the persisted files into the installation directory, via symlinks restore_persisted_app "$@" } diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh index cd68366f90ac..0fa91f65fc4f 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh @@ -68,6 +68,64 @@ stop_service_using_pid() { done } +######################## +# Start cron daemon +# Arguments: +# None +# Returns: +# true if started correctly, false otherwise +######################### +cron_start() { + if [[ -x "/usr/sbin/cron" ]]; then + /usr/sbin/cron + elif [[ -x "/usr/sbin/crond" ]]; then + /usr/sbin/crond + else + false + fi +} + +######################## +# Generate a cron configuration file for a given service +# Arguments: +# $1 - Service name +# $2 - Command +# Flags: +# --run-as - User to run as (default: root) +# --schedule - Cron schedule configuration (default: * * * * *) +# Returns: +# None +######################### +generate_cron_conf() { + local service_name="${1:?service name is missing}" + local cmd="${2:?command is missing}" + local run_as="root" + local schedule="* * * * *" + + # Parse optional CLI flags + shift 2 + while [[ "$#" -gt 0 ]]; do + case "$1" in + --run-as) + shift + run_as="$1" + ;; + --schedule) + shift + schedule="$1" + ;; + *) + echo "Invalid command line flag ${1}" >&2 + return 1 + ;; + esac + shift + done + + mkdir -p /etc/cron.d + echo "${schedule} ${run_as} ${cmd}" > /etc/cron.d/"$service_name" +} + ######################## # Generate a monit configuration file for a given service # Arguments: diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 59e6a008dfb7..0c88f8f42087 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.5-debian-10-r9`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r9/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.5-debian-10-r10`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r10/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 365adefc28db0cfdf0f1e10532084f637bbb1067 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 15 Jul 2020 17:51:21 +0000 Subject: [PATCH 427/950] 2.0.5-debian-10-r11 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../opt/bitnami/scripts/libwebserver.sh | 248 ++++++++++-------- bitnami/kong/README.md | 2 +- 3 files changed, 144 insertions(+), 108 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index e9c5cfd08b36..efdc44e52332 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r10" \ + BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r11" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh index d74114834f8e..4aefa86cd862 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh @@ -11,12 +11,26 @@ [[ -f "/opt/bitnami/scripts/libapache.sh" ]] && . /opt/bitnami/scripts/libapache.sh [[ -f "/opt/bitnami/scripts/libnginx.sh" ]] && . /opt/bitnami/scripts/libnginx.sh -# Load environment for all configured web servers -[[ -f "/opt/bitnami/scripts/apache-env.sh" ]] && . /opt/bitnami/scripts/apache-env.sh -[[ -f "/opt/bitnami/scripts/nginx-env.sh" ]] && . /opt/bitnami/scripts/nginx-env.sh +######################## +# Prints the list of enabled web servers +# Globals: +# WEB_SERVER_TYPE +# Arguments: +# None +# Returns: +# None +######################### +web_server_list() { + local -r -a supported_web_servers=(apache nginx) + local -a existing_web_servers=() + for web_server in "${supported_web_servers[@]}"; do + [[ -f "/opt/bitnami/scripts/${web_server}-env.sh" ]] && existing_web_servers+=("$web_server") + done + echo "${existing_web_servers[@]:-}" +} ######################## -# Prints the currently-enabled web server type +# Prints the currently-enabled web server type (only one, in order of preference) # Globals: # WEB_SERVER_TYPE # Arguments: @@ -25,7 +39,9 @@ # None ######################### web_server_type() { - echo "$WEB_SERVER_TYPE" + local -a web_servers + read -r -a web_servers <<< "$(web_server_list)" + echo "${web_servers[0]:-}" } ######################## @@ -79,6 +95,7 @@ is_web_server_running() { # None ######################### web_server_start() { + info "Starting $(web_server_type) in background" "${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/start.sh" } @@ -92,6 +109,7 @@ web_server_start() { # None ######################### web_server_stop() { + info "Stopping $(web_server_type)" "${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/stop.sh" } @@ -105,6 +123,7 @@ web_server_stop() { # None ######################### web_server_restart() { + info "Restarting $(web_server_type)" "${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/restart.sh" } @@ -118,6 +137,7 @@ web_server_restart() { # None ######################### web_server_reload() { + info "Reloading $(web_server_type) configuration" "${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/reload.sh" } @@ -150,50 +170,54 @@ web_server_reload() { ######################## ensure_web_server_app_configuration_exists() { local app="${1:?missing app}" - local -a args=("$app") - # Validate arguments - shift - while [[ "$#" -gt 0 ]]; do - case "$1" in - # Common flags - --hosts \ - | --type \ - | --allow-remote-connections \ - | --disabled \ - | --enable-https \ - | --http-port \ - | --https-port \ - | --document-root \ - ) - args+=("$1" "${2:?missing value}") - shift - ;; - - # Specific Apache flags - --apache-additional-configuration \ - | --apache-before-vhost-configuration \ - | --apache-allow-override \ - | --apache-extra-directory-configuration \ - | --apache-move-htaccess \ - ) - [[ "$(web_server_type)" == "apache" ]] && args+=("${1//apache-/}" "${2:?missing value}") - shift - ;; - - # Specific NGINX flags - --nginx-additional-configuration) - [[ "$(web_server_type)" == "nginx" ]] && args+=("${1//nginx-/}" "${2:?missing value}") - shift - ;; - - *) - echo "Invalid command line flag $1" >&2 - return 1 - ;; - esac + local -a web_servers args + read -r -a web_servers <<< "$(web_server_list)" + for web_server in "${web_servers[@]}"; do + args=("$app") + # Validate arguments shift + while [[ "$#" -gt 0 ]]; do + case "$1" in + # Common flags + --hosts \ + | --type \ + | --allow-remote-connections \ + | --disabled \ + | --enable-https \ + | --http-port \ + | --https-port \ + | --document-root \ + ) + args+=("$1" "${2:?missing value}") + shift + ;; + + # Specific Apache flags + --apache-additional-configuration \ + | --apache-before-vhost-configuration \ + | --apache-allow-override \ + | --apache-extra-directory-configuration \ + | --apache-move-htaccess \ + ) + [[ "$web_server" == "apache" ]] && args+=("${1//apache-/}" "${2:?missing value}") + shift + ;; + + # Specific NGINX flags + --nginx-additional-configuration) + [[ "$web_server" == "nginx" ]] && args+=("${1//nginx-/}" "${2:?missing value}") + shift + ;; + + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; + esac + shift + done + "ensure_${web_server}_app_configuration_exists" "${args[@]}" done - "ensure_$(web_server_type)_app_configuration_exists" "${args[@]}" } ######################## @@ -208,7 +232,11 @@ ensure_web_server_app_configuration_exists() { ######################## ensure_web_server_app_configuration_not_exists() { local app="${1:?missing app}" - "ensure_$(web_server_type)_app_configuration_not_exists" "$app" + local -a web_servers + read -r -a web_servers <<< "$(web_server_list)" + for web_server in "${web_servers[@]}"; do + "ensure_${web_server}_app_configuration_not_exists" "$app" + done } ######################## @@ -235,45 +263,49 @@ ensure_web_server_app_configuration_not_exists() { ######################## ensure_web_server_prefix_configuration_exists() { local app="${1:?missing app}" - local -a args=("$app") - # Validate arguments - shift - while [[ "$#" -gt 0 ]]; do - case "$1" in - # Common flags - --allow-remote-connections \ - | --document-root \ - | --prefix \ - | --type \ - ) - args+=("$1" "${2:?missing value}") - shift - ;; - - # Specific Apache flags - --apache-additional-configuration \ - | --apache-allow-override \ - | --apache-extra-directory-configuration \ - | --apache-move-htaccess \ - ) - [[ "$(web_server_type)" == "apache" ]] && args+=("${1//apache-/}" "$2") - shift - ;; - - # Specific NGINX flags - --nginx-additional-configuration) - [[ "$(web_server_type)" == "nginx" ]] && args+=("${1//nginx-/}" "$2") - shift - ;; - - *) - echo "Invalid command line flag $1" >&2 - return 1 - ;; - esac + local -a web_servers args + read -r -a web_servers <<< "$(web_server_list)" + for web_server in "${web_servers[@]}"; do + args=("$app") + # Validate arguments shift + while [[ "$#" -gt 0 ]]; do + case "$1" in + # Common flags + --allow-remote-connections \ + | --document-root \ + | --prefix \ + | --type \ + ) + args+=("$1" "${2:?missing value}") + shift + ;; + + # Specific Apache flags + --apache-additional-configuration \ + | --apache-allow-override \ + | --apache-extra-directory-configuration \ + | --apache-move-htaccess \ + ) + [[ "$web_server" == "apache" ]] && args+=("${1//apache-/}" "$2") + shift + ;; + + # Specific NGINX flags + --nginx-additional-configuration) + [[ "$web_server" == "nginx" ]] && args+=("${1//nginx-/}" "$2") + shift + ;; + + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; + esac + shift + done + "ensure_${web_server}_prefix_configuration_exists" "${args[@]}" done - "ensure_$(web_server_type)_prefix_configuration_exists" "${args[@]}" } ######################## @@ -293,29 +325,33 @@ ensure_web_server_prefix_configuration_exists() { ######################## web_server_update_app_configuration() { local app="${1:?missing app}" - local -a args=("$app") - # Validate arguments - shift - while [[ "$#" -gt 0 ]]; do - case "$1" in - # Common flags - --hosts \ - | --enable-https \ - | --http-port \ - | --https-port \ - ) - args+=("$1" "${2:?missing value}") - shift - ;; - - *) - echo "Invalid command line flag $1" >&2 - return 1 - ;; - esac + local -a web_servers args + read -r -a web_servers <<< "$(web_server_list)" + for web_server in "${web_servers[@]}"; do + args=("$app") + # Validate arguments shift + while [[ "$#" -gt 0 ]]; do + case "$1" in + # Common flags + --hosts \ + | --enable-https \ + | --http-port \ + | --https-port \ + ) + args+=("$1" "${2:?missing value}") + shift + ;; + + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; + esac + shift + done + "${web_server}_update_app_configuration" "${args[@]}" done - "$(web_server_type)_update_app_configuration" "${args[@]}" } ######################## diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0c88f8f42087..6cf7386b20a8 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.5-debian-10-r10`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r10/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.5-debian-10-r11`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r11/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 669608d54d8a884724e51d1a383dce9a6a3e3bac Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 16 Jul 2020 22:55:59 +0000 Subject: [PATCH 428/950] 2.0.5-debian-10-r12 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index efdc44e52332..bb1d51e3f12a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r11" \ + BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r12" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 6cf7386b20a8..f0cfad27a143 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.5-debian-10-r11`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r11/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.5-debian-10-r12`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r12/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b1f6aae4ad55ba7497de9a3b9bbfb1d855f02895 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 18 Jul 2020 08:58:29 +0000 Subject: [PATCH 429/950] 2.0.5-debian-10-r13 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index bb1d51e3f12a..7aa6be41be4a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r12" \ + BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r13" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f0cfad27a143..9fa72a4bf405 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.5-debian-10-r12`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r12/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.5-debian-10-r13`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r13/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 424b9c529a16567494f19470eac4939e3bd9491e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 19 Jul 2020 09:45:27 +0000 Subject: [PATCH 430/950] 2.0.5-debian-10-r14 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 7aa6be41be4a..2e7d3b6b790a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r13" \ + BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r14" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9fa72a4bf405..2cb61c099c10 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.5-debian-10-r13`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r13/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.5-debian-10-r14`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r14/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 2a2052b163264b213baa3d4faeaeeecf2c81bb33 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 28 Jul 2020 07:48:23 +0000 Subject: [PATCH 431/950] 2.0.5-debian-10-r15 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 2e7d3b6b790a..5c48142e9c92 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r14" \ + BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r15" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2cb61c099c10..bc1c95c253e1 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.5-debian-10-r14`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r14/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.5-debian-10-r15`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r15/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d982c762d6897c57e4c5721af3f41c0f238cafeb Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 5 Aug 2020 05:49:16 +0000 Subject: [PATCH 432/950] 2.0.5-debian-10-r16 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../opt/bitnami/.bitnami_components.json | 16 ++ .../opt/bitnami/scripts/libcomponent.sh | 4 - .../opt/bitnami/scripts/libwebserver.sh | 258 ++++++++++-------- bitnami/kong/README.md | 8 +- 5 files changed, 161 insertions(+), 127 deletions(-) create mode 100644 bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 5c48142e9c92..791cba069530 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r15" \ + BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r16" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json new file mode 100644 index 000000000000..25729e43ca66 --- /dev/null +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -0,0 +1,16 @@ +{ + "gosu": { + "arch": "amd64", + "digest": "51cfb1b7fd7b05b8abd1df0278c698103a9b1a4964bdacd87ca1d5c01631d59c", + "distro": "debian-10", + "type": "NAMI", + "version": "1.12.0-1" + }, + "kong": { + "arch": "amd64", + "digest": "b2d87564556fded2e5782574e24e4b9c15736a5275eadfe3cdde7438c41f26df", + "distro": "debian-10", + "type": "NAMI", + "version": "2.0.5-2" + } +} \ No newline at end of file diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libcomponent.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libcomponent.sh index 76083e1e0a1d..1d8c6bf24375 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libcomponent.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libcomponent.sh @@ -62,8 +62,4 @@ component_unpack() { fi tar --directory "${directory}" --extract --gunzip --file "${base_name}.tar.gz" --no-same-owner --strip-components=2 "${base_name}/files/" rm "${base_name}.tar.gz" - - # Include metadata about the package - touch "${directory}/.bitnami_packages" - echo "$base_name" >> "${directory}/.bitnami_packages" } diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh index 4aefa86cd862..7fce9bb4a9a0 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh @@ -2,19 +2,35 @@ # # Bitnami web server handler library -# shellcheck disable=SC1091 +# shellcheck disable=SC1090,SC1091 # Load generic libraries . /opt/bitnami/scripts/liblog.sh -# Load web server libraries -[[ -f "/opt/bitnami/scripts/libapache.sh" ]] && . /opt/bitnami/scripts/libapache.sh -[[ -f "/opt/bitnami/scripts/libnginx.sh" ]] && . /opt/bitnami/scripts/libnginx.sh +######################## +# Execute a command (or list of commands) with the web server environment and library loaded +# Globals: +# * +# Arguments: +# None +# Returns: +# None +######################### +web_server_execute() { + local -r web_server="${1:?missing web server}" + shift + # Run program in sub-shell to avoid web server environment getting loaded when not necessary + ( + . "/opt/bitnami/scripts/lib${web_server}.sh" + . "/opt/bitnami/scripts/${web_server}-env.sh" + "$@" + ) +} ######################## # Prints the list of enabled web servers # Globals: -# WEB_SERVER_TYPE +# None # Arguments: # None # Returns: @@ -32,7 +48,7 @@ web_server_list() { ######################## # Prints the currently-enabled web server type (only one, in order of preference) # Globals: -# WEB_SERVER_TYPE +# None # Arguments: # None # Returns: @@ -47,7 +63,7 @@ web_server_type() { ######################## # Validate that a supported web server is configured # Globals: -# WEB_SERVER_* +# None # Arguments: # None # Returns: @@ -65,7 +81,7 @@ web_server_validate() { if [[ -z "$(web_server_type)" || ! " ${supported_web_servers[*]} " == *" $(web_server_type) "* ]]; then print_validation_error "Could not detect any supported web servers. It must be one of: ${supported_web_servers[*]}" - elif ! type -t "is_$(web_server_type)_running" >/dev/null; then + elif ! web_server_execute "$(web_server_type)" type -t "is_$(web_server_type)_running" >/dev/null; then print_validation_error "Could not load the $(web_server_type) web server library from /opt/bitnami/scripts. Check that it exists and is readable." fi @@ -170,53 +186,56 @@ web_server_reload() { ######################## ensure_web_server_app_configuration_exists() { local app="${1:?missing app}" - local -a web_servers args + shift + local -a apache_args nginx_args web_servers args_var + apache_args=("$app") + nginx_args=("$app") + # Validate arguments + while [[ "$#" -gt 0 ]]; do + case "$1" in + # Common flags + --hosts \ + | --type \ + | --allow-remote-connections \ + | --disabled \ + | --enable-https \ + | --http-port \ + | --https-port \ + | --document-root \ + ) + apache_args+=("$1" "${2:?missing value}") + nginx_args+=("$1" "${2:?missing value}") + shift + ;; + + # Specific Apache flags + --apache-additional-configuration \ + | --apache-before-vhost-configuration \ + | --apache-allow-override \ + | --apache-extra-directory-configuration \ + | --apache-move-htaccess \ + ) + apache_args+=("${1//apache-/}" "${2:?missing value}") + shift + ;; + + # Specific NGINX flags + --nginx-additional-configuration) + nginx_args+=("${1//nginx-/}" "${2:?missing value}") + shift + ;; + + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; + esac + shift + done read -r -a web_servers <<< "$(web_server_list)" for web_server in "${web_servers[@]}"; do - args=("$app") - # Validate arguments - shift - while [[ "$#" -gt 0 ]]; do - case "$1" in - # Common flags - --hosts \ - | --type \ - | --allow-remote-connections \ - | --disabled \ - | --enable-https \ - | --http-port \ - | --https-port \ - | --document-root \ - ) - args+=("$1" "${2:?missing value}") - shift - ;; - - # Specific Apache flags - --apache-additional-configuration \ - | --apache-before-vhost-configuration \ - | --apache-allow-override \ - | --apache-extra-directory-configuration \ - | --apache-move-htaccess \ - ) - [[ "$web_server" == "apache" ]] && args+=("${1//apache-/}" "${2:?missing value}") - shift - ;; - - # Specific NGINX flags - --nginx-additional-configuration) - [[ "$web_server" == "nginx" ]] && args+=("${1//nginx-/}" "${2:?missing value}") - shift - ;; - - *) - echo "Invalid command line flag $1" >&2 - return 1 - ;; - esac - shift - done - "ensure_${web_server}_app_configuration_exists" "${args[@]}" + args_var="${web_server}_args[@]" + web_server_execute "$web_server" "ensure_${web_server}_app_configuration_exists" "${!args_var}" done } @@ -235,7 +254,7 @@ ensure_web_server_app_configuration_not_exists() { local -a web_servers read -r -a web_servers <<< "$(web_server_list)" for web_server in "${web_servers[@]}"; do - "ensure_${web_server}_app_configuration_not_exists" "$app" + web_server_execute "$web_server" "ensure_${web_server}_app_configuration_not_exists" "$app" done } @@ -263,48 +282,51 @@ ensure_web_server_app_configuration_not_exists() { ######################## ensure_web_server_prefix_configuration_exists() { local app="${1:?missing app}" - local -a web_servers args + shift + local -a apache_args nginx_args web_servers args_var + apache_args=("$app") + nginx_args=("$app") + # Validate arguments + while [[ "$#" -gt 0 ]]; do + case "$1" in + # Common flags + --allow-remote-connections \ + | --document-root \ + | --prefix \ + | --type \ + ) + apache_args+=("$1" "${2:?missing value}") + nginx_args+=("$1" "${2:?missing value}") + shift + ;; + + # Specific Apache flags + --apache-additional-configuration \ + | --apache-allow-override \ + | --apache-extra-directory-configuration \ + | --apache-move-htaccess \ + ) + apache_args+=("${1//apache-/}" "$2") + shift + ;; + + # Specific NGINX flags + --nginx-additional-configuration) + nginx_args+=("${1//nginx-/}" "$2") + shift + ;; + + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; + esac + shift + done read -r -a web_servers <<< "$(web_server_list)" for web_server in "${web_servers[@]}"; do - args=("$app") - # Validate arguments - shift - while [[ "$#" -gt 0 ]]; do - case "$1" in - # Common flags - --allow-remote-connections \ - | --document-root \ - | --prefix \ - | --type \ - ) - args+=("$1" "${2:?missing value}") - shift - ;; - - # Specific Apache flags - --apache-additional-configuration \ - | --apache-allow-override \ - | --apache-extra-directory-configuration \ - | --apache-move-htaccess \ - ) - [[ "$web_server" == "apache" ]] && args+=("${1//apache-/}" "$2") - shift - ;; - - # Specific NGINX flags - --nginx-additional-configuration) - [[ "$web_server" == "nginx" ]] && args+=("${1//nginx-/}" "$2") - shift - ;; - - *) - echo "Invalid command line flag $1" >&2 - return 1 - ;; - esac - shift - done - "ensure_${web_server}_prefix_configuration_exists" "${args[@]}" + args_var="${web_server}_args[@]" + web_server_execute "$web_server" "ensure_${web_server}_prefix_configuration_exists" "${!args_var}" done } @@ -325,32 +347,32 @@ ensure_web_server_prefix_configuration_exists() { ######################## web_server_update_app_configuration() { local app="${1:?missing app}" - local -a web_servers args + shift + local -a args web_servers + args=("$app") + # Validate arguments + while [[ "$#" -gt 0 ]]; do + case "$1" in + # Common flags + --hosts \ + | --enable-https \ + | --http-port \ + | --https-port \ + ) + args+=("$1" "${2:?missing value}") + shift + ;; + + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; + esac + shift + done read -r -a web_servers <<< "$(web_server_list)" for web_server in "${web_servers[@]}"; do - args=("$app") - # Validate arguments - shift - while [[ "$#" -gt 0 ]]; do - case "$1" in - # Common flags - --hosts \ - | --enable-https \ - | --http-port \ - | --https-port \ - ) - args+=("$1" "${2:?missing value}") - shift - ;; - - *) - echo "Invalid command line flag $1" >&2 - return 1 - ;; - esac - shift - done - "${web_server}_update_app_configuration" "${args[@]}" + web_server_execute "$web_server" "${web_server}_update_app_configuration" "${args[@]}" done } diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index bc1c95c253e1..82ba5978d88e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -4,7 +4,7 @@ [https://github.com/kong/kong](https://github.com/kong/kong) -# TL;DR; +# TL;DR ``` $ docker run --name kong bitnami/kong:latest @@ -22,8 +22,8 @@ $ docker-compose up -d * 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. * Bitnami containers, virtual machines and cloud images use the same components and configuration approach - making it easy to switch between formats based on your project needs. -* All our images are based on [minideb](https://github.com/bitnami/minideb) a minimalist Debian based container image which gives you a small base container image and the familiarity of a leading linux distribution. -* All Bitnami images available in Docker Hub are signed with [Docker Content Trust (DTC)](https://docs.docker.com/engine/security/trust/content_trust/). You can use `DOCKER_CONTENT_TRUST=1` to verify the integrity of the images. +* All our images are based on [minideb](https://github.com/bitnami/minideb) a minimalist Debian based container image which gives you a small base container image and the familiarity of a leading Linux distribution. +* All Bitnami images available in Docker Hub are signed with [Docker Content Trust (DCT)](https://docs.docker.com/engine/security/trust/content_trust/). You can use `DOCKER_CONTENT_TRUST=1` to verify the integrity of the images. * Bitnami container images are released daily with the latest distribution packages available. > This [CVE scan report](https://quay.io/repository/bitnami/kong?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. @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.5-debian-10-r15`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r15/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.5-debian-10-r16`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r16/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 33bbf7df0866ee243d03b47361b5598bc649fbe6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 7 Aug 2020 12:52:15 +0000 Subject: [PATCH 433/950] 2.0.5-debian-10-r17 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 791cba069530..f2e22f0c640b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r16" \ + BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r17" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 82ba5978d88e..fce98cb27bb7 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.5-debian-10-r16`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r16/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.0.5-debian-10-r17`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r17/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7c377e8c0da0e37d4654e969ca3b409477931378 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 11 Aug 2020 05:15:02 +0000 Subject: [PATCH 434/950] 2.1.1-debian-10-r0 release --- bitnami/kong/2/debian-10/Dockerfile | 6 +++--- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- .../debian-10/rootfs/opt/bitnami/scripts/kong/postunpack.sh | 3 +++ bitnami/kong/README.md | 2 +- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index f2e22f0c640b..caf1ce6e6b0e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -8,8 +8,8 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies -RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.0.5-2" --checksum b2d87564556fded2e5782574e24e4b9c15736a5275eadfe3cdde7438c41f26df +RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.1.1-0" --checksum 72d25fec27d94819b5f25863053dc3e8f2ba8d462bef0861d149b0fada25c9f3 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-1" --checksum 51cfb1b7fd7b05b8abd1df0278c698103a9b1a4964bdacd87ca1d5c01631d59c RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.0.5-debian-10-r17" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 25729e43ca66..fc9b97da5d69 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "b2d87564556fded2e5782574e24e4b9c15736a5275eadfe3cdde7438c41f26df", + "digest": "72d25fec27d94819b5f25863053dc3e8f2ba8d462bef0861d149b0fada25c9f3", "distro": "debian-10", "type": "NAMI", - "version": "2.0.5-2" + "version": "2.1.1-0" } } \ No newline at end of file diff --git a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/postunpack.sh b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/postunpack.sh index 8b0917d699d1..42a92faea51f 100755 --- a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/postunpack.sh +++ b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/postunpack.sh @@ -51,6 +51,9 @@ kong_conf_set() { kong_configure_non_empty_values() { # Uncomment all non-empty keys in the main Kong configuration file sed -ri 's/^#+([a-z_ ]+)=(\s*[^# ]+)/\1=\2 /' "$KONG_CONF_FILE" + + # Comment read-only postgres connection parameters again, as default values fail to work properly + sed -ri 's/(^pg_ro_.+)=(\s*[^# ]+)/#\1=\2 /' "$KONG_CONF_FILE" } # Load Kong environment variables diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index fce98cb27bb7..4335631a5734 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.0.5-debian-10-r17`, `2`, `2.0.5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.0.5-debian-10-r17/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.1.1-debian-10-r0`, `2`, `2.1.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.1-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From cc64221adeebd55aaac99e092355c915989f0a4d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 11 Aug 2020 14:03:14 +0000 Subject: [PATCH 435/950] 2.1.1-debian-10-r1 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index caf1ce6e6b0e..c38c6244f7d4 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.1.1-0" --checksum 72d25fec27d94819b5f25863053dc3e8f2ba8d462bef0861d149b0fada25c9f3 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.1.1-1" --checksum 1c25172ef8527cb66deaa7ae2bc82ec3b1ed71b2401a6f1c566db2fa447f1068 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-1" --checksum 51cfb1b7fd7b05b8abd1df0278c698103a9b1a4964bdacd87ca1d5c01631d59c RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index fc9b97da5d69..e42b4e8f34ad 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "72d25fec27d94819b5f25863053dc3e8f2ba8d462bef0861d149b0fada25c9f3", + "digest": "1c25172ef8527cb66deaa7ae2bc82ec3b1ed71b2401a6f1c566db2fa447f1068", "distro": "debian-10", "type": "NAMI", - "version": "2.1.1-0" + "version": "2.1.1-1" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4335631a5734..9925fad26e7f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.1.1-debian-10-r0`, `2`, `2.1.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.1-debian-10-r0/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.1.1-debian-10-r1`, `2`, `2.1.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.1-debian-10-r1/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d4b468e29729f23a97af040ebd2fe97dce460435 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 13 Aug 2020 17:36:56 +0000 Subject: [PATCH 436/950] 2.1.1-debian-10-r2 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c38c6244f7d4..f758a1bfb27e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9925fad26e7f..72d39c692a95 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.1.1-debian-10-r1`, `2`, `2.1.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.1-debian-10-r1/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.1.1-debian-10-r2`, `2`, `2.1.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.1-debian-10-r2/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From bd170eb712584ecafd39121a27949409938cf794 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 14 Aug 2020 07:58:29 +0000 Subject: [PATCH 437/950] 2.1.2-debian-10-r0 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index f758a1bfb27e..a6e08bcc6518 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.1.1-1" --checksum 1c25172ef8527cb66deaa7ae2bc82ec3b1ed71b2401a6f1c566db2fa447f1068 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.1.2-0" --checksum 96ebaca433672db16ab4e65e589ef8a5626455767bf57a11d40fa2545d230593 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-1" --checksum 51cfb1b7fd7b05b8abd1df0278c698103a9b1a4964bdacd87ca1d5c01631d59c RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.1-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.1.2-debian-10-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index e42b4e8f34ad..8a1c34e249fa 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "1c25172ef8527cb66deaa7ae2bc82ec3b1ed71b2401a6f1c566db2fa447f1068", + "digest": "96ebaca433672db16ab4e65e589ef8a5626455767bf57a11d40fa2545d230593", "distro": "debian-10", "type": "NAMI", - "version": "2.1.1-1" + "version": "2.1.2-0" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 72d39c692a95..004997ea99de 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.1.1-debian-10-r2`, `2`, `2.1.1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.1-debian-10-r2/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.1.2-debian-10-r0`, `2`, `2.1.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.2-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 20566bfbc91c65f772b3a21a13821ca3dfa97fc7 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 18 Aug 2020 13:10:49 +0000 Subject: [PATCH 438/950] 2.1.2-debian-10-r1 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../opt/bitnami/scripts/libservice.sh | 38 ++++++++++++++----- bitnami/kong/README.md | 2 +- 3 files changed, 31 insertions(+), 11 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a6e08bcc6518..60f6bbe005be 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.2-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.1.2-debian-10-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh index 0fa91f65fc4f..55e1dfc4ab28 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh @@ -6,6 +6,7 @@ # Load Generic Libraries . /opt/bitnami/scripts/libvalidations.sh +. /opt/bitnami/scripts/liblog.sh # Functions @@ -175,23 +176,42 @@ EOF ######################## # Generate a logrotate configuration file # Arguments: -# $1 - Log path -# $2 - Period -# $3 - Number of rotations to store -# $4 - Extra options (Optional) +# $1 - Service name +# $2 - Log files pattern +# Flags: +# --period - Period +# --rotations - Number of rotations to store +# --extra - Extra options (Optional) # Returns: # None ######################### generate_logrotate_conf() { local service_name="${1:?service name is missing}" local log_path="${2:?log path is missing}" - local period="${3:-weekly}" - local rotations="${4:-150}" - local extra_options="${5:-}" + local period="weekly" + local rotations="150" + local extra="" local logrotate_conf_dir="/etc/logrotate.d" + local var_name + # Parse optional CLI flags + shift 2 + while [[ "$#" -gt 0 ]]; do + case "$1" in + --period|--rotations|--extra) + var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")" + shift + declare "$var_name"="${1:?"$var_name" is missing}" + ;; + *) + echo "Invalid command line flag ${1}" >&2 + return 1 + ;; + esac + shift + done mkdir -p "$logrotate_conf_dir" - cat >"${logrotate_conf_dir}/${service_name}" <"${logrotate_conf_dir}/${service_name}" ${log_path} { ${period} rotate ${rotations} @@ -199,7 +219,7 @@ ${log_path} { compress copytruncate missingok - ${extra_options} +$(indent "$extra" 2) } EOF } diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 004997ea99de..07643852da82 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.1.2-debian-10-r0`, `2`, `2.1.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.2-debian-10-r0/2/debian-10/Dockerfile) +* [`2-debian-10`, `2.1.2-debian-10-r1`, `2`, `2.1.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.2-debian-10-r1/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ecca2de520eaa5914a12e4ab035a37a358faeb7a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 20 Aug 2020 15:28:14 +0000 Subject: [PATCH 439/950] 2.1.2-debian-10-r2 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 60f6bbe005be..edec76ac5cc7 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.2-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.1.2-debian-10-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 07643852da82..a7eda43b1e99 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2-debian-10`, `2.1.2-debian-10-r1`, `2`, `2.1.2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.2-debian-10-r1/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.2`, `2.1.2-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.2-debian-10-r2/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 6abd3d84e9fd87f9af18c1b91ed644bf34ad0fb8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 21 Aug 2020 11:00:40 +0000 Subject: [PATCH 440/950] 2.1.3-debian-10-r0 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index edec76ac5cc7..e1ef8bb096c0 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.1.2-0" --checksum 96ebaca433672db16ab4e65e589ef8a5626455767bf57a11d40fa2545d230593 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.1.3-0" --checksum f332abfdecb5b63b4436b4e92e2a014c77f4d46ebb86cc2e27e12acb36ade645 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-1" --checksum 51cfb1b7fd7b05b8abd1df0278c698103a9b1a4964bdacd87ca1d5c01631d59c RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.2-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 8a1c34e249fa..d7a81c962797 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "96ebaca433672db16ab4e65e589ef8a5626455767bf57a11d40fa2545d230593", + "digest": "f332abfdecb5b63b4436b4e92e2a014c77f4d46ebb86cc2e27e12acb36ade645", "distro": "debian-10", "type": "NAMI", - "version": "2.1.2-0" + "version": "2.1.3-0" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a7eda43b1e99..71021a340d5f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.2`, `2.1.2-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.2-debian-10-r2/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0b68f26cf25ed62d0600a88c1d4ca14387fba85b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 22 Aug 2020 11:37:00 +0000 Subject: [PATCH 441/950] 2.1.3-debian-10-r1 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index e1ef8bb096c0..b1b6f9f96b65 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 71021a340d5f..62209a5ecf38 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r0/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r1/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9ea93893be6e3705f59048a490c8863dea57639b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 23 Aug 2020 12:14:04 +0000 Subject: [PATCH 442/950] 2.1.3-debian-10-r2 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index b1b6f9f96b65..dc393f948d6c 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 62209a5ecf38..e1ab667a1fbe 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r1/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r2/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From aceb63e779ced01a682bf5ec8af3b1e928ba94c3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 26 Aug 2020 06:20:39 +0000 Subject: [PATCH 443/950] 2.1.3-debian-10-r3 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index dc393f948d6c..3324148f3c5d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.1.3-0" --checksum f332abfdecb5b63b4436b4e92e2a014c77f4d46ebb86cc2e27e12acb36ade645 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.1.3-1" --checksum 12a6611a9ba66ccf218622509b122e7c026d7526c855ed9a943d20a1659ed06b RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-1" --checksum 51cfb1b7fd7b05b8abd1df0278c698103a9b1a4964bdacd87ca1d5c01631d59c RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index d7a81c962797..baa6435fc82b 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "f332abfdecb5b63b4436b4e92e2a014c77f4d46ebb86cc2e27e12acb36ade645", + "digest": "12a6611a9ba66ccf218622509b122e7c026d7526c855ed9a943d20a1659ed06b", "distro": "debian-10", "type": "NAMI", - "version": "2.1.3-0" + "version": "2.1.3-1" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e1ab667a1fbe..ea7a1eaede1b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r2/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r3/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 33dace52f3519255c41f8ec3b7ba97983b5c1152 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 27 Aug 2020 06:48:23 +0000 Subject: [PATCH 444/950] 2.1.3-debian-10-r4 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 3324148f3c5d..61d0dcb5ad13 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index ea7a1eaede1b..c4e21be2e6f3 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r3/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r4/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From eb32b8c97e5be02759a77cd5cb987585096bca51 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 28 Aug 2020 07:26:53 +0000 Subject: [PATCH 445/950] 2.1.3-debian-10-r5 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 61d0dcb5ad13..a38a745c7d50 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c4e21be2e6f3..dc2d3f0328bd 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r4/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r5/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0f58bf9f4dd56875538f080ba87ba70c640207bd Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 29 Aug 2020 08:03:43 +0000 Subject: [PATCH 446/950] 2.1.3-debian-10-r6 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a38a745c7d50..898a8d2ab437 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index dc2d3f0328bd..036deb4304aa 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r5/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r6/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c8c69319d5de21a7b36a8c20c3c53f91c5e1a59b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 30 Aug 2020 08:41:24 +0000 Subject: [PATCH 447/950] 2.1.3-debian-10-r7 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 898a8d2ab437..107e2a4d0839 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 036deb4304aa..7f8350d6df9b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r6/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r7/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5e9bb0b6c1bf6269bb8d095c73b72fb061dbc9c5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 31 Aug 2020 09:17:31 +0000 Subject: [PATCH 448/950] 2.1.3-debian-10-r8 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 107e2a4d0839..057ac1a1310d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7f8350d6df9b..67efe3be92de 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r7/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r8/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5130e5be2a46547a0da86aab347b86e9c0820e4b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 1 Sep 2020 09:58:07 +0000 Subject: [PATCH 449/950] 2.1.3-debian-10-r9 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 057ac1a1310d..2514e79b2b77 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 67efe3be92de..4539c0f5c7b2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r8/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r9/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9d66c5d9349b5b65b77632bc16f956f0b46476cb Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 2 Sep 2020 10:36:12 +0000 Subject: [PATCH 450/950] 2.1.3-debian-10-r10 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 2514e79b2b77..a077bdfabe05 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r10" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4539c0f5c7b2..e743ef92e243 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r9/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r10/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 2c75dc9d54fef5c93b8e3769f83b960dc50a1ac1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 3 Sep 2020 11:24:30 +0000 Subject: [PATCH 451/950] 2.1.3-debian-10-r11 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a077bdfabe05..0f148fbb034b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r10" \ + BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r11" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e743ef92e243..1e025337b425 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r10/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r11/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 268526e5b21b78672e3602f45c38fde812a4fc01 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 4 Sep 2020 01:21:05 +0000 Subject: [PATCH 452/950] 2.1.3-debian-10-r12 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0f148fbb034b..2a5c41926b7c 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.1.3-1" --checksum 12a6611a9ba66ccf218622509b122e7c026d7526c855ed9a943d20a1659ed06b +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.1.3-2" --checksum 838e6559116b26b52a11a61d64120c7e7dc00892d7f20d3f1fe20e95c3b81d97 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-1" --checksum 51cfb1b7fd7b05b8abd1df0278c698103a9b1a4964bdacd87ca1d5c01631d59c RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r11" \ + BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r12" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index baa6435fc82b..5966e2497819 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "12a6611a9ba66ccf218622509b122e7c026d7526c855ed9a943d20a1659ed06b", + "digest": "838e6559116b26b52a11a61d64120c7e7dc00892d7f20d3f1fe20e95c3b81d97", "distro": "debian-10", "type": "NAMI", - "version": "2.1.3-1" + "version": "2.1.3-2" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1e025337b425..d8140b038472 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r11/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r12/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 57b5147c31f9b95cb7d75ce9428779f3f3bd22c1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 9 Sep 2020 22:30:18 +0000 Subject: [PATCH 453/950] 2.1.3-debian-10-r13 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 2a5c41926b7c..a9d78d9c4012 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r12" \ + BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r13" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d8140b038472..020048119ada 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r12/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r13/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f4511660b158630e1365da6186bc9ddd51591338 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 10 Sep 2020 22:56:11 +0000 Subject: [PATCH 454/950] 2.1.3-debian-10-r14 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a9d78d9c4012..b78371cc1fb8 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r13" \ + BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r14" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 020048119ada..b9666d99671f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r13/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r14/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e869132f7925d49a47c7f48a4da3f98c4aa5b25b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 11 Sep 2020 23:22:03 +0000 Subject: [PATCH 455/950] 2.1.3-debian-10-r15 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index b78371cc1fb8..7b87f167a17c 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r14" \ + BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r15" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b9666d99671f..0871c2a3537f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r14/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r15/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f7e60a18106e01f5b4b22b490d4dd54b5d818d23 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 12 Sep 2020 23:47:46 +0000 Subject: [PATCH 456/950] 2.1.3-debian-10-r16 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 7b87f167a17c..fda372be7854 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r15" \ + BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r16" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0871c2a3537f..717e1004db4f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r15/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r16/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 3d9646e55037a443b8d34c35f2aeef1e6fe6546c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 14 Sep 2020 00:13:16 +0000 Subject: [PATCH 457/950] 2.1.3-debian-10-r17 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index fda372be7854..1e947fe311c9 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r16" \ + BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r17" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 717e1004db4f..797c367062f3 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r16/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r17/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 26f540e0bac61d6bcfe2daac3d0dc525902c0633 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 15 Sep 2020 00:43:14 +0000 Subject: [PATCH 458/950] 2.1.3-debian-10-r18 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 1e947fe311c9..62f9ab747d2f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r17" \ + BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r18" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 797c367062f3..888d3dce7aab 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r17/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r18/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ab6aef780a8f37632a98218c8eea5b6b860e67f9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 16 Sep 2020 01:48:15 +0000 Subject: [PATCH 459/950] 2.1.3-debian-10-r19 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 62f9ab747d2f..03d034927508 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r18" \ + BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r19" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 888d3dce7aab..cc63107a1313 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r18/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r19/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7efcc638d6e2ae303d86bd57047453b62f2c4a6e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 17 Sep 2020 02:15:25 +0000 Subject: [PATCH 460/950] 2.1.3-debian-10-r20 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 03d034927508..3bb94aff872e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r19" \ + BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r20" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index cc63107a1313..eae44aa43933 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r19/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r20/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From fed0a4941965947c4fdb26a3e59f1e8a95c85c14 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 18 Sep 2020 02:46:21 +0000 Subject: [PATCH 461/950] 2.1.3-debian-10-r21 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 3bb94aff872e..d8a4cf15bfdf 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r20" \ + BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r21" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index eae44aa43933..f186a10acd6a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r20/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r21/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 71fe6167edce3b8faf5c738e5c442dca3257a385 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 18 Sep 2020 13:50:49 +0000 Subject: [PATCH 462/950] 2.1.3-debian-10-r22 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index d8a4cf15bfdf..cf938e45699e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.1.3-2" --checksum 838e6559116b26b52a11a61d64120c7e7dc00892d7f20d3f1fe20e95c3b81d97 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.1.3-3" --checksum cd6b398ad86a7788cdc842e94c6526db88ff520863dd4235a7e3abc5ab8d36b3 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-1" --checksum 51cfb1b7fd7b05b8abd1df0278c698103a9b1a4964bdacd87ca1d5c01631d59c RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r21" \ + BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r22" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 5966e2497819..7401f2f6189c 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "838e6559116b26b52a11a61d64120c7e7dc00892d7f20d3f1fe20e95c3b81d97", + "digest": "cd6b398ad86a7788cdc842e94c6526db88ff520863dd4235a7e3abc5ab8d36b3", "distro": "debian-10", "type": "NAMI", - "version": "2.1.3-2" + "version": "2.1.3-3" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f186a10acd6a..260101dbcd4b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r21/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r22`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r22/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7d4654fc27ba59ac4d3b71468cc4f1a1e69620af Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 18 Sep 2020 21:55:32 +0000 Subject: [PATCH 463/950] 2.1.4-debian-10-r0 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index cf938e45699e..40f2ae70855b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.1.3-3" --checksum cd6b398ad86a7788cdc842e94c6526db88ff520863dd4235a7e3abc5ab8d36b3 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.1.4-0" --checksum dc4fe4f103cc3033c07903100f3b55694c3bd831fff079d852a03f5cf20a969b RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-1" --checksum 51cfb1b7fd7b05b8abd1df0278c698103a9b1a4964bdacd87ca1d5c01631d59c RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.3-debian-10-r22" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 7401f2f6189c..78ace3caca26 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "cd6b398ad86a7788cdc842e94c6526db88ff520863dd4235a7e3abc5ab8d36b3", + "digest": "dc4fe4f103cc3033c07903100f3b55694c3bd831fff079d852a03f5cf20a969b", "distro": "debian-10", "type": "NAMI", - "version": "2.1.3-3" + "version": "2.1.4-0" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 260101dbcd4b..efd9794303b4 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.3`, `2.1.3-debian-10-r22`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.3-debian-10-r22/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7041e10518552b0d053f7ff961a3558258879bc5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 19 Sep 2020 22:25:54 +0000 Subject: [PATCH 464/950] 2.1.4-debian-10-r1 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 40f2ae70855b..99ba1ac33779 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index efd9794303b4..d442f995af0e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r0/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r1/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7e9c98448a432a9aff7072302d754add502d4725 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 20 Sep 2020 22:56:07 +0000 Subject: [PATCH 465/950] 2.1.4-debian-10-r2 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 99ba1ac33779..124ff954bdc8 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d442f995af0e..3896cffdbbd2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r1/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r2/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0aa72a322938f4e1af978a17b80c3bd8fe76150e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 21 Sep 2020 23:25:09 +0000 Subject: [PATCH 466/950] 2.1.4-debian-10-r3 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 124ff954bdc8..157ec48d1629 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 3896cffdbbd2..0f779370b960 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r2/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r3/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e59dde4253f6e3a8a676dfd927de70863ae48f3e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 22 Sep 2020 20:25:39 +0000 Subject: [PATCH 467/950] 2.1.4-debian-10-r4 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 157ec48d1629..ef944f319543 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0f779370b960..86ed8d40d1fa 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r3/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r4/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 1320d4cd3b983d49db2116ef18111d3d6bcae827 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 22 Sep 2020 23:52:58 +0000 Subject: [PATCH 468/950] 2.1.4-debian-10-r5 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index ef944f319543..5c01908161a1 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 86ed8d40d1fa..5718abd1f89b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r4/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r5/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 398eb8bf7c6ab4ae47764eb4898e84621762bf69 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 23 Sep 2020 20:47:17 +0000 Subject: [PATCH 469/950] 2.1.4-debian-10-r6 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 5c01908161a1..5d6b110d0b73 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 5718abd1f89b..cc38c1752936 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r5/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r6/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b92e8f4702dbf410e6c15eb3290f24bce0d2a87e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 24 Sep 2020 00:19:44 +0000 Subject: [PATCH 470/950] 2.1.4-debian-10-r7 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 5d6b110d0b73..dc4f7358a57d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index cc38c1752936..51b3bae8f8a9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r6/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r7/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 184b8b6b6cdfa69753cf913b7b264f8291d2cc00 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 24 Sep 2020 00:53:13 +0000 Subject: [PATCH 471/950] 2.1.4-debian-10-r8 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index dc4f7358a57d..9185c1ac132f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.1.4-0" --checksum dc4fe4f103cc3033c07903100f3b55694c3bd831fff079d852a03f5cf20a969b +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.1.4-1" --checksum a3eab3a1187c0d5d28827205a8d06bb061baa9eec75a3336441a01c79f0ea4fd RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-1" --checksum 51cfb1b7fd7b05b8abd1df0278c698103a9b1a4964bdacd87ca1d5c01631d59c RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 78ace3caca26..554938e466da 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "dc4fe4f103cc3033c07903100f3b55694c3bd831fff079d852a03f5cf20a969b", + "digest": "a3eab3a1187c0d5d28827205a8d06bb061baa9eec75a3336441a01c79f0ea4fd", "distro": "debian-10", "type": "NAMI", - "version": "2.1.4-0" + "version": "2.1.4-1" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 51b3bae8f8a9..a88b098266ae 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r7/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r8/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9120cac73a98a399538a68e8b50a3740a5787262 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 25 Sep 2020 02:00:20 +0000 Subject: [PATCH 472/950] 2.1.4-debian-10-r9 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 9185c1ac132f..3fc7a950f02e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a88b098266ae..4bbcb624a63e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r8/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r9/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 66a906487fce1fd6b8dc829ea759e922d4f7db77 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 26 Sep 2020 00:50:00 +0000 Subject: [PATCH 473/950] 2.1.4-debian-10-r10 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 3fc7a950f02e..99c1b5dd8336 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.1.4-1" --checksum a3eab3a1187c0d5d28827205a8d06bb061baa9eec75a3336441a01c79f0ea4fd +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.1.4-2" --checksum 532ccc815cdac47590db595120cbbaff508d55375b7267e8107c26eba4c08195 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-1" --checksum 51cfb1b7fd7b05b8abd1df0278c698103a9b1a4964bdacd87ca1d5c01631d59c RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r10" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 554938e466da..04f6a1ff524b 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "a3eab3a1187c0d5d28827205a8d06bb061baa9eec75a3336441a01c79f0ea4fd", + "digest": "532ccc815cdac47590db595120cbbaff508d55375b7267e8107c26eba4c08195", "distro": "debian-10", "type": "NAMI", - "version": "2.1.4-1" + "version": "2.1.4-2" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4bbcb624a63e..2fecca523f13 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r9/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r10/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b974f43cd36e5f322c7ec9b385fc65b1db8b0fe0 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 27 Sep 2020 01:21:50 +0000 Subject: [PATCH 474/950] 2.1.4-debian-10-r11 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 99c1b5dd8336..74e3b2dc3f74 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r10" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r11" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2fecca523f13..8c27c2a32d32 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r10/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r11/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 16095c73493050cff7c07a43b8841cfa8ba6fa74 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 28 Sep 2020 01:47:53 +0000 Subject: [PATCH 475/950] 2.1.4-debian-10-r12 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 74e3b2dc3f74..42d9e761bbcd 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r11" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r12" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 8c27c2a32d32..f0b4ae8518a1 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r11/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r12/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 1cad755010db6094ee1d715a2240445d40e67f2a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 29 Sep 2020 02:15:09 +0000 Subject: [PATCH 476/950] 2.1.4-debian-10-r13 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 42d9e761bbcd..ef39466c47b4 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r12" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r13" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f0b4ae8518a1..c52bde7b8175 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r12/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r13/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b589728f7fc1e06f8117d5ad01437338dbbbec2d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 30 Sep 2020 02:45:31 +0000 Subject: [PATCH 477/950] 2.1.4-debian-10-r14 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index ef39466c47b4..ae0ecc72ffcc 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -10,7 +10,7 @@ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.1.4-2" --checksum 532ccc815cdac47590db595120cbbaff508d55375b7267e8107c26eba4c08195 -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-1" --checksum 51cfb1b7fd7b05b8abd1df0278c698103a9b1a4964bdacd87ca1d5c01631d59c +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r13" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r14" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 04f6a1ff524b..8839b81266fb 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "gosu": { "arch": "amd64", - "digest": "51cfb1b7fd7b05b8abd1df0278c698103a9b1a4964bdacd87ca1d5c01631d59c", + "digest": "4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50", "distro": "debian-10", "type": "NAMI", - "version": "1.12.0-1" + "version": "1.12.0-2" }, "kong": { "arch": "amd64", diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c52bde7b8175..5c55fc049d5f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r13/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r14/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f0c5c061b3563c6b67bfa3c4e60b33d5dfb513c1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 1 Oct 2020 03:14:08 +0000 Subject: [PATCH 478/950] 2.1.4-debian-10-r15 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index ae0ecc72ffcc..90f9af6c6cb3 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r14" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r15" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 5c55fc049d5f..53f67cfbe025 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r14/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r15/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 1878477dcfb437d3eacbf9e624260d03d4977804 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 2 Oct 2020 03:41:56 +0000 Subject: [PATCH 479/950] 2.1.4-debian-10-r16 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 90f9af6c6cb3..0322215fdced 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r15" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r16" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 53f67cfbe025..761c913261eb 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r15/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r16/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From af86e7c216b7f09f0f05b580e1eb929b445f4abd Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 3 Oct 2020 04:09:59 +0000 Subject: [PATCH 480/950] 2.1.4-debian-10-r17 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0322215fdced..4a7ce4fcedd6 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r16" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r17" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 761c913261eb..b9cb28cee47c 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r16/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r17/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From bbe4a49fe557169f2de4163b7ce651d7722f0f77 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 4 Oct 2020 04:39:09 +0000 Subject: [PATCH 481/950] 2.1.4-debian-10-r18 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 4a7ce4fcedd6..966f6b8e3c3f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r17" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r18" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b9cb28cee47c..68243ece156b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r17/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r18/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 17a2d46b40bce74a573e822d8b1af5b708176990 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 5 Oct 2020 05:05:54 +0000 Subject: [PATCH 482/950] 2.1.4-debian-10-r19 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 966f6b8e3c3f..21803d1b80fe 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r18" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r19" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 68243ece156b..37dfd9f64d2d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r18/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r19/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 1d06baed1652568b8f629ba16f5c197237e566dd Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 6 Oct 2020 05:35:24 +0000 Subject: [PATCH 483/950] 2.1.4-debian-10-r20 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 21803d1b80fe..f774a15f0c7b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r19" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r20" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 37dfd9f64d2d..578c05eb0d9d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r19/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r20/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e6e1d098bc9980f893ee92fc5cdbf47dd04466b2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 7 Oct 2020 06:01:48 +0000 Subject: [PATCH 484/950] 2.1.4-debian-10-r21 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index f774a15f0c7b..f200450fa83a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r20" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r21" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 578c05eb0d9d..619d289c8647 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r20/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r21/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 1c42279dd8bf0bbc33dfe849df5f980a838145c2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 8 Oct 2020 01:20:59 +0000 Subject: [PATCH 485/950] 2.1.4-debian-10-r22 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index f200450fa83a..7588507d7e56 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.1.4-2" --checksum 532ccc815cdac47590db595120cbbaff508d55375b7267e8107c26eba4c08195 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.1.4-3" --checksum 73f8344d9c40458d31ac63e4328514cc3332ae8dafdda5a8268954209f7b9c6d RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r21" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r22" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 8839b81266fb..94fbda73998a 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "532ccc815cdac47590db595120cbbaff508d55375b7267e8107c26eba4c08195", + "digest": "73f8344d9c40458d31ac63e4328514cc3332ae8dafdda5a8268954209f7b9c6d", "distro": "debian-10", "type": "NAMI", - "version": "2.1.4-2" + "version": "2.1.4-3" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 619d289c8647..f71c13099c93 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r21/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r22`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r22/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f9b4968f349fb6fc01c25fa97e795e849fedaa67 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 9 Oct 2020 01:48:48 +0000 Subject: [PATCH 486/950] 2.1.4-debian-10-r23 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 7588507d7e56..94ef26f1c1cf 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r22" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r23" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f71c13099c93..643c0ab96435 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r22`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r22/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r23`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r23/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0f17177a8ae488e58d00a65753887092f5f28855 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 10 Oct 2020 02:19:37 +0000 Subject: [PATCH 487/950] 2.1.4-debian-10-r24 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 94ef26f1c1cf..974ab982d0e5 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r23" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r24" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 643c0ab96435..808d36dcbb4d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r23`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r23/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r24`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r24/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0d3f9d1d7131e2789f33c2b43b07ca5940d547a1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 11 Oct 2020 02:47:20 +0000 Subject: [PATCH 488/950] 2.1.4-debian-10-r25 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 974ab982d0e5..483a2a68e6c5 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r24" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r25" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 808d36dcbb4d..2a0fb5586eb5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r24`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r24/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r25`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r25/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b04ef3b153321af6a91884d700c445ca76742f80 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 12 Oct 2020 03:17:31 +0000 Subject: [PATCH 489/950] 2.1.4-debian-10-r26 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 483a2a68e6c5..f5022f835f1c 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r25" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r26" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2a0fb5586eb5..16cdb5402b3b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r25`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r25/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r26`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r26/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d2d797383fa66748984729c8f60f9a47b13fd97c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 13 Oct 2020 03:47:33 +0000 Subject: [PATCH 490/950] 2.1.4-debian-10-r27 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index f5022f835f1c..8b9cc307cd4a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r26" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r27" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 16cdb5402b3b..7dc29c8980ba 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r26`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r26/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r27`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r27/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 4bb7224688cb84b59d024fac3e7966b31e36e8b5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 21 Oct 2020 21:43:24 +0000 Subject: [PATCH 491/950] 2.1.4-debian-10-r28 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 8b9cc307cd4a..bf792d0f8be8 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r27" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r28" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7dc29c8980ba..7f3f1802691d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r27`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r27/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r28`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r28/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From bd0cd1f276ea314230cddfd532dc7dee688d3ed1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 23 Oct 2020 13:47:20 +0000 Subject: [PATCH 492/950] 2.1.4-debian-10-r29 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index bf792d0f8be8..a9130176e705 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r28" \ + BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r29" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7f3f1802691d..c1a87eaf344f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r28`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r28/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r29`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r29/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0c2ef35fa55e79860b74c5259e6bafdb77a1f7ff Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 23 Oct 2020 23:46:18 +0000 Subject: [PATCH 493/950] 2.2.0-debian-10-r0 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a9130176e705..8263d5dca33f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.1.4-3" --checksum 73f8344d9c40458d31ac63e4328514cc3332ae8dafdda5a8268954209f7b9c6d +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.2.0-0" --checksum 8039d58ac1ca5de2dafdc318793e522ed6c244c3f4edb54835861d889b631c64 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.1.4-debian-10-r29" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 94fbda73998a..fe2aff0b760c 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "73f8344d9c40458d31ac63e4328514cc3332ae8dafdda5a8268954209f7b9c6d", + "digest": "8039d58ac1ca5de2dafdc318793e522ed6c244c3f4edb54835861d889b631c64", "distro": "debian-10", "type": "NAMI", - "version": "2.1.4-3" + "version": "2.2.0-0" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c1a87eaf344f..019012d0a0bd 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.1.4`, `2.1.4-debian-10-r29`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.1.4-debian-10-r29/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ab1ba2ddfe8b132866c5d9b0c99f3da090ac954b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 25 Oct 2020 00:32:45 +0000 Subject: [PATCH 494/950] 2.2.0-debian-10-r1 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 8263d5dca33f..1f46b62fc538 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 019012d0a0bd..1b9bbecfbcb8 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r0/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r1/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 2d5946146ea5b1a79482f5e214fa156455cc8a7f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 26 Oct 2020 01:01:31 +0000 Subject: [PATCH 495/950] 2.2.0-debian-10-r2 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 1f46b62fc538..3d39c1fbe772 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1b9bbecfbcb8..0d8647592c54 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r1/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r2/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d4c548e5f214763a325ba844d54b3af662352e7b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 26 Oct 2020 21:58:51 +0000 Subject: [PATCH 496/950] 2.2.0-debian-10-r3 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 3d39c1fbe772..d53b9f8eb47a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.2.0-0" --checksum 8039d58ac1ca5de2dafdc318793e522ed6c244c3f4edb54835861d889b631c64 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.2.0-1" --checksum cc7dbec0bbcdaff3deb519b5653a4bebcb82a020a92a69cadd8e0d93b10aceae RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index fe2aff0b760c..c6c862917183 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "8039d58ac1ca5de2dafdc318793e522ed6c244c3f4edb54835861d889b631c64", + "digest": "cc7dbec0bbcdaff3deb519b5653a4bebcb82a020a92a69cadd8e0d93b10aceae", "distro": "debian-10", "type": "NAMI", - "version": "2.2.0-0" + "version": "2.2.0-1" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0d8647592c54..4c907859330b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r2/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r3/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 500a0832a23b99085ef38a8892a70e2470edb9be Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 27 Oct 2020 22:36:08 +0000 Subject: [PATCH 497/950] 2.2.0-debian-10-r4 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index d53b9f8eb47a..cae39d8612e7 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4c907859330b..bb5124fcacc4 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r3/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r4/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 4f398ca93594265736b85b3b82edb3e33d1cad9e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 28 Oct 2020 23:07:39 +0000 Subject: [PATCH 498/950] 2.2.0-debian-10-r5 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index cae39d8612e7..377da516b1b3 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index bb5124fcacc4..30b73a7d624f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r4/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r5/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From bc2c21c7cfd944e75c245ff357eb5633f84006c4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 29 Oct 2020 23:35:01 +0000 Subject: [PATCH 499/950] 2.2.0-debian-10-r6 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 377da516b1b3..34e712a8c239 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 30b73a7d624f..a968f3938a70 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r5/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r6/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0a83bb6f7968967e9f03ab23a4dade9e7701778f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 31 Oct 2020 00:07:09 +0000 Subject: [PATCH 500/950] 2.2.0-debian-10-r7 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 34e712a8c239..27df0ff49c9a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a968f3938a70..6354adb9eb54 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r6/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r7/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8348a503e2395b02b2cbc14975a4a9bfae80855c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 1 Nov 2020 00:36:48 +0000 Subject: [PATCH 501/950] 2.2.0-debian-10-r8 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 27df0ff49c9a..906c06173794 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 6354adb9eb54..4c663664974b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r7/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r8/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0253ebc9bf9b2397709ebdb9ce903374ca7edea4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 2 Nov 2020 01:06:47 +0000 Subject: [PATCH 502/950] 2.2.0-debian-10-r9 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 906c06173794..1fd3d51def17 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4c663664974b..2607fa5b4fc3 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r8/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r9/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 1740535e6276caf173f22fcd65a7b139387e899a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 3 Nov 2020 09:16:49 +0000 Subject: [PATCH 503/950] 2.2.0-debian-10-r10 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 1fd3d51def17..7b04d410bb4d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r10" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2607fa5b4fc3..908ede1ba8d2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r9/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r10/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 71a42c33c99a2cfc4d720155a06a0b8d9214756e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 4 Nov 2020 09:48:40 +0000 Subject: [PATCH 504/950] 2.2.0-debian-10-r11 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 7b04d410bb4d..1b61ff69ba32 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r10" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r11" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 908ede1ba8d2..81b01bb1622b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r10/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r11/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). @@ -212,10 +212,12 @@ Here is an example of extending the image with the following modifications: FROM bitnami/kong LABEL maintainer "Bitnami " +## Change user to perform privileged actions +USER 0 ## Install 'vim' -USER 0 # Required to perform privileged actions RUN install_packages vim -USER 1001 # Revert to the original non-root user +## Revert to the original non-root user +USER 1001 ## Disable anonymous reports # Keep in mind it is possible to do this by setting the KONG_ANONYMOUS_REPORTS=off environment variable From 8a74b3d0680db00e0cbb1d47d4e23babd3759771 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 5 Nov 2020 10:17:59 +0000 Subject: [PATCH 505/950] 2.2.0-debian-10-r12 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 1b61ff69ba32..2666d14435b0 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r11" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r12" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 81b01bb1622b..6e81731e2293 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r11/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r12/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 2ed300ae7e7528ab715ee608f8e4d2e0755cdc8e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 6 Nov 2020 10:50:28 +0000 Subject: [PATCH 506/950] 2.2.0-debian-10-r13 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 2666d14435b0..6b3733602da7 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r12" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r13" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 6e81731e2293..f4ed897c15ef 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r12/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r13/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c55166f5a296511cee982ba05a3245c5f07e5852 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 6 Nov 2020 18:58:33 +0000 Subject: [PATCH 507/950] 2.2.0-debian-10-r14 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 6b3733602da7..da8e48532d1a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.2.0-1" --checksum cc7dbec0bbcdaff3deb519b5653a4bebcb82a020a92a69cadd8e0d93b10aceae +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.2.0-2" --checksum b14ab5403daf7c159c2ef31b468a412cfca456ae36fb83ee3c73632bd484ff64 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r13" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r14" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index c6c862917183..94b897fd4719 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "cc7dbec0bbcdaff3deb519b5653a4bebcb82a020a92a69cadd8e0d93b10aceae", + "digest": "b14ab5403daf7c159c2ef31b468a412cfca456ae36fb83ee3c73632bd484ff64", "distro": "debian-10", "type": "NAMI", - "version": "2.2.0-1" + "version": "2.2.0-2" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f4ed897c15ef..9772758bdbb9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r13/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r14/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f61d208322bd0945fad72e0ceb009302abdf4a58 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 7 Nov 2020 19:28:54 +0000 Subject: [PATCH 508/950] 2.2.0-debian-10-r15 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index da8e48532d1a..57aef48b1081 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r14" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r15" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9772758bdbb9..84a535fd0ffc 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r14/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r15/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0e8036938aba3b6394781832c0713e88e6431ffb Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 8 Nov 2020 20:03:00 +0000 Subject: [PATCH 509/950] 2.2.0-debian-10-r16 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 57aef48b1081..628a0226903c 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r15" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r16" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 84a535fd0ffc..9d6ed5e786cf 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r15/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r16/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e77302deaf8fbcce5b64e42272917c0ae647038c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 9 Nov 2020 21:03:40 +0000 Subject: [PATCH 510/950] 2.2.0-debian-10-r17 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 628a0226903c..7c6f4e11149a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r16" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r17" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9d6ed5e786cf..dfcb0b757f70 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r16/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r17/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From bc731b8df6c6246719729cfba90fa28d8365ba76 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 10 Nov 2020 21:33:03 +0000 Subject: [PATCH 511/950] 2.2.0-debian-10-r18 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 7c6f4e11149a..88ea6602b2ea 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r17" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r18" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index dfcb0b757f70..a609c532120b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r17/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r18/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d85e5e900228dfae16e4cd5c466fdbf37b7278a8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 11 Nov 2020 22:04:48 +0000 Subject: [PATCH 512/950] 2.2.0-debian-10-r19 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 88ea6602b2ea..e32fbd27f181 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r18" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r19" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a609c532120b..0308cac543f0 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r18/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r19/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 97603d619337a5d2e70fcce2265cece73611e071 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 12 Nov 2020 22:34:16 +0000 Subject: [PATCH 513/950] 2.2.0-debian-10-r20 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index e32fbd27f181..3cd92d95a462 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r19" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r20" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0308cac543f0..8efd96d46ff1 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r19/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r20/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c325f34985ebfd399ddd3ff16681bc7d841e895e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 14 Nov 2020 06:51:49 +0000 Subject: [PATCH 514/950] 2.2.0-debian-10-r21 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 3cd92d95a462..e7cbd84e1ff9 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r20" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r21" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 8efd96d46ff1..ea2fe9eb7776 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r20/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r21/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e325cd2dc5eb7e052d4187165a1936f2f5f6e2a4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 15 Nov 2020 07:20:43 +0000 Subject: [PATCH 515/950] 2.2.0-debian-10-r22 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index e7cbd84e1ff9..060a6d363b07 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r21" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r22" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index ea2fe9eb7776..7654d1063290 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r21/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r22`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r22/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 51bffa0592cd3ad5ad8f9ad53e2c10a488f33392 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 16 Nov 2020 10:16:17 +0000 Subject: [PATCH 516/950] 2.2.0-debian-10-r23 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 060a6d363b07..f092733bbadf 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r22" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r23" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7654d1063290..a9202dde678d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r22`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r22/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r23`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r23/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8f417198ac1a7d27d7a06f62c806c7e90e036825 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 17 Nov 2020 10:46:01 +0000 Subject: [PATCH 517/950] 2.2.0-debian-10-r24 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index f092733bbadf..25b1223a376e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r23" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r24" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a9202dde678d..01739708c518 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r23`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r23/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r24`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r24/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f738a6ecfb9de7c1a486c22c109cfec626125137 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 18 Nov 2020 12:18:16 +0000 Subject: [PATCH 518/950] 2.2.0-debian-10-r25 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 25b1223a376e..545d0562d7c4 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r24" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r25" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 01739708c518..b65c29bf5190 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r24`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r24/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r25`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r25/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 14eaaf3a9e7ed504dd9768a510e895633813c321 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 19 Nov 2020 12:49:39 +0000 Subject: [PATCH 519/950] 2.2.0-debian-10-r26 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 545d0562d7c4..afb568cda251 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r25" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r26" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b65c29bf5190..784c28c0e861 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r25`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r25/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r26`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r26/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From a98a7c7878a0d5b5464d2c2e22dfaf3b28829f73 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 20 Nov 2020 13:23:36 +0000 Subject: [PATCH 520/950] 2.2.0-debian-10-r27 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index afb568cda251..427f8195c6a8 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r26" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r27" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 784c28c0e861..9c7fb3a31881 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r26`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r26/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r27`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r27/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e361b23b7ebeeccdae594f1001e944e4b9852f33 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 21 Nov 2020 20:45:29 +0000 Subject: [PATCH 521/950] 2.2.0-debian-10-r28 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 427f8195c6a8..4898c72a9e09 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r27" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r28" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9c7fb3a31881..4f85ce8d68dd 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r27`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r27/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r28`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r28/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 3b9e1035fa9b95bd5841eeadcf8c52b29cd5e3ac Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 23 Nov 2020 07:26:01 +0000 Subject: [PATCH 522/950] 2.2.0-debian-10-r29 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 4898c72a9e09..1429e1fa73cb 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r28" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r29" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4f85ce8d68dd..799959fde9ac 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r28`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r28/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r29`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r29/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d9b046880167cd6065c1f7fc309240dc3d504652 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 24 Nov 2020 07:55:40 +0000 Subject: [PATCH 523/950] 2.2.0-debian-10-r30 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 1429e1fa73cb..dd374e7d1ec3 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r29" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r30" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 799959fde9ac..09b423d3e261 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r29`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r29/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r30`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r30/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From afeb6bbdb5ba7f9af18482fc14712dae90a1b8f7 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 25 Nov 2020 08:56:40 +0000 Subject: [PATCH 524/950] 2.2.0-debian-10-r31 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index dd374e7d1ec3..3b64a7e7002e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r30" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r31" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 09b423d3e261..edf6644c901c 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r30`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r30/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r31`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r31/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8778cc4e945ade10b122624e820ab5c0b94d7fce Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 26 Nov 2020 09:27:57 +0000 Subject: [PATCH 525/950] 2.2.0-debian-10-r32 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 3b64a7e7002e..a090e7cbcff6 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r31" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r32" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index edf6644c901c..4406b1310179 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r31`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r31/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r32`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r32/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 6c634ad041ce25cba967c2f4328928cc8271b803 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 26 Nov 2020 19:05:48 +0000 Subject: [PATCH 526/950] 2.2.0-debian-10-r33 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a090e7cbcff6..a6d9af7fe361 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.2.0-2" --checksum b14ab5403daf7c159c2ef31b468a412cfca456ae36fb83ee3c73632bd484ff64 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.2.0-3" --checksum 606f26e08ba4c0b2f23d68c187f92d3d866cbb22289e751ff854519d7a4e8d0f RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r32" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r33" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 94b897fd4719..8b9ff333e303 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "b14ab5403daf7c159c2ef31b468a412cfca456ae36fb83ee3c73632bd484ff64", + "digest": "606f26e08ba4c0b2f23d68c187f92d3d866cbb22289e751ff854519d7a4e8d0f", "distro": "debian-10", "type": "NAMI", - "version": "2.2.0-2" + "version": "2.2.0-3" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4406b1310179..b889b5f4fe3d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r32`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r32/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r33`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r33/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e58884dcdc73741abb0776abdca9c99d9cf13981 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 27 Nov 2020 19:44:51 +0000 Subject: [PATCH 527/950] 2.2.0-debian-10-r34 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a6d9af7fe361..3ab8e2e13b2f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r33" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r34" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b889b5f4fe3d..0357496ad8ab 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r33`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r33/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r34`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r34/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From dc9f4265808bdd94c2e146d6cd1c5181f1a6860c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 28 Nov 2020 20:12:25 +0000 Subject: [PATCH 528/950] 2.2.0-debian-10-r35 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 3ab8e2e13b2f..f3bd8b426736 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r34" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r35" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0357496ad8ab..2097e18d1140 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r34`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r34/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r35`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r35/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 15c52a5db68d27b2ded1368bc032219a4d3bfc46 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 29 Nov 2020 21:20:41 +0000 Subject: [PATCH 529/950] 2.2.0-debian-10-r36 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index f3bd8b426736..eb739e0920a7 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r35" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r36" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2097e18d1140..3d914c2cfe44 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r35`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r35/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r36`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r36/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 4e00df9948fd3cc286eaaea46fe331b4d9022355 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 30 Nov 2020 21:49:24 +0000 Subject: [PATCH 530/950] 2.2.0-debian-10-r37 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index eb739e0920a7..eda615baf5eb 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r36" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r37" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 3d914c2cfe44..b9321ddb32d8 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r36`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r36/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r37`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r37/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 47a07d4b2e600d00d23ddd09fe170a45123e4e2c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 1 Dec 2020 16:08:50 +0000 Subject: [PATCH 531/950] 2.2.0-debian-10-r38 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index eda615baf5eb..ca5c57de2205 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.2.0-3" --checksum 606f26e08ba4c0b2f23d68c187f92d3d866cbb22289e751ff854519d7a4e8d0f +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.2.0-4" --checksum 519f95f2e7dd73e5179f45915374f5a1ab6398d91910005c62ddd5b138b2e415 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r37" \ + BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r38" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 8b9ff333e303..d58cc519cc70 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "606f26e08ba4c0b2f23d68c187f92d3d866cbb22289e751ff854519d7a4e8d0f", + "digest": "519f95f2e7dd73e5179f45915374f5a1ab6398d91910005c62ddd5b138b2e415", "distro": "debian-10", "type": "NAMI", - "version": "2.2.0-3" + "version": "2.2.0-4" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b9321ddb32d8..e20d22239969 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r37`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r37/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r38`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r38/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 1a42be43bf000213751b548a348a6c3e91925772 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 1 Dec 2020 18:43:22 +0000 Subject: [PATCH 532/950] 2.2.1-debian-10-r0 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index ca5c57de2205..f5cbedf9af3f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.2.0-4" --checksum 519f95f2e7dd73e5179f45915374f5a1ab6398d91910005c62ddd5b138b2e415 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.2.1-0" --checksum 8185c5ed127bd0301e1ee28f9c364d0be949844be839458de1a5d2635ee60fbd RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r38" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index d58cc519cc70..2439ef2353d6 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "519f95f2e7dd73e5179f45915374f5a1ab6398d91910005c62ddd5b138b2e415", + "digest": "8185c5ed127bd0301e1ee28f9c364d0be949844be839458de1a5d2635ee60fbd", "distro": "debian-10", "type": "NAMI", - "version": "2.2.0-4" + "version": "2.2.1-0" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e20d22239969..86e296d3ad1c 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r38`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.0-debian-10-r38/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 575a872a63822d1e40ef061a3b858f7e4de57259 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 2 Dec 2020 19:53:56 +0000 Subject: [PATCH 533/950] 2.2.1-debian-10-r1 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index f5cbedf9af3f..c4cbfd00ad14 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.2.1-0" --checksum 8185c5ed127bd0301e1ee28f9c364d0be949844be839458de1a5d2635ee60fbd +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.2.1-1" --checksum 61cb24f4b8a0493bd61c3998f7b1d5bfc8e7ac62d5304889d4c0cb0ba0404926 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 2439ef2353d6..65a487ff0e94 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "8185c5ed127bd0301e1ee28f9c364d0be949844be839458de1a5d2635ee60fbd", + "digest": "61cb24f4b8a0493bd61c3998f7b1d5bfc8e7ac62d5304889d4c0cb0ba0404926", "distro": "debian-10", "type": "NAMI", - "version": "2.2.1-0" + "version": "2.2.1-1" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 86e296d3ad1c..11dd061e1e03 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r0/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r1/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 34351c3c0c3faac55db2e1dad6f3f8d594386c6a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 4 Dec 2020 10:59:53 +0000 Subject: [PATCH 534/950] 2.2.1-debian-10-r2 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c4cbfd00ad14..c7b8571aba00 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 11dd061e1e03..2d17ec0e881e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r1/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r2/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9a1d19b313f013a01c766ee3a62cb5d7995d72bd Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 5 Dec 2020 11:28:34 +0000 Subject: [PATCH 535/950] 2.2.1-debian-10-r3 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c7b8571aba00..35eaa5534ddb 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2d17ec0e881e..f781744b0192 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r2/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r3/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e9c620911822904281fb30b4a21d6b7024e8d663 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 7 Dec 2020 13:38:18 +0000 Subject: [PATCH 536/950] 2.2.1-debian-10-r4 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 35eaa5534ddb..6425e6daf411 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f781744b0192..e438cf0aa902 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r3/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r4/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From dde936b275d3d27e93bb29f9b1163e2fe43e8bf0 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 8 Dec 2020 14:06:07 +0000 Subject: [PATCH 537/950] 2.2.1-debian-10-r5 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 6425e6daf411..dc2abd9003a4 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e438cf0aa902..4d38d74dab58 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r4/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r5/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f257755712fdac5613acdbd0577bc45ab9c8999c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 8 Dec 2020 23:23:33 +0000 Subject: [PATCH 538/950] 2.2.1-debian-10-r6 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index dc2abd9003a4..e5830ed87447 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.2.1-1" --checksum 61cb24f4b8a0493bd61c3998f7b1d5bfc8e7ac62d5304889d4c0cb0ba0404926 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.2.1-2" --checksum 5b1c3e2a3e4d292909b92c54170405ca3ace88c0c39f3a2dbe318b89537235b8 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 65a487ff0e94..d78735c3d641 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "61cb24f4b8a0493bd61c3998f7b1d5bfc8e7ac62d5304889d4c0cb0ba0404926", + "digest": "5b1c3e2a3e4d292909b92c54170405ca3ace88c0c39f3a2dbe318b89537235b8", "distro": "debian-10", "type": "NAMI", - "version": "2.2.1-1" + "version": "2.2.1-2" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4d38d74dab58..9f0de76c7c10 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r5/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r6/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5f9e9d4f2a13f000960190158f3fc76091a21106 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 9 Dec 2020 23:51:12 +0000 Subject: [PATCH 539/950] 2.2.1-debian-10-r7 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index e5830ed87447..7f4bbdcdaa50 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9f0de76c7c10..d715e8902489 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r6/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r7/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 16908f2b20ef4f9ff791d1f75407a135e169341d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 11 Dec 2020 00:19:16 +0000 Subject: [PATCH 540/950] 2.2.1-debian-10-r8 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 7f4bbdcdaa50..fd344515ab93 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d715e8902489..be204300bf2a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r7/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r8/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 4b0529a3a774745d8b8835b567e7c706ed825b5b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 11 Dec 2020 03:49:18 +0000 Subject: [PATCH 541/950] 2.2.1-debian-10-r9 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index fd344515ab93..0d36e6120145 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.2.1-2" --checksum 5b1c3e2a3e4d292909b92c54170405ca3ace88c0c39f3a2dbe318b89537235b8 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.2.1-3" --checksum 1281fe206581b831c67b96018b8d60e22aa9617e120334307c986cd12beda56f RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index d78735c3d641..f8132dc768df 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "5b1c3e2a3e4d292909b92c54170405ca3ace88c0c39f3a2dbe318b89537235b8", + "digest": "1281fe206581b831c67b96018b8d60e22aa9617e120334307c986cd12beda56f", "distro": "debian-10", "type": "NAMI", - "version": "2.2.1-2" + "version": "2.2.1-3" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index be204300bf2a..6c4b6c16c026 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r8/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r9/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0e689033e026115b09f4895b26ee1c10ea524550 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 15 Dec 2020 17:14:35 +0000 Subject: [PATCH 542/950] 2.2.1-debian-10-r10 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0d36e6120145..0a6328821c5f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r10" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 6c4b6c16c026..281c4284fdb8 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r9/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r10/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ec992dc6a28c9a3bb0d96ed038aba5b1e3bd3b13 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 16 Dec 2020 17:47:42 +0000 Subject: [PATCH 543/950] 2.2.1-debian-10-r11 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../2/debian-10/prebuildfs/opt/bitnami/scripts/libnet.sh | 6 ++++-- bitnami/kong/README.md | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0a6328821c5f..8c65a406e242 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r10" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r11" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libnet.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libnet.sh index d658d7607277..4391dacc7853 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libnet.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libnet.sh @@ -10,15 +10,17 @@ # Functions ######################## -# Resolve dns +# Resolve IP address for a host/domain (i.e. DNS lookup) # Arguments: # $1 - Hostname to resolve +# $2 - IP address version (v4, v6), leave empty for resolving to any version # Returns: # IP ######################### dns_lookup() { local host="${1:?host is missing}" - getent ahosts "$host" | awk '/STREAM/ {print $1 }' + local ip_version="${2:-}" + getent "ahosts${ip_version}" "$host" | awk '/STREAM/ {print $1 }' | head -n 1 } ######################### diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 281c4284fdb8..2f3dfcd2e9de 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r10/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r11/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From a634735f41fd7b3c3dd5b84a6ab72a163780b2ab Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 17 Dec 2020 19:33:44 +0000 Subject: [PATCH 544/950] 2.2.1-debian-10-r12 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 8c65a406e242..bedb0e3eb828 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r11" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r12" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2f3dfcd2e9de..f3cf809bdab4 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r11/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r12/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 3f94451ad689c5361f04b8a2d89ce50fa95d5e10 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 18 Dec 2020 20:07:31 +0000 Subject: [PATCH 545/950] 2.2.1-debian-10-r13 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index bedb0e3eb828..7f12637647b6 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r12" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r13" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f3cf809bdab4..5d01af64cc62 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r12/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r13/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d53e807e4933abd027ba39d4122f276580180ab8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 19 Dec 2020 20:32:15 +0000 Subject: [PATCH 546/950] 2.2.1-debian-10-r14 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 7f12637647b6..860bac013fb8 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r13" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r14" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 5d01af64cc62..42d1694d10e2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r13/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r14/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c77135f2a09ec6c0a097aab33c8ce7680a1ddeb6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 20 Dec 2020 20:54:13 +0000 Subject: [PATCH 547/950] 2.2.1-debian-10-r15 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 860bac013fb8..6aa9796051e5 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r14" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r15" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 42d1694d10e2..bfc015eacf6a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r14/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r15/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From cc12ad161f21171ba9e39f4c5df321d980b13f09 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 22 Dec 2020 03:02:06 +0000 Subject: [PATCH 548/950] 2.2.1-debian-10-r16 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh | 1 - bitnami/kong/README.md | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 6aa9796051e5..6ebeab5df45c 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r15" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r16" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh index 7fce9bb4a9a0..25bff4a05105 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh @@ -153,7 +153,6 @@ web_server_restart() { # None ######################### web_server_reload() { - info "Reloading $(web_server_type) configuration" "${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/reload.sh" } diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index bfc015eacf6a..9ba6f8445e92 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r15/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r16/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 80deefc2af1fe8f6130964c4750ba85624016345 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 22 Dec 2020 17:41:50 +0000 Subject: [PATCH 549/950] 2.2.1-debian-10-r17 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 6ebeab5df45c..646b2426894f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r16" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r17" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9ba6f8445e92..a5f8b178d9b2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r16/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r17/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c51ea6515d7e366f3c527f033e9fac8a74110b84 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 23 Dec 2020 18:47:44 +0000 Subject: [PATCH 550/950] 2.2.1-debian-10-r18 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 646b2426894f..d61426c2e362 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r17" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r18" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a5f8b178d9b2..85638c037124 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r17/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r18/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 1ae4ed86215ba795bbd386517ce878ebaaf636e0 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 24 Dec 2020 19:08:13 +0000 Subject: [PATCH 551/950] 2.2.1-debian-10-r19 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index d61426c2e362..78e597a744b7 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r18" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r19" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 85638c037124..cdb5cb8ca638 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r18/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r19/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9fb27a2d4252d9378971a02722b2da78daacc591 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 25 Dec 2020 19:31:39 +0000 Subject: [PATCH 552/950] 2.2.1-debian-10-r20 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 78e597a744b7..62d94682a16b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r19" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r20" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index cdb5cb8ca638..d25630b5823c 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r19/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r20/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e287c8316496d6a029b0659fdded0ef7a489c00b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 26 Dec 2020 19:53:33 +0000 Subject: [PATCH 553/950] 2.2.1-debian-10-r21 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 62d94682a16b..8f8d400235e8 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r20" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r21" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d25630b5823c..5601f17ed248 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r20/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r21/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c1709424a30db46bfad6b89f7823a2965612e997 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 27 Dec 2020 20:15:29 +0000 Subject: [PATCH 554/950] 2.2.1-debian-10-r22 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 8f8d400235e8..596c7761eea3 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r21" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r22" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 5601f17ed248..22d606c038fa 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r21/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r22`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r22/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 2396c1f41ba12c947330dfa4135da59b447e9e50 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 28 Dec 2020 21:12:48 +0000 Subject: [PATCH 555/950] 2.2.1-debian-10-r23 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 596c7761eea3..748d24f13550 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r22" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r23" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 22d606c038fa..96f30cb0025b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r22`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r22/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r23`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r23/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 07298fd68288dc8a74ca350ddc97de041e3a8dec Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 29 Dec 2020 21:28:26 +0000 Subject: [PATCH 556/950] 2.2.1-debian-10-r24 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 748d24f13550..dceebb7cd8f2 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r23" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r24" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 96f30cb0025b..725f68f8e551 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r23`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r23/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r24`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r24/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 6e00808894a6ee3b2365a8e9824f1baed6b51fc8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 30 Dec 2020 21:44:07 +0000 Subject: [PATCH 557/950] 2.2.1-debian-10-r25 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index dceebb7cd8f2..b348423af765 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r24" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r25" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 725f68f8e551..bd275095835a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r24`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r24/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r25`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r25/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d15801df9b758b7caae8a19996576859c3a8b888 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 31 Dec 2020 22:06:54 +0000 Subject: [PATCH 558/950] 2.2.1-debian-10-r26 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index b348423af765..60f57ed0d274 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r25" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r26" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index bd275095835a..d0340ba0df32 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r25`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r25/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r26`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r26/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 3a487cd9a16d12e19185e75cc635045f564db44f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 1 Jan 2021 22:25:35 +0000 Subject: [PATCH 559/950] 2.2.1-debian-10-r27 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 60f57ed0d274..dc52b86d2945 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r26" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r27" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d0340ba0df32..2ecc390c6f4b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r26`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r26/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r27`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r27/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). @@ -306,7 +306,7 @@ If you encountered a problem running this container, you can file an [issue](htt # License -Copyright (c) 2020 Bitnami +Copyright (c) 2021 Bitnami Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. From 2407a4b055d63c1204facf1b090db976bb667929 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 2 Jan 2021 22:42:04 +0000 Subject: [PATCH 560/950] 2.2.1-debian-10-r28 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index dc52b86d2945..eefe939931bc 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r27" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r28" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2ecc390c6f4b..23c918da2e39 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r27`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r27/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r28`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r28/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From def667e00246a3179eb306ba86918107dec97fb9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 3 Jan 2021 22:57:38 +0000 Subject: [PATCH 561/950] 2.2.1-debian-10-r29 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index eefe939931bc..0a8183570fb3 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r28" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r29" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 23c918da2e39..c77a6dfc8ff0 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r28`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r28/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r29`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r29/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 6a7b691c78052e7a6c1cf810c165fbd4b3197f8b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 4 Jan 2021 23:26:29 +0000 Subject: [PATCH 562/950] 2.2.1-debian-10-r30 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0a8183570fb3..8ab2edf00dfa 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r29" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r30" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c77a6dfc8ff0..73695ac50f69 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r29`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r29/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r30`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r30/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 472c923eaa6c5c80bc493a4969d87115fa4be11b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 5 Jan 2021 23:48:37 +0000 Subject: [PATCH 563/950] 2.2.1-debian-10-r31 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 8ab2edf00dfa..c7c2b2742e28 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r30" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r31" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 73695ac50f69..21e356d10bf7 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r30`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r30/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r31`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r31/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e908103ec3e4e9814d36ceabe659a2e3e2c1254e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 7 Jan 2021 00:04:05 +0000 Subject: [PATCH 564/950] 2.2.1-debian-10-r32 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c7c2b2742e28..e41481bdcaa9 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r31" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r32" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 21e356d10bf7..550c81950807 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r31`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r31/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r32`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r32/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e56b77ec032316189444ffef95d6c16b15a48cea Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 8 Jan 2021 04:01:19 +0000 Subject: [PATCH 565/950] 2.2.1-debian-10-r33 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../prebuildfs/opt/bitnami/scripts/libhook.sh | 16 ++++++++++++++++ bitnami/kong/README.md | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libhook.sh diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index e41481bdcaa9..552eacbbe58d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r32" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r33" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libhook.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libhook.sh new file mode 100644 index 000000000000..9694852a7d25 --- /dev/null +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libhook.sh @@ -0,0 +1,16 @@ +#!/bin/bash +# +# Library to use for scripts expected to be used as Kubernetes lifecycle hooks + +# shellcheck disable=SC1091 + +# Load generic libraries +. /opt/bitnami/scripts/liblog.sh +. /opt/bitnami/scripts/libos.sh + +# Override functions that log to stdout/stderr of the current process, so they print to process 1 +for function_to_override in stderr_print debug_execute; do + # Output is sent to output of process 1 and thus end up in the container log + # The hook output in general isn't saved + eval "$(declare -f "$function_to_override") >/proc/1/fd/1 2>/proc/1/fd/2" +done diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 550c81950807..1db78471f586 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r32`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r32/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r33`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r33/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e0931ed6812d41275cc6559db0cf3b67d70da2fc Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 9 Jan 2021 04:23:13 +0000 Subject: [PATCH 566/950] 2.2.1-debian-10-r34 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 552eacbbe58d..1514ab1664c4 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r33" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r34" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1db78471f586..e1e421c230e9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r33`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r33/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r34`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r34/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 67007ea78ed87d636e21d394a9098106ee05d95a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 10 Jan 2021 04:39:44 +0000 Subject: [PATCH 567/950] 2.2.1-debian-10-r35 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 1514ab1664c4..a6b45c0a677c 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r34" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r35" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e1e421c230e9..c16769f8b35e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r34`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r34/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r35`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r35/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 151de68117a62ed1c9d38aefe2784ff98bdd5986 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 11 Jan 2021 04:54:41 +0000 Subject: [PATCH 568/950] 2.2.1-debian-10-r36 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a6b45c0a677c..a6ffb067b890 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r35" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r36" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c16769f8b35e..b05c4bc7805e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r35`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r35/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r36`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r36/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c1662e85e028cfc5b94a4859059b4390596bfa99 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 12 Jan 2021 05:14:14 +0000 Subject: [PATCH 569/950] 2.2.1-debian-10-r37 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a6ffb067b890..f1e17fc66d83 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r36" \ + BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r37" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b05c4bc7805e..f26577373da5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r36`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r36/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r37`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r37/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 04165e025e0fd81072a1d274395de44f14827bcf Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 13 Jan 2021 07:40:05 +0000 Subject: [PATCH 570/950] 2.3.0-debian-10-r0 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index f1e17fc66d83..023194f75d5e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.2.1-3" --checksum 1281fe206581b831c67b96018b8d60e22aa9617e120334307c986cd12beda56f +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.3.0-0" --checksum 386c85f1d28778dc41808d54fbfb5012cfdd8fdd81793be00c62dca4178d9483 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r37" \ + BITNAMI_IMAGE_VERSION="2.3.0-debian-10-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index f8132dc768df..5e9d74d4e45c 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "1281fe206581b831c67b96018b8d60e22aa9617e120334307c986cd12beda56f", + "digest": "386c85f1d28778dc41808d54fbfb5012cfdd8fdd81793be00c62dca4178d9483", "distro": "debian-10", "type": "NAMI", - "version": "2.2.1-3" + "version": "2.3.0-0" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f26577373da5..0d6740e53b27 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r37`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.2.1-debian-10-r37/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.0`, `2.3.0-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.0-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e8dc707322239761ad9664900c50440ee99cd38b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 14 Jan 2021 17:43:48 +0000 Subject: [PATCH 571/950] 2.3.0-debian-10-r1 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 023194f75d5e..5a5c4027e44a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.0-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.3.0-debian-10-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0d6740e53b27..a56d1209d402 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.0`, `2.3.0-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.0-debian-10-r0/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.0`, `2.3.0-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.0-debian-10-r1/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From eb9f05ee9412fe89e430dbc36ca879514d0ddd44 Mon Sep 17 00:00:00 2001 From: Carlos Rodriguez Hernandez Date: Fri, 15 Jan 2021 19:16:50 +0000 Subject: [PATCH 572/950] Update year in LICENSE --- bitnami/kong/LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitnami/kong/LICENSE b/bitnami/kong/LICENSE index 5cca1c384fc2..c850fde34074 100644 --- a/bitnami/kong/LICENSE +++ b/bitnami/kong/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2015-2019 Bitnami +Copyright (c) 2015-2021 Bitnami Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. From 4c15e69ea0ce6a8ccd853300db41f8c87dd2bd79 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 16 Jan 2021 02:42:16 +0000 Subject: [PATCH 573/950] 2.3.0-debian-10-r2 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../prebuildfs/opt/bitnami/scripts/libos.sh | 68 +++++++++++++++++-- .../opt/bitnami/scripts/kong/postunpack.sh | 2 +- bitnami/kong/README.md | 2 +- 4 files changed, 66 insertions(+), 8 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 5a5c4027e44a..11425e9aff7c 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.0-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.3.0-debian-10-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh index cc45a19ce099..f38437a1d407 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh @@ -37,14 +37,34 @@ group_exists() { # Create a group in the system if it does not exist already # Arguments: # $1 - group +# Flags: +# -s|--system - Whether to create new user as system user (uid <= 999) # Returns: # None ######################### ensure_group_exists() { local group="${1:?group is missing}" + local is_system_user=false + + # Validate arguments + shift 1 + while [ "$#" -gt 0 ]; do + case "$1" in + -s|--system) + is_system_user=true + ;; + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; + esac + shift + done if ! group_exists "$group"; then - groupadd "$group" >/dev/null 2>&1 + local -a args=("$group") + $is_system_user && args+=("--system") + groupadd "${args[@]}" >/dev/null 2>&1 fi } @@ -52,22 +72,60 @@ ensure_group_exists() { # Create an user in the system if it does not exist already # Arguments: # $1 - user -# $2 - group +# Flags: +# -g|--group - the group the new user should belong to +# -h|--home - the home directory for the new user +# -s|--system - whether to create new user as system user (uid <= 999) # Returns: # None ######################### ensure_user_exists() { local user="${1:?user is missing}" - local group="${2:-}" + local group="" + local home="" + local is_system_user=false + + # Validate arguments + shift 1 + while [ "$#" -gt 0 ]; do + case "$1" in + -g|--group) + shift + group="${1:?missing group}" + ;; + -h|--home) + shift + home="${1:?missing home directory}" + ;; + -s|--system) + is_system_user=true + ;; + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; + esac + shift + done if ! user_exists "$user"; then - useradd "$user" >/dev/null 2>&1 + local -a user_args=("-N" "$user") + $is_system_user && user_args+=("--system") + useradd "${user_args[@]}" >/dev/null 2>&1 fi if [[ -n "$group" ]]; then - ensure_group_exists "$group" + local -a group_args=("$group") + $is_system_user && group_args+=("--system") + ensure_group_exists "${group_args[@]}" usermod -a -G "$group" "$user" >/dev/null 2>&1 fi + + if [[ -n "$home" ]]; then + mkdir -p "$home" + usermod -d "$home" "$user" >/dev/null 2>&1 + configure_permissions_ownership "$home" -d "775" -f "664" -u "$user" -g "$group" + fi } ######################## diff --git a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/postunpack.sh b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/postunpack.sh index 42a92faea51f..f923799de7bc 100755 --- a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/postunpack.sh +++ b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/postunpack.sh @@ -60,7 +60,7 @@ kong_configure_non_empty_values() { eval "$(kong_env)" # Ensure users and groups used by Kong exist -ensure_user_exists "$KONG_DAEMON_USER" "$KONG_DAEMON_GROUP" +ensure_user_exists "$KONG_DAEMON_USER" --group "$KONG_DAEMON_GROUP" # Ensure directories used by Kong exist and have proper permissions ensure_dir_exists "$KONG_SERVER_DIR" ensure_dir_exists "$KONG_INITSCRIPTS_DIR" diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a56d1209d402..7936cdc79a58 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.0`, `2.3.0-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.0-debian-10-r1/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.0`, `2.3.0-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.0-debian-10-r2/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 79da8da173a7ed8d13bbe97ae88cf58d36bb4d7d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 17 Jan 2021 06:14:41 +0000 Subject: [PATCH 574/950] 2.3.0-debian-10-r3 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 11425e9aff7c..580f5f784e63 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.0-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.3.0-debian-10-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7936cdc79a58..e266406f5f7e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.0`, `2.3.0-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.0-debian-10-r2/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.0`, `2.3.0-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.0-debian-10-r3/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 1020a66880df5154315e958b2021d16a0ac02fe1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 18 Jan 2021 07:42:52 +0000 Subject: [PATCH 575/950] 2.3.0-debian-10-r4 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 580f5f784e63..067126cbaebb 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.0-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="2.3.0-debian-10-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e266406f5f7e..78472e5b4600 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.0`, `2.3.0-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.0-debian-10-r3/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.0`, `2.3.0-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.0-debian-10-r4/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e15094eba3ccfecb4b33967f622b253f00d5b5ad Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 19 Jan 2021 13:12:07 +0000 Subject: [PATCH 576/950] 2.3.0-debian-10-r5 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh | 3 ++- bitnami/kong/README.md | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 067126cbaebb..42db91433d77 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.0-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="2.3.0-debian-10-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh index f38437a1d407..6a7512281470 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh @@ -6,6 +6,7 @@ # Load Generic Libraries . /opt/bitnami/scripts/liblog.sh +. /opt/bitnami/scripts/libfs.sh # Functions @@ -118,7 +119,7 @@ ensure_user_exists() { local -a group_args=("$group") $is_system_user && group_args+=("--system") ensure_group_exists "${group_args[@]}" - usermod -a -G "$group" "$user" >/dev/null 2>&1 + usermod -g "$group" "$user" >/dev/null 2>&1 fi if [[ -n "$home" ]]; then diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 78472e5b4600..23f1bdf5afae 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.0`, `2.3.0-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.0-debian-10-r4/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.0`, `2.3.0-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.0-debian-10-r5/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From eebb151ff05e83ff17d3b88c11b3b825fdc3a049 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 21 Jan 2021 11:22:33 +0000 Subject: [PATCH 577/950] 2.3.0-debian-10-r6 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 42db91433d77..2dead97c7b5d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.0-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="2.3.0-debian-10-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 23f1bdf5afae..4f2b998c5180 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.0`, `2.3.0-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.0-debian-10-r5/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.0`, `2.3.0-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.0-debian-10-r6/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 55ffa23f0ac10d23da908cea1daad4224de6c872 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 23 Jan 2021 14:53:58 +0000 Subject: [PATCH 578/950] 2.3.0-debian-10-r7 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 2dead97c7b5d..c84114f6624e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.0-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="2.3.0-debian-10-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4f2b998c5180..19e540c103f3 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.0`, `2.3.0-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.0-debian-10-r6/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.0`, `2.3.0-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.0-debian-10-r7/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9080f0ad01f8fd69e5da3ae1dd735d117fbb4214 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 25 Jan 2021 06:57:38 +0000 Subject: [PATCH 579/950] 2.3.0-debian-10-r8 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c84114f6624e..68581012159c 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.0-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="2.3.0-debian-10-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 19e540c103f3..0d0bd7fdaa66 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.0`, `2.3.0-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.0-debian-10-r7/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.0`, `2.3.0-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.0-debian-10-r8/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 312ef666197f90b9eaf697824e02ac534779eb15 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 26 Jan 2021 07:13:38 +0000 Subject: [PATCH 580/950] 2.3.0-debian-10-r9 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 68581012159c..36e8bc75dd07 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.0-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="2.3.0-debian-10-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0d0bd7fdaa66..b49cf16b1da1 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.0`, `2.3.0-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.0-debian-10-r8/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.0`, `2.3.0-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.0-debian-10-r9/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From df3ceb38f51ea785346ce1c9b3349568253f8f4b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 26 Jan 2021 19:23:13 +0000 Subject: [PATCH 581/950] 2.3.1-debian-10-r0 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 36e8bc75dd07..a60c6c122b5b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.3.0-0" --checksum 386c85f1d28778dc41808d54fbfb5012cfdd8fdd81793be00c62dca4178d9483 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.3.1-0" --checksum 36aa5d0e7ac626367a9663cbd321751b9d1706d2c2512c01ff7342943bd47518 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.0-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 5e9d74d4e45c..fbdbe114cc6f 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "386c85f1d28778dc41808d54fbfb5012cfdd8fdd81793be00c62dca4178d9483", + "digest": "36aa5d0e7ac626367a9663cbd321751b9d1706d2c2512c01ff7342943bd47518", "distro": "debian-10", "type": "NAMI", - "version": "2.3.0-0" + "version": "2.3.1-0" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b49cf16b1da1..b485ddfe95b2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.0`, `2.3.0-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.0-debian-10-r9/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 614a4315f8ee352f2d36afc3e6645195a48e6315 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 28 Jan 2021 01:09:44 +0000 Subject: [PATCH 582/950] 2.3.1-debian-10-r1 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a60c6c122b5b..d4d10ffc863f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b485ddfe95b2..0ac32058c2d9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r0/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r1/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5a673fb18d25c3c9302714555c1a0d4d200759b4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 29 Jan 2021 01:46:49 +0000 Subject: [PATCH 583/950] 2.3.1-debian-10-r2 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index d4d10ffc863f..7134d5fdb5e3 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0ac32058c2d9..c7d23a795df5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r1/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r2/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9ecf4640ddb3af545d9116cff1f01676f2891d40 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 30 Jan 2021 02:04:55 +0000 Subject: [PATCH 584/950] 2.3.1-debian-10-r3 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 7134d5fdb5e3..73c8ce523c02 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c7d23a795df5..e2e2b3ab5a84 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r2/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r3/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c62a44c476d4e836e917dbdc6389ec6515b8f5ef Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 31 Jan 2021 02:24:42 +0000 Subject: [PATCH 585/950] 2.3.1-debian-10-r4 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 73c8ce523c02..0578be27867a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e2e2b3ab5a84..4501794b09c8 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r3/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r4/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 88a27a4f765769e4840bce91e18e1f7b2d7d8c19 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 1 Feb 2021 02:42:51 +0000 Subject: [PATCH 586/950] 2.3.1-debian-10-r5 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0578be27867a..7bc4403e05ce 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4501794b09c8..7b3aae93585c 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r4/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r5/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ee505158334ef84fb3008e69dd7dc5dc7acc59f8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 2 Feb 2021 02:59:25 +0000 Subject: [PATCH 587/950] 2.3.1-debian-10-r6 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 7bc4403e05ce..168158003d27 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7b3aae93585c..96e2ceb6cb80 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r5/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r6/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 4679c2fb6ed3f4d926dde9511e1d9af6b9381307 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 3 Feb 2021 03:17:16 +0000 Subject: [PATCH 588/950] 2.3.1-debian-10-r7 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 168158003d27..351a878bb2c0 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 96e2ceb6cb80..b531a4a8ed5c 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r6/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r7/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7f0fb2952dc43b81780ca3037030db41946a9d18 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 4 Feb 2021 03:34:57 +0000 Subject: [PATCH 589/950] 2.3.1-debian-10-r8 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 351a878bb2c0..186cc1f76eab 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b531a4a8ed5c..c35780af9165 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r7/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r8/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d09b833660264d5b3468cd3e87461b2c6007051c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 5 Feb 2021 03:52:11 +0000 Subject: [PATCH 590/950] 2.3.1-debian-10-r9 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 186cc1f76eab..a265479ad591 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c35780af9165..0b00ba1f48c8 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r8/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r9/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d292a92f1f7ab3863777c0c254c926acae9afd3c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 6 Feb 2021 04:08:18 +0000 Subject: [PATCH 591/950] 2.3.1-debian-10-r10 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a265479ad591..830228d59b5c 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r10" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0b00ba1f48c8..7d2345efe13a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r9/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r10/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 704f643bff4aba822ea064bfb5bfba23503a6168 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 7 Feb 2021 04:34:38 +0000 Subject: [PATCH 592/950] 2.3.1-debian-10-r11 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 830228d59b5c..b33abaeb3e09 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r10" \ + BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r11" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7d2345efe13a..cbd465c1517b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r10/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r11/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 296870616bfac2c029b792907bcf7c0c5d784d05 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 8 Feb 2021 06:44:13 +0000 Subject: [PATCH 593/950] 2.3.1-debian-10-r13 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index b33abaeb3e09..017854bcb0ed 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r11" \ + BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r13" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index cbd465c1517b..c6b10dae9c13 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r11/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r13/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7c0c24602cce3020bcb0dfd051676094aea186c9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 9 Feb 2021 07:00:23 +0000 Subject: [PATCH 594/950] 2.3.1-debian-10-r14 release --- bitnami/kong/2/debian-10/Dockerfile | 4 +--- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 017854bcb0ed..ef74caa9e0c0 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -11,14 +11,12 @@ COPY prebuildfs / RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.3.1-0" --checksum 36aa5d0e7ac626367a9663cbd321751b9d1706d2c2512c01ff7342943bd47518 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50 -RUN apt-get update && apt-get upgrade -y && \ - rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r13" \ + BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r14" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c6b10dae9c13..2cd330692d54 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r13/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r14/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 77c12d97fabc4a2657809de4e46a6690af77e7f8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 11 Feb 2021 01:44:56 +0000 Subject: [PATCH 595/950] 2.3.2-debian-10-r0 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index ef74caa9e0c0..b1f64d67165e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,14 +9,14 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.3.1-0" --checksum 36aa5d0e7ac626367a9663cbd321751b9d1706d2c2512c01ff7342943bd47518 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.3.2-0" --checksum af3873c5de2a3b0b04646a49e7b3588b43d435f3f1a781312bbdb346b464b502 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50 RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r14" \ + BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index fbdbe114cc6f..5bb729a1eaf9 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "36aa5d0e7ac626367a9663cbd321751b9d1706d2c2512c01ff7342943bd47518", + "digest": "af3873c5de2a3b0b04646a49e7b3588b43d435f3f1a781312bbdb346b464b502", "distro": "debian-10", "type": "NAMI", - "version": "2.3.1-0" + "version": "2.3.2-0" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2cd330692d54..209ffc624baf 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.1-debian-10-r14/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b56ff717f1bccff054112ca4420e90173f05c30f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 12 Feb 2021 02:08:14 +0000 Subject: [PATCH 596/950] 2.3.2-debian-10-r1 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index b1f64d67165e..00a2d60597d9 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 209ffc624baf..8a4d53df076a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r0/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r1/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 537661868a655af95739bff47552a2811cd7c17c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 13 Feb 2021 02:35:17 +0000 Subject: [PATCH 597/950] 2.3.2-debian-10-r2 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 00a2d60597d9..ec5c7a77426e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 8a4d53df076a..e104016fd184 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r1/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r2/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7532b732af32689d91b3aa9ceed830b125cb7e3e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 14 Feb 2021 02:57:19 +0000 Subject: [PATCH 598/950] 2.3.2-debian-10-r3 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index ec5c7a77426e..a819976124b2 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e104016fd184..507c2705ef2e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r2/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r3/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 047750f41644467e84810ea9760a86c6a93c97ca Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 15 Feb 2021 03:19:39 +0000 Subject: [PATCH 599/950] 2.3.2-debian-10-r4 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a819976124b2..22710d0fa4bc 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 507c2705ef2e..e52fe316be9d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r3/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r4/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 551e217e5ae763cb0c33f5dbbfc0a45d10358470 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 16 Feb 2021 03:49:17 +0000 Subject: [PATCH 600/950] 2.3.2-debian-10-r5 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 22710d0fa4bc..b680d96262ef 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e52fe316be9d..915f6fdd60a2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r4/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r5/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 6b7f95d85ac2ee19b223bd8c54afc9c21602b45c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 17 Feb 2021 04:11:55 +0000 Subject: [PATCH 601/950] 2.3.2-debian-10-r6 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index b680d96262ef..c2552d917d6e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 915f6fdd60a2..17f1556d9e81 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r5/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r6/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e7694e0ac2d04fa9452d1f66de4c94edd72b0220 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 18 Feb 2021 04:34:06 +0000 Subject: [PATCH 602/950] 2.3.2-debian-10-r7 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c2552d917d6e..3a15932761f1 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 17f1556d9e81..753f93a4058d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r6/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r7/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 60f8a5c3c91d45c47f884531129082d5e21978ac Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 18 Feb 2021 16:58:22 +0000 Subject: [PATCH 603/950] 2.3.2-debian-10-r8 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 3a15932761f1..5e18caa17578 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 753f93a4058d..d2586d618552 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r7/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r8/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d337c99ce399f40fb7137f2a475b02b53ff02f4e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 19 Feb 2021 17:36:45 +0000 Subject: [PATCH 604/950] 2.3.2-debian-10-r9 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 5e18caa17578..e03a19d0285a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d2586d618552..d24f1c16fe3b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r8/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r9/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d24879d1172b47d7a2e521210d9829cd54f4a06c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 20 Feb 2021 18:01:57 +0000 Subject: [PATCH 605/950] 2.3.2-debian-10-r10 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index e03a19d0285a..200ef386ff74 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r10" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d24f1c16fe3b..b62417d34ee2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r9/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r10/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0cbcf33ab69e5bb379ced4dc6f4cb2d33333db16 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 21 Feb 2021 18:23:48 +0000 Subject: [PATCH 606/950] 2.3.2-debian-10-r11 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 200ef386ff74..71756ba566ac 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r10" \ + BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r11" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b62417d34ee2..3495c92f3a71 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r10/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r11/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 626d48e1ec722a056a3a5a642f61e7be8769ebd4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 22 Feb 2021 08:32:39 +0000 Subject: [PATCH 607/950] 2.3.2-debian-10-r12 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 71756ba566ac..c2a9c12a390d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r11" \ + BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r12" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 3495c92f3a71..dd92824c466c 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r11/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r12/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9515a6742e0290d7847e953e08f53a6865b8016d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 23 Feb 2021 08:56:04 +0000 Subject: [PATCH 608/950] 2.3.2-debian-10-r13 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c2a9c12a390d..365788a8bbc4 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r12" \ + BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r13" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index dd92824c466c..db9e25a1d9ff 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r12/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r13/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 1b8ade81e248e3d8423eb53b9920c766a8dee403 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 24 Feb 2021 09:21:25 +0000 Subject: [PATCH 609/950] 2.3.2-debian-10-r14 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 365788a8bbc4..78af822e9286 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r13" \ + BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r14" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index db9e25a1d9ff..f96c7212ab8a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r13/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r14/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ab52dc9448eb03c439b08ce1b0074c4d1fe83929 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 25 Feb 2021 09:43:51 +0000 Subject: [PATCH 610/950] 2.3.2-debian-10-r15 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 78af822e9286..10022c6b852d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r14" \ + BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r15" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f96c7212ab8a..35b1623e06e7 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r14/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r15/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 45323e43e5df7196ef520111233545c610b5a795 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 26 Feb 2021 10:05:15 +0000 Subject: [PATCH 611/950] 2.3.2-debian-10-r16 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 10022c6b852d..ec97e4e11787 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r15" \ + BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r16" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 35b1623e06e7..f38decbeb1b2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r15/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r16/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 74cd00fbcacb64c5751ac46e2b3bb092a5235d39 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 26 Feb 2021 16:00:31 +0000 Subject: [PATCH 612/950] 2.3.2-debian-10-r17 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index ec97e4e11787..9cfca7c23ca4 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,14 +9,14 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.3.2-0" --checksum af3873c5de2a3b0b04646a49e7b3588b43d435f3f1a781312bbdb346b464b502 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.3.2-1" --checksum 8bc4c24ca035be44ac81292e9670b7566051134d5ae97890058419875882bfaa RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50 RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r16" \ + BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r17" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 5bb729a1eaf9..33f58fd4235f 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "af3873c5de2a3b0b04646a49e7b3588b43d435f3f1a781312bbdb346b464b502", + "digest": "8bc4c24ca035be44ac81292e9670b7566051134d5ae97890058419875882bfaa", "distro": "debian-10", "type": "NAMI", - "version": "2.3.2-0" + "version": "2.3.2-1" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f38decbeb1b2..a85fb99cfbd8 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r16/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r17/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0c86ebab9c75a2f57f55b0a836d802e29bef8c1b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 27 Feb 2021 16:25:38 +0000 Subject: [PATCH 613/950] 2.3.2-debian-10-r18 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 9cfca7c23ca4..bbb81ab1ce2a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r17" \ + BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r18" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a85fb99cfbd8..b5d0c739a0fb 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r17/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r18/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 1da99e52a9187869f4abaf9d34b0602d28d0608f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 28 Feb 2021 16:52:30 +0000 Subject: [PATCH 614/950] 2.3.2-debian-10-r19 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index bbb81ab1ce2a..1d47fc64421e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r18" \ + BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r19" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b5d0c739a0fb..590ad62e09a9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r18/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r19/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e2ed2ef1c208a4ea65e4e625631cf3a9d4d367d5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 1 Mar 2021 17:18:47 +0000 Subject: [PATCH 615/950] 2.3.2-debian-10-r20 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 1d47fc64421e..22593020db7e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r19" \ + BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r20" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 590ad62e09a9..19a177f52bdc 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r19/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r20/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c9f0772afb22ff39962b85907e07a5544678c88c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 2 Mar 2021 17:42:19 +0000 Subject: [PATCH 616/950] 2.3.2-debian-10-r21 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 22593020db7e..18e101e280d8 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r20" \ + BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r21" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 19a177f52bdc..f6d9ab3ba8b8 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r20/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r21/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f64eeca515c9984206d0c348875463601c639b39 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 3 Mar 2021 18:39:51 +0000 Subject: [PATCH 617/950] 2.3.2-debian-10-r22 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 18e101e280d8..5842ba5437fd 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r21" \ + BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r22" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f6d9ab3ba8b8..42e09825a6c9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r21/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r22`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r22/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From a236008a7be4f179660117c1d432411ba327082e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 9 Mar 2021 17:04:22 +0000 Subject: [PATCH 618/950] 2.3.3-debian-10-r0 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- .../prebuildfs/opt/bitnami/scripts/libservice.sh | 11 ++++++++++- bitnami/kong/README.md | 2 +- 4 files changed, 15 insertions(+), 6 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 5842ba5437fd..b1f6ccc6bdc8 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,14 +9,14 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.3.2-1" --checksum 8bc4c24ca035be44ac81292e9670b7566051134d5ae97890058419875882bfaa +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.3.3-0" --checksum 98a9347a144edea6709103a71097ae03cdbc375ed450bcdb097fd507e82e2fb7 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50 RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.2-debian-10-r22" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 33f58fd4235f..f5688b009725 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "8bc4c24ca035be44ac81292e9670b7566051134d5ae97890058419875882bfaa", + "digest": "98a9347a144edea6709103a71097ae03cdbc375ed450bcdb097fd507e82e2fb7", "distro": "debian-10", "type": "NAMI", - "version": "2.3.2-1" + "version": "2.3.3-0" } } \ No newline at end of file diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh index 55e1dfc4ab28..0f6c62b8c894 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh @@ -103,6 +103,8 @@ generate_cron_conf() { local run_as="root" local schedule="* * * * *" + local clean="true" + # Parse optional CLI flags shift 2 while [[ "$#" -gt 0 ]]; do @@ -115,6 +117,9 @@ generate_cron_conf() { shift schedule="$1" ;; + --no-clean) + clean="false" + ;; *) echo "Invalid command line flag ${1}" >&2 return 1 @@ -124,7 +129,11 @@ generate_cron_conf() { done mkdir -p /etc/cron.d - echo "${schedule} ${run_as} ${cmd}" > /etc/cron.d/"$service_name" + if "$clean"; then + echo "${schedule} ${run_as} ${cmd}" > /etc/cron.d/"$service_name" + else + echo "${schedule} ${run_as} ${cmd}" >> /etc/cron.d/"$service_name" + fi } ######################## diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 42e09825a6c9..1503227de34d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.2`, `2.3.2-debian-10-r22`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.2-debian-10-r22/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From de51daf10332562a3db36b0a778c36dcaac0085a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 10 Mar 2021 20:36:33 +0000 Subject: [PATCH 619/950] 2.3.3-debian-10-r1 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index b1f6ccc6bdc8..c5f5fde94416 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1503227de34d..48aaff0dcc18 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r0/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r1/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c2dd5be42bf283ce7ec4799e0395b87585eda17c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 11 Mar 2021 21:00:00 +0000 Subject: [PATCH 620/950] 2.3.3-debian-10-r2 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c5f5fde94416..91b07316fc7c 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 48aaff0dcc18..1248aeda8f5f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r1/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r2/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 2bcc1d46a9af49c520497edf6167f24fd4c0d664 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 12 Mar 2021 21:21:54 +0000 Subject: [PATCH 621/950] 2.3.3-debian-10-r3 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 91b07316fc7c..ded23709324d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1248aeda8f5f..7378160d0d90 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r2/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r3/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7af141c436a9d47058194b3ca854be4ca5953070 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 13 Mar 2021 21:47:55 +0000 Subject: [PATCH 622/950] 2.3.3-debian-10-r4 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index ded23709324d..4e3e4d28637b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7378160d0d90..9871cf5bf0a3 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r3/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r4/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 00f03ca1bce3985ce110d5ab67754fd7e2acfe73 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 14 Mar 2021 22:11:05 +0000 Subject: [PATCH 623/950] 2.3.3-debian-10-r5 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 4e3e4d28637b..2966a3fd5e7e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9871cf5bf0a3..b322603fa9e5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r4/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r5/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From fd872dd939679e123569b96f699f80dfc1766eab Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 15 Mar 2021 22:35:05 +0000 Subject: [PATCH 624/950] 2.3.3-debian-10-r6 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh | 1 + bitnami/kong/README.md | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 2966a3fd5e7e..5a6ac101d2eb 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh index 0f6c62b8c894..ae8f310137d2 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh @@ -102,6 +102,7 @@ generate_cron_conf() { local cmd="${2:?command is missing}" local run_as="root" local schedule="* * * * *" + local clean="true" local clean="true" diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b322603fa9e5..b2affd6a8504 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r5/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r6/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 4f19c8881393ca53603ff180cb57b59e421d2867 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 16 Mar 2021 23:15:38 +0000 Subject: [PATCH 625/950] 2.3.3-debian-10-r7 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 5a6ac101d2eb..511439153dcf 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b2affd6a8504..888a9a5425d7 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r6/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r7/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 64f9a94d67ccc281cc8f0f1f2d56d66d319e1322 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 17 Mar 2021 22:10:12 +0000 Subject: [PATCH 626/950] 2.3.3-debian-10-r8 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 511439153dcf..af2637822d94 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,14 +9,14 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.3.3-0" --checksum 98a9347a144edea6709103a71097ae03cdbc375ed450bcdb097fd507e82e2fb7 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.3.3-1" --checksum 0ff6153beef7ab4d7c1cf0d755cbf9e4dc52d9b74cb7ca79d6705aec28ae180f RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50 RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index f5688b009725..188cef124ac2 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "98a9347a144edea6709103a71097ae03cdbc375ed450bcdb097fd507e82e2fb7", + "digest": "0ff6153beef7ab4d7c1cf0d755cbf9e4dc52d9b74cb7ca79d6705aec28ae180f", "distro": "debian-10", "type": "NAMI", - "version": "2.3.3-0" + "version": "2.3.3-1" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 888a9a5425d7..a5beac45b27e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r7/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r8/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e970f74407b8dbad96575ebf16f009fdad4444c9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 18 Mar 2021 23:43:54 +0000 Subject: [PATCH 627/950] 2.3.3-debian-10-r9 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index af2637822d94..2049ceb1ab40 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a5beac45b27e..1642d7dd0802 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r8/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r9/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 485e2cfd884b96855faff19b43ff374a6b318a2a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 20 Mar 2021 00:05:59 +0000 Subject: [PATCH 628/950] 2.3.3-debian-10-r10 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 2049ceb1ab40..ecc5c5ea1b58 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r10" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1642d7dd0802..ad55939c35b7 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r9/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r10/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e903dbab11531010fa6d4301b6be48ebf04bf4a1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 21 Mar 2021 00:29:06 +0000 Subject: [PATCH 629/950] 2.3.3-debian-10-r11 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index ecc5c5ea1b58..264d8f14b484 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r10" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r11" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index ad55939c35b7..949fc146c9ed 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r10/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r11/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 82e9e3a9cd4b944f7d2232152fdd4ab4ac373d66 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 22 Mar 2021 00:50:33 +0000 Subject: [PATCH 630/950] 2.3.3-debian-10-r12 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 264d8f14b484..f7dcb8261667 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r11" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r12" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 949fc146c9ed..a8428ac99e03 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r11/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r12/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f11a94ab47be1677d09041875c05cb1257e53f35 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 23 Mar 2021 01:13:39 +0000 Subject: [PATCH 631/950] 2.3.3-debian-10-r13 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index f7dcb8261667..130c5344caa7 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r12" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r13" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a8428ac99e03..bbf8a4b7e153 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r12/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r13/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 20fc2b51e4fbd76b9003a0e586c682674a004fd2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 24 Mar 2021 01:35:27 +0000 Subject: [PATCH 632/950] 2.3.3-debian-10-r14 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 130c5344caa7..69b8f251f111 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r13" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r14" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index bbf8a4b7e153..857d6f7aeacd 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r13/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r14/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 71617f2278fc7ca07082b2d84e260ea81224fb0f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 25 Mar 2021 12:54:11 +0000 Subject: [PATCH 633/950] 2.3.3-debian-10-r15 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 69b8f251f111..2ba41cc5dbb2 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r14" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r15" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 857d6f7aeacd..b02a08e9e4a4 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r14/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r15/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 65b747410802057d585d6a8978fa834d3951c433 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 26 Mar 2021 13:48:36 +0000 Subject: [PATCH 634/950] 2.3.3-debian-10-r16 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 2ba41cc5dbb2..862aa25c0fd4 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r15" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r16" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b02a08e9e4a4..4045dd44715b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r15/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r16/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d8fb2e77f1f2271ee015c3a991f6e0986534821a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 27 Mar 2021 14:11:23 +0000 Subject: [PATCH 635/950] 2.3.3-debian-10-r17 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 862aa25c0fd4..22be38c7d104 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r16" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r17" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4045dd44715b..fb1f970ca77f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r16/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r17/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 50a4254ac88ca98d0b1ae55d0893760292a5f5af Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 28 Mar 2021 14:42:04 +0000 Subject: [PATCH 636/950] 2.3.3-debian-10-r18 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 22be38c7d104..f2b692d18dc5 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r17" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r18" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index fb1f970ca77f..d3ef2a3485a1 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r17/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r18/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9e2633c139b04cb3f88bad49f0a2fb3e98c93f3b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 29 Mar 2021 17:23:51 +0000 Subject: [PATCH 637/950] 2.3.3-debian-10-r19 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh | 4 ++-- .../prebuildfs/opt/bitnami/scripts/libpersistence.sh | 8 ++++---- bitnami/kong/README.md | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index f2b692d18dc5..d38a8af8269d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r18" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r19" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh index 8f37ecbd823e..ae5e2459c377 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh @@ -106,9 +106,9 @@ is_file_writable() { relativize() { local -r path="${1:?missing path}" local -r base="${2:?missing base}" - pushd "$base" >/dev/null + pushd "$base" >/dev/null || exit realpath -q --no-symlinks --relative-base="$base" "$path" | sed -e 's|^/$|.|' -e 's|^/||' - popd >/dev/null + popd >/dev/null || exit } ######################## diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh index 452c1f4b2831..264a9291d634 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh @@ -35,7 +35,7 @@ persist_app() { warn "No files are configured to be persisted" return fi - pushd "$install_dir" >/dev/null + pushd "$install_dir" >/dev/null || exit local file_to_persist_relative file_to_persist_destination file_to_persist_destination_folder local -r tmp_file="/tmp/perms.acl" for file_to_persist in "${files_to_persist[@]}"; do @@ -53,16 +53,16 @@ persist_app() { ensure_dir_exists "$file_to_persist_destination_folder" cp -Lr --preserve=links "$file_to_persist_relative" "$file_to_persist_destination_folder" # Restore permissions - pushd "$persist_dir" >/dev/null + pushd "$persist_dir" >/dev/null || exit if am_i_root; then setfacl --restore="$tmp_file" else # When running as non-root, don't change ownership setfacl --restore=<(grep -E -v '^# (owner|group):' "$tmp_file") fi - popd >/dev/null + popd >/dev/null || exit done - popd >/dev/null + popd >/dev/null || exit rm -f "$tmp_file" # Install the persisted files into the installation directory, via symlinks restore_persisted_app "$@" diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d3ef2a3485a1..2948e1d22359 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r18/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r19/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From febb7c1f51d1a87443bb9e94293e5256be04bcd6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 30 Mar 2021 18:11:43 +0000 Subject: [PATCH 638/950] 2.3.3-debian-10-r20 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index d38a8af8269d..2528d35aee2e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r19" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r20" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2948e1d22359..093e8d54029f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r19/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r20/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). @@ -152,7 +152,7 @@ You can configure the containers [logging driver](https://docs.docker.com/engine The Bitnami Kong Docker image is built using a Dockerfile with the structure below: ```Dockerfile -FROM bitnami/minideb-extras-base +FROM bitnami/minideb ENV ... From 07330bf60059e0cb7b6d77a7b6acc1910d1e5e39 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 30 Mar 2021 22:10:17 +0000 Subject: [PATCH 639/950] 2.3.3-debian-10-r21 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 2528d35aee2e..5fc2883b7a0f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,14 +9,14 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.3.3-1" --checksum 0ff6153beef7ab4d7c1cf0d755cbf9e4dc52d9b74cb7ca79d6705aec28ae180f +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.3.3-2" --checksum 61b083d87ba90066c1e73d0e57f2e0ebe2b1cafcd968814e585a9f99c4762430 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50 RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r20" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r21" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 188cef124ac2..4330b9a3ee9a 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "0ff6153beef7ab4d7c1cf0d755cbf9e4dc52d9b74cb7ca79d6705aec28ae180f", + "digest": "61b083d87ba90066c1e73d0e57f2e0ebe2b1cafcd968814e585a9f99c4762430", "distro": "debian-10", "type": "NAMI", - "version": "2.3.3-1" + "version": "2.3.3-2" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 093e8d54029f..0e40476e6368 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r20/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r21/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 22f9ca296bf24ad8d2d1e8965224513b97b07560 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 31 Mar 2021 22:59:14 +0000 Subject: [PATCH 640/950] 2.3.3-debian-10-r22 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 5fc2883b7a0f..3cb808d3a8ab 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r21" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r22" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0e40476e6368..4c825f9e0f7e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r21/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r22`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r22/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8d299ff8feef896b28c94a8d81101e7350459c10 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 1 Apr 2021 23:22:27 +0000 Subject: [PATCH 641/950] 2.3.3-debian-10-r23 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 3cb808d3a8ab..293921877938 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r22" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r23" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4c825f9e0f7e..d1d0db2a5ac5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r22`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r22/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r23`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r23/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b1a4d02ae3a20ad101598bb19734832fac76e950 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 3 Apr 2021 02:49:39 +0000 Subject: [PATCH 642/950] 2.3.3-debian-10-r24 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 293921877938..2551fc7fe5a4 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r23" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r24" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d1d0db2a5ac5..85f6369b3c63 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r23`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r23/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r24`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r24/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 35d057d7e2afcf4c76ad7813d3dd6ff5bd9aaa7c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 4 Apr 2021 03:19:00 +0000 Subject: [PATCH 643/950] 2.3.3-debian-10-r25 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 2551fc7fe5a4..932ffbdf6e08 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r24" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r25" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 85f6369b3c63..49808f0da3da 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r24`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r24/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r25`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r25/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 378d3ef6ff8e70a272fe723bf526f18a081cae52 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 5 Apr 2021 17:13:22 +0000 Subject: [PATCH 644/950] 2.3.3-debian-10-r26 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 932ffbdf6e08..02c5497106cc 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r25" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r26" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 49808f0da3da..1106881f8b3c 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r25`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r25/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r26`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r26/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 59cdd5842748e9601506b312eb36e3f6f60e248c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 7 Apr 2021 04:59:39 +0000 Subject: [PATCH 645/950] 2.3.3-debian-10-r27 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 02c5497106cc..0d3ab233c9df 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r26" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r27" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1106881f8b3c..abf5278df622 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r26`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r26/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r27`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r27/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 01c6b04210fe617fc94db33221900c88122e0d33 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 8 Apr 2021 05:22:45 +0000 Subject: [PATCH 646/950] 2.3.3-debian-10-r28 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/2/debian-10/docker-compose.yml | 4 ++-- .../kong/2/debian-10/prebuildfs/opt/bitnami/scripts/liblog.sh | 2 +- .../2/debian-10/prebuildfs/opt/bitnami/scripts/libversion.sh | 4 ++-- .../kong/2/debian-10/rootfs/opt/bitnami/scripts/libkong.sh | 2 +- bitnami/kong/README.md | 2 +- bitnami/kong/docker-compose.yml | 4 ++-- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0d3ab233c9df..1da4d9ca5ef2 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r27" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r28" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/docker-compose.yml b/bitnami/kong/2/debian-10/docker-compose.yml index 9966483c46d6..844fb936abe7 100644 --- a/bitnami/kong/2/debian-10/docker-compose.yml +++ b/bitnami/kong/2/debian-10/docker-compose.yml @@ -1,7 +1,7 @@ version: '2' services: postgresql: - image: docker.io/bitnami/postgresql:11-debian-10 + image: docker.io/bitnami/postgresql:11 volumes: - postgresql_data:/bitnami/postgresql environment: @@ -9,7 +9,7 @@ services: - POSTGRESQL_PASSWORD=bitnami - POSTGRESQL_DATABASE=kong kong: - image: docker.io/bitnami/kong:2-debian-10 + image: docker.io/bitnami/kong:2 ports: - 8000:8000 - 8443:8443 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/liblog.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/liblog.sh index 60ec4cbfc32a..cfc824f5ec83 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/liblog.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/liblog.sh @@ -106,5 +106,5 @@ indent() { for ((i = 0; i < num; i++)); do indent_unit="${indent_unit}${char}" done - echo "$string" | sed "s/^/${indent_unit}/" + echo "${string//^/${indent_unit}}" } diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libversion.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libversion.sh index 66d4f457bdd2..f3bc7568bfa5 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libversion.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libversion.sh @@ -9,7 +9,7 @@ # Functions ######################## -# Gets semantic version +# Gets semantic version # Arguments: # $1 - version: string to extract major.minor.patch # $2 - section: 1 to extract major, 2 to extract minor, 3 to extract patch @@ -38,7 +38,7 @@ get_sematic_version () { done local number_regex='^[0-9]+$' - if [[ "$section" =~ $number_regex ]] && (( $section > 0 )) && (( $section <= 3 )); then + if [[ "$section" =~ $number_regex ]] && (( section > 0 )) && (( section <= 3 )); then echo "${version_sections[$section]}" return else diff --git a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/libkong.sh b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/libkong.sh index e95b3e6c8278..4aa19c7b63dc 100644 --- a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/libkong.sh +++ b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/libkong.sh @@ -2,7 +2,7 @@ # # Bitnami Kong library -# shellcheck disable=SC1091 +# shellcheck disable=SC1090,SC1091 # Load generic libraries . /opt/bitnami/scripts/libfs.sh diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index abf5278df622..50b3db751711 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r27`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r27/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r28`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r28/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). diff --git a/bitnami/kong/docker-compose.yml b/bitnami/kong/docker-compose.yml index 9966483c46d6..844fb936abe7 100644 --- a/bitnami/kong/docker-compose.yml +++ b/bitnami/kong/docker-compose.yml @@ -1,7 +1,7 @@ version: '2' services: postgresql: - image: docker.io/bitnami/postgresql:11-debian-10 + image: docker.io/bitnami/postgresql:11 volumes: - postgresql_data:/bitnami/postgresql environment: @@ -9,7 +9,7 @@ services: - POSTGRESQL_PASSWORD=bitnami - POSTGRESQL_DATABASE=kong kong: - image: docker.io/bitnami/kong:2-debian-10 + image: docker.io/bitnami/kong:2 ports: - 8000:8000 - 8443:8443 From d1d82f491bf9bc36f62463ebc87fd15f19d9cb37 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 9 Apr 2021 05:44:29 +0000 Subject: [PATCH 647/950] 2.3.3-debian-10-r29 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../kong/2/debian-10/prebuildfs/opt/bitnami/scripts/liblog.sh | 4 +++- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 1da4d9ca5ef2..85c3e108ea9e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r28" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r29" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/liblog.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/liblog.sh index cfc824f5ec83..c7c0f6d4422a 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/liblog.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/liblog.sh @@ -106,5 +106,7 @@ indent() { for ((i = 0; i < num; i++)); do indent_unit="${indent_unit}${char}" done - echo "${string//^/${indent_unit}}" + # shellcheck disable=SC2001 + # Complex regex, see https://github.com/koalaman/shellcheck/wiki/SC2001#exceptions + echo "$string" | sed "s/^/${indent_unit}/" } diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 50b3db751711..6ccaee56ecdd 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r28`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r28/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r29`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r29/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ac8553e00e117c9b04c2a9bbafe2229f073e4af4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 10 Apr 2021 06:05:57 +0000 Subject: [PATCH 648/950] 2.3.3-debian-10-r30 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 85c3e108ea9e..0e2867bbfe8f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r29" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r30" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 6ccaee56ecdd..35cb496b555a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r29`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r29/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r30`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r30/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 6adee06fa3e8c6c5be8a3cee04de30cf1e957972 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 11 Apr 2021 06:29:58 +0000 Subject: [PATCH 649/950] 2.3.3-debian-10-r31 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0e2867bbfe8f..c0b6729b4bb2 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r30" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r31" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 35cb496b555a..6f72d0079da0 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r30`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r30/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r31`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r31/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d711cd8b2a5678e3a20930c071aaeb990d9f831c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 12 Apr 2021 06:51:32 +0000 Subject: [PATCH 650/950] 2.3.3-debian-10-r32 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c0b6729b4bb2..437a8ace60eb 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r31" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r32" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 6f72d0079da0..0ff97a1cb265 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r31`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r31/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r32`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r32/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5a9c7543f64aafda930ca9ed686151a6f75bcccc Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 12 Apr 2021 07:43:34 +0000 Subject: [PATCH 651/950] 2.3.3-debian-10-r33 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 437a8ace60eb..f43e8f1135db 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r32" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r33" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0ff97a1cb265..4a79bad9c502 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r32`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r32/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r33`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r33/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 39948eb077d2daa65fbdbd138c6e78b0bf58db6d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 13 Apr 2021 08:06:46 +0000 Subject: [PATCH 652/950] 2.3.3-debian-10-r34 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index f43e8f1135db..9bf1fb8a4ff5 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r33" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r34" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4a79bad9c502..ca6a41c787a2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r33`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r33/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r34`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r34/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 17ff5951cf1907ade4d709d3bd183a60058d8465 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 14 Apr 2021 01:10:28 +0000 Subject: [PATCH 653/950] 2.3.3-debian-10-r35 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 9bf1fb8a4ff5..98e97209ca04 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,14 +9,14 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.3.3-2" --checksum 61b083d87ba90066c1e73d0e57f2e0ebe2b1cafcd968814e585a9f99c4762430 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.3.3-3" --checksum 74954180518c1a0402923e3def53d0ed220631a75166637ad1984691128d8bbb RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50 RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r34" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r35" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 4330b9a3ee9a..217c15900b1e 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "61b083d87ba90066c1e73d0e57f2e0ebe2b1cafcd968814e585a9f99c4762430", + "digest": "74954180518c1a0402923e3def53d0ed220631a75166637ad1984691128d8bbb", "distro": "debian-10", "type": "NAMI", - "version": "2.3.3-2" + "version": "2.3.3-3" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index ca6a41c787a2..b8f20bdfcf70 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r34`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r34/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r35`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r35/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b99b280c685769b0da220dd5e652c73936ada8c6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 15 Apr 2021 01:32:08 +0000 Subject: [PATCH 654/950] 2.3.3-debian-10-r36 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 98e97209ca04..3927955f7db6 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r35" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r36" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b8f20bdfcf70..1d43e15a2faa 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r35`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r35/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r36`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r36/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c25fed50988c201fe54f7d22e9f48dca9f78b735 Mon Sep 17 00:00:00 2001 From: Carlos Rodriguez Hernandez Date: Thu, 15 Apr 2021 07:22:30 +0000 Subject: [PATCH 655/950] Add stale GH action to this repository (removing previous method) --- bitnami/kong/.github/stale.yml | 36 ------------------------ bitnami/kong/.github/workflows/stale.yml | 20 +++++++++++++ 2 files changed, 20 insertions(+), 36 deletions(-) delete mode 100644 bitnami/kong/.github/stale.yml create mode 100644 bitnami/kong/.github/workflows/stale.yml diff --git a/bitnami/kong/.github/stale.yml b/bitnami/kong/.github/stale.yml deleted file mode 100644 index ea65d3277a62..000000000000 --- a/bitnami/kong/.github/stale.yml +++ /dev/null @@ -1,36 +0,0 @@ -# Configuration for probot-stale - https://github.com/probot/stale - -# Number of days of inactivity before an Issue or Pull Request becomes stale -daysUntilStale: 15 - -# Number of days of inactivity before a stale Issue or Pull Request is closed. -daysUntilClose: 5 - -# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable -exemptLabels: - - on-hold - -# Label to use when marking as stale -staleLabel: stale - -issues: - # Comment to post when marking as stale. Set to `false` to disable - markComment: > - This Issue has been automatically marked as "stale" because it has not had recent activity (for 15 days). It will be closed if no further activity occurs. Thanks for the feedback. - - # Comment to post when closing a stale Issue or Pull Request. - closeComment: > - Due to the lack of activity in the last 5 days since it was marked as "stale", we proceed to close this Issue. Do not hesitate to reopen it later if necessary. - -pulls: - # Comment to post when marking as stale. Set to `false` to disable - markComment: > - This Pull Request has been automatically marked as "stale" because it has not had recent activity (for 15 days). It will be closed if no further activity occurs. Thank you for your contribution. - - # Comment to post when closing a stale Issue or Pull Request. - closeComment: > - Due to the lack of activity in the last 5 days since it was marked as "stale", we proceed to close this Pull Request. Do not hesitate to reopen it later if necessary. - -# Limit the number of actions per hour, from 1-30. Default is 30 -limitPerRun: 30 - diff --git a/bitnami/kong/.github/workflows/stale.yml b/bitnami/kong/.github/workflows/stale.yml new file mode 100644 index 000000000000..0bf90080c817 --- /dev/null +++ b/bitnami/kong/.github/workflows/stale.yml @@ -0,0 +1,20 @@ +name: 'Close stale issues and PRs' +on: + schedule: + - cron: '0 1 * * *' + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v3 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + stale-issue-message: 'This Issue has been automatically marked as "stale" because it has not had recent activity (for 15 days). It will be closed if no further activity occurs. Thanks for the feedback.' + stale-pr-message: 'This Pull Request has been automatically marked as "stale" because it has not had recent activity (for 15 days). It will be closed if no further activity occurs. Thank you for your contribution.' + close-issue-message: 'Due to the lack of activity in the last 5 days since it was marked as "stale", we proceed to close this Issue. Do not hesitate to reopen it later if necessary.' + close-pr-message: 'Due to the lack of activity in the last 5 days since it was marked as "stale", we proceed to close this Pull Request. Do not hesitate to reopen it later if necessary.' + days-before-stale: 15 + days-before-close: 5 + exempt-issue-labels: 'on-hold' + exempt-pr-labels: 'on-hold' From 778fcd30cf37a73e9bca55cd52412a29bfd49a6c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 16 Apr 2021 02:50:58 +0000 Subject: [PATCH 656/950] 2.3.3-debian-10-r37 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 3927955f7db6..4adeab5077d1 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r36" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r37" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1d43e15a2faa..f61d2e4cfc7e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r36`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r36/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r37`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r37/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d585f91ccb8285a72e349e1c4b7c8ad8948b5a0d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 17 Apr 2021 04:06:31 +0000 Subject: [PATCH 657/950] 2.3.3-debian-10-r38 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 4adeab5077d1..a9a8057c626e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r37" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r38" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f61d2e4cfc7e..7fb966bdea0e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r37`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r37/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r38`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r38/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d288912bd789cf139af02cd90b26a9e581bc1e67 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 18 Apr 2021 04:27:49 +0000 Subject: [PATCH 658/950] 2.3.3-debian-10-r39 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a9a8057c626e..9aa8844d3b3b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r38" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r39" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7fb966bdea0e..b9f0b810a2b2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r38`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r38/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r39`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r39/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0373e9fc630ada98699ad8b46dd87563b9c0434e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 19 Apr 2021 04:50:59 +0000 Subject: [PATCH 659/950] 2.3.3-debian-10-r40 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 9aa8844d3b3b..c12af5fe7681 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r39" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r40" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b9f0b810a2b2..cff12e249680 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r39`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r39/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r40`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r40/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From fa01d8eba613b847184804fd6ba46adf74755100 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 21 Apr 2021 01:23:30 +0000 Subject: [PATCH 660/950] 2.3.3-debian-10-r41 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c12af5fe7681..8514f043815d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r40" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r41" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index cff12e249680..0317927cc094 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r40`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r40/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r41`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r41/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 936f92f73b0885e04478b896984420b9391d105e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 22 Apr 2021 02:58:00 +0000 Subject: [PATCH 661/950] 2.3.3-debian-10-r42 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 8514f043815d..b679092559ff 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r41" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r42" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0317927cc094..f32a4e8b1491 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r41`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r41/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r42`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r42/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b102c86e7de90ec9c327738d68f5f21a5d4b5e3e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 22 Apr 2021 10:30:58 +0000 Subject: [PATCH 662/950] 2.3.3-debian-10-r43 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index b679092559ff..5dfdf8cc0038 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r42" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r43" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f32a4e8b1491..681574319ad3 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r42`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r42/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r43`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r43/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9835d01d724edc58f1756bbf6fa5eb657ebe677f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 24 Apr 2021 20:45:10 +0000 Subject: [PATCH 663/950] 2.3.3-debian-10-r44 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh | 1 + bitnami/kong/README.md | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 5dfdf8cc0038..a475b7752c46 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r43" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r44" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh index 25bff4a05105..da97ed81c921 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh @@ -212,6 +212,7 @@ ensure_web_server_app_configuration_exists() { | --apache-before-vhost-configuration \ | --apache-allow-override \ | --apache-extra-directory-configuration \ + | --apache-proxy-address \ | --apache-move-htaccess \ ) apache_args+=("${1//apache-/}" "${2:?missing value}") diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 681574319ad3..dc7e6dd730c4 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r43`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r43/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r44`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r44/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7079c6fe7f59573f34bc56c063789d24ee55e501 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 28 Apr 2021 07:44:26 +0000 Subject: [PATCH 664/950] 2.3.3-debian-10-r45 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a475b7752c46..9cd62cfcf269 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r44" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r45" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index dc7e6dd730c4..6442152c2400 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r44`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r44/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r45`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r45/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 210867d97da366e8bb84a562c47cc03de25ce9fc Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 29 Apr 2021 08:10:13 +0000 Subject: [PATCH 665/950] 2.3.3-debian-10-r46 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 9cd62cfcf269..0ebbe73e31c8 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r45" \ + BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r46" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 6442152c2400..b4520275f84e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r45`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r45/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r46`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r46/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e3c56ee3afa7e05304fe40aafb6ae431696a75d3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 30 Apr 2021 12:10:46 +0000 Subject: [PATCH 666/950] 2.4.0-debian-10-r0 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0ebbe73e31c8..92fe4ee42aec 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,14 +9,14 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.3.3-3" --checksum 74954180518c1a0402923e3def53d0ed220631a75166637ad1984691128d8bbb +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.4.0-0" --checksum b06324d91d33e62d25ac20dd4d3bc44ac69d1f0d0c038191b1a20b9d40686cc6 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50 RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.3.3-debian-10-r46" \ + BITNAMI_IMAGE_VERSION="2.4.0-debian-10-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 217c15900b1e..57abd3c2fada 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "74954180518c1a0402923e3def53d0ed220631a75166637ad1984691128d8bbb", + "digest": "b06324d91d33e62d25ac20dd4d3bc44ac69d1f0d0c038191b1a20b9d40686cc6", "distro": "debian-10", "type": "NAMI", - "version": "2.3.3-3" + "version": "2.4.0-0" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b4520275f84e..da5d5fdb30af 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.3.3`, `2.3.3-debian-10-r46`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.3.3-debian-10-r46/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.0`, `2.4.0-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.0-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 49cdc659f6b493cb3ef37011ce575311d7a354b3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 1 May 2021 12:33:45 +0000 Subject: [PATCH 667/950] 2.4.0-debian-10-r1 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 92fe4ee42aec..c09255c1186d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.0-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.4.0-debian-10-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index da5d5fdb30af..a878558fecd5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.0`, `2.4.0-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.0-debian-10-r0/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.0`, `2.4.0-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.0-debian-10-r1/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From a3ccef052fe3a0f2301aead6ef04bc3771b7933f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 2 May 2021 12:54:34 +0000 Subject: [PATCH 668/950] 2.4.0-debian-10-r2 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c09255c1186d..d95813d11e52 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.0-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.4.0-debian-10-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a878558fecd5..60607179f53a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.0`, `2.4.0-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.0-debian-10-r1/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.0`, `2.4.0-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.0-debian-10-r2/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From a078fb2b5245e3eebbe71cb3ba276dca12ba19f1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 3 May 2021 13:17:44 +0000 Subject: [PATCH 669/950] 2.4.0-debian-10-r3 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index d95813d11e52..864944af2fd8 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.0-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.4.0-debian-10-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 60607179f53a..86da505f5cca 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.0`, `2.4.0-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.0-debian-10-r2/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.0`, `2.4.0-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.0-debian-10-r3/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From eea61991f166db91667dc13e7e3164508cc01f25 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 4 May 2021 13:41:57 +0000 Subject: [PATCH 670/950] 2.4.0-debian-10-r4 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 864944af2fd8..6b522be83c8e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.0-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="2.4.0-debian-10-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 86da505f5cca..72d7c1da4fca 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.0`, `2.4.0-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.0-debian-10-r3/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.0`, `2.4.0-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.0-debian-10-r4/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From bfc37673230debaacd8b138dc68479fdfe10d4d9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 5 May 2021 14:07:04 +0000 Subject: [PATCH 671/950] 2.4.0-debian-10-r5 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 6b522be83c8e..4feeda50bc5f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.0-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="2.4.0-debian-10-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 72d7c1da4fca..77c79b89a2fb 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.0`, `2.4.0-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.0-debian-10-r4/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.0`, `2.4.0-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.0-debian-10-r5/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7eda2e538a823a0e7045d4d7e5e2ed73a3f0a2ba Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 8 May 2021 04:09:19 +0000 Subject: [PATCH 672/950] 2.4.0-debian-10-r6 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- .../prebuildfs/opt/bitnami/scripts/libvalidations.sh | 2 +- .../debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh | 4 +++- bitnami/kong/README.md | 2 +- 5 files changed, 9 insertions(+), 7 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 4feeda50bc5f..59c46b0601a1 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,14 +9,14 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.4.0-0" --checksum b06324d91d33e62d25ac20dd4d3bc44ac69d1f0d0c038191b1a20b9d40686cc6 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.4.0-1" --checksum 7d61a44313b4c96662b86ffc610491ac53404ad853e66144e69096c088297e9e RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50 RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.0-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="2.4.0-debian-10-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 57abd3c2fada..7ad16d58723a 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "b06324d91d33e62d25ac20dd4d3bc44ac69d1f0d0c038191b1a20b9d40686cc6", + "digest": "7d61a44313b4c96662b86ffc610491ac53404ad853e66144e69096c088297e9e", "distro": "debian-10", "type": "NAMI", - "version": "2.4.0-0" + "version": "2.4.0-1" } } \ No newline at end of file diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libvalidations.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libvalidations.sh index 8d827924afe4..ca5afc91c7b5 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libvalidations.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libvalidations.sh @@ -181,7 +181,7 @@ validate_ipv4() { local stat=1 if [[ $ip =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then - read -r -a ip_array <<< "$(tr '.' ' ' <<< "$ip")" + read -r -a ip_array <<< "$(tr '.' ' ' <<< "$ip")" [[ ${ip_array[0]} -le 255 && ${ip_array[1]} -le 255 \ && ${ip_array[2]} -le 255 && ${ip_array[3]} -le 255 ]] stat=$? diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh index da97ed81c921..1280134f015c 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh @@ -180,6 +180,7 @@ web_server_reload() { # --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) +# --nginx-external-configuration - Configuration external to server block (no default) # Returns: # true if the configuration was enabled, false otherwise ######################## @@ -220,7 +221,8 @@ ensure_web_server_app_configuration_exists() { ;; # Specific NGINX flags - --nginx-additional-configuration) + --nginx-additional-configuration \ + | --nginx-external-configuration) nginx_args+=("${1//nginx-/}" "${2:?missing value}") shift ;; diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 77c79b89a2fb..31bc1d6c3ff3 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.0`, `2.4.0-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.0-debian-10-r5/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.0`, `2.4.0-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.0-debian-10-r6/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f406246c2fa9b4bcc2038a3bc4b8b8c58587eaf7 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 9 May 2021 04:31:34 +0000 Subject: [PATCH 673/950] 2.4.0-debian-10-r7 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 59c46b0601a1..c0d875bd40fa 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.0-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="2.4.0-debian-10-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 31bc1d6c3ff3..bce0f3971b27 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.0`, `2.4.0-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.0-debian-10-r6/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.0`, `2.4.0-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.0-debian-10-r7/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 72259a1bca6ab1917a36723915d32f61b4a29b61 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 10 May 2021 04:52:52 +0000 Subject: [PATCH 674/950] 2.4.0-debian-10-r8 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c0d875bd40fa..e1a556245073 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.0-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="2.4.0-debian-10-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index bce0f3971b27..e278025949a5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.0`, `2.4.0-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.0-debian-10-r7/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.0`, `2.4.0-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.0-debian-10-r8/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 00dec4bf9287ffc1335a8517e7bb3f337d3a4238 Mon Sep 17 00:00:00 2001 From: Carlos Rodriguez Hernandez Date: Mon, 10 May 2021 12:00:51 +0000 Subject: [PATCH 675/950] Add CODE_OF_CONDUCT and CONTRIBUTING to this repository --- bitnami/kong/CODE_OF_CONDUCT.md | 17 +++++++++++++++++ bitnami/kong/CONTRIBUTING.md | 27 +++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 bitnami/kong/CODE_OF_CONDUCT.md create mode 100644 bitnami/kong/CONTRIBUTING.md diff --git a/bitnami/kong/CODE_OF_CONDUCT.md b/bitnami/kong/CODE_OF_CONDUCT.md new file mode 100644 index 000000000000..48beb02e0808 --- /dev/null +++ b/bitnami/kong/CODE_OF_CONDUCT.md @@ -0,0 +1,17 @@ +# Contributor Code of Conduct + +As contributors and maintainers of this project, we pledge to respect everyone who contributes by posting issues, updating documentation, submitting pull requests, providing feedback in comments, and any other activities. + +Communication through any of Bitnami's channels (GitHub, mailing lists, Twitter, and so on) must be constructive and never resort to personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct. + +We promise to extend courtesy and respect to everyone involved in this project, regardless of gender, gender identity, sexual orientation, disability, age, race, ethnicity, religion, or level of experience. We expect anyone contributing to this project to do the same. + +If any member of the community violates this code of conduct, the maintainers of this project may take action, including removing issues, comments, and PRs or blocking accounts, as deemed appropriate. + +If you are subjected to or witness unacceptable behavior, or have any other concerns, please communicate with us. + +If you have suggestions to improve this Code of Conduct, please submit an issue or PR. + +**Attribution** + +This Code of Conduct is adapted from the Angular project available at this page: https://github.com/angular/code-of-conduct/blob/master/CODE_OF_CONDUCT.md diff --git a/bitnami/kong/CONTRIBUTING.md b/bitnami/kong/CONTRIBUTING.md new file mode 100644 index 000000000000..b4270435b0c6 --- /dev/null +++ b/bitnami/kong/CONTRIBUTING.md @@ -0,0 +1,27 @@ +# Contributing Guidelines + +Contributions are welcome via GitHub Pull Requests. This document outlines the process to help get your contribution accepted. + +Any type of contribution is welcome: new features, bug fixes, documentation improvements, etc. + +## How to Contribute + +1. Fork this repository, develop, and test your changes. +2. Submit a pull request. + +### Requirements + +When submitting a PR make sure that: +- It must pass CI jobs for linting and test the changes (if any). +- It must follow [container best practices](https://engineering.bitnami.com/articles/best-practices-writing-a-dockerfile.html). +- The title of the PR is clear enough. +- If necessary, add information to the repository's `README.md`. + +### PR Approval and Release Process + +1. Changes are manually reviewed by Bitnami team members usually within a business day. +2. Once the changes are accepted, the PR is tested (if needed) into the Bitnami CI pipeline, the container is deployed and tested (verification and functional tests) using docker-compose and Helm (if there is an associated Helm Chart). +3. The PR is merged by the reviewer(s) in the GitHub `master` branch. +4. Then our CI/CD system is going to push the container image to the different registries including the recently merged changes. + +***NOTE***: Please note that, in terms of time, may be a slight difference between the appearance of the code in GitHub and the image with the changes in the different registries. From 41f342e5737c692df1d0be7149ade0b1a4f6619b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 11 May 2021 05:39:15 +0000 Subject: [PATCH 676/950] 2.4.0-debian-10-r9 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index e1a556245073..e0cba3e9f783 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.0-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="2.4.0-debian-10-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e278025949a5..abe2fcc5ee75 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.0`, `2.4.0-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.0-debian-10-r8/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.0`, `2.4.0-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.0-debian-10-r9/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 263acb9700ab5d371214e0b6178b88ae2e8ceb51 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 11 May 2021 16:00:56 +0000 Subject: [PATCH 677/950] 2.4.1-debian-10-r0 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index e0cba3e9f783..9c12e4fe2054 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,14 +9,14 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.4.0-1" --checksum 7d61a44313b4c96662b86ffc610491ac53404ad853e66144e69096c088297e9e +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.4.1-0" --checksum 4b227d1703991130bc51959d00f61b3125ff28c3b1212f14c83163a5a08071d8 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50 RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.0-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 7ad16d58723a..8b5351e63226 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "7d61a44313b4c96662b86ffc610491ac53404ad853e66144e69096c088297e9e", + "digest": "4b227d1703991130bc51959d00f61b3125ff28c3b1212f14c83163a5a08071d8", "distro": "debian-10", "type": "NAMI", - "version": "2.4.0-1" + "version": "2.4.1-0" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index abe2fcc5ee75..32398566c2db 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.0`, `2.4.0-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.0-debian-10-r9/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 6f070acdf00c38fb30e4c71cdb6b01455bde022d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 12 May 2021 16:32:00 +0000 Subject: [PATCH 678/950] 2.4.1-debian-10-r1 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 9c12e4fe2054..43b67f1696ee 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 32398566c2db..f8f0138a6958 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r0/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r1/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From cc957b94c15e2cd16e0d587c21be4ee969c2ea3f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 13 May 2021 18:23:57 +0000 Subject: [PATCH 679/950] 2.4.1-debian-10-r2 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../prebuildfs/opt/bitnami/scripts/libpersistence.sh | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 43b67f1696ee..675c7f15120d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh index 264a9291d634..55e1bef8d71d 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh @@ -27,7 +27,7 @@ persist_app() { local -r app="${1:?missing app}" local -a files_to_restore - read -r -a files_to_persist <<< "$2" + read -r -a files_to_persist <<< "$(tr ',;:' ' ' <<< "$2")" local -r install_dir="${BITNAMI_ROOT_DIR}/${app}" local -r persist_dir="${BITNAMI_VOLUME_DIR}/${app}" # Persist the individual files @@ -83,7 +83,7 @@ persist_app() { restore_persisted_app() { local -r app="${1:?missing app}" local -a files_to_restore - read -r -a files_to_restore <<< "$2" + read -r -a files_to_restore <<< "$(tr ',;:' ' ' <<< "$2")" local -r install_dir="${BITNAMI_ROOT_DIR}/${app}" local -r persist_dir="${BITNAMI_VOLUME_DIR}/${app}" # Restore the individual persisted files diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f8f0138a6958..63cb03c06baf 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r1/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r2/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From dbb1e34896e240d3f6726ed99fc2107b67631636 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 15 May 2021 01:37:24 +0000 Subject: [PATCH 680/950] 2.4.1-debian-10-r3 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 675c7f15120d..ff7f6c730c74 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 63cb03c06baf..12b92d826e1c 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r2/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r3/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From bd809c4292f7ff4127f0de121365c2455f35638f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 16 May 2021 02:04:50 +0000 Subject: [PATCH 681/950] 2.4.1-debian-10-r4 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index ff7f6c730c74..57e46ca758bd 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 12b92d826e1c..2c8a56ce5e77 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r3/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r4/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f6d2d7e120b4edb0640375edad26de4146c3f49d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 17 May 2021 02:32:27 +0000 Subject: [PATCH 682/950] 2.4.1-debian-10-r5 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 57e46ca758bd..4a574f8f0151 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2c8a56ce5e77..ffbd09817579 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r4/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r5/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7786665012c3bbd274cbad50c1c4c9e2296e1bb0 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 18 May 2021 17:13:22 +0000 Subject: [PATCH 683/950] 2.4.1-debian-10-r6 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 4a574f8f0151..8632409f533a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index ffbd09817579..5cbdd5ecd7ec 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r5/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r6/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ae164d0001dceaff2ec732ca2557ddc38312617f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 19 May 2021 20:41:43 +0000 Subject: [PATCH 684/950] 2.4.1-debian-10-r7 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 8632409f533a..15abdf2ee396 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 5cbdd5ecd7ec..f228818eb0fa 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r6/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r7/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 927525028198e771e5fec4468aa4ff96683b6c8b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 20 May 2021 21:05:50 +0000 Subject: [PATCH 685/950] 2.4.1-debian-10-r8 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 15abdf2ee396..529d60ecc340 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f228818eb0fa..f9a482b847a9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r7/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r8/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 98d7fd4d36c791af4d5917b35851b94e5991018e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 22 May 2021 08:44:57 +0000 Subject: [PATCH 686/950] 2.4.1-debian-10-r9 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 529d60ecc340..5caa5bb03503 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f9a482b847a9..bc28884313ee 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r8/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r9/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8540282b543a4fddda7bbb662064b6e83f89db91 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 23 May 2021 09:13:39 +0000 Subject: [PATCH 687/950] 2.4.1-debian-10-r10 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 5caa5bb03503..7d47c38038d2 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r10" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index bc28884313ee..c3e77fbab942 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r9/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r10/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f18c56b3a55e4dd87e9460d54302eca2c5cf9125 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 24 May 2021 10:55:07 +0000 Subject: [PATCH 688/950] 2.4.1-debian-10-r11 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 7d47c38038d2..d255ff2981ae 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r10" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r11" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c3e77fbab942..f3f9cfd7e856 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r10/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r11/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 296f688794990c401ffeb35145dd2d69fb375269 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 25 May 2021 11:18:09 +0000 Subject: [PATCH 689/950] 2.4.1-debian-10-r12 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index d255ff2981ae..4703e1b72450 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r11" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r12" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f3f9cfd7e856..9421237a66c3 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r11/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r12/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9f9b633981eb23135182860b728b83e2b09dc49a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 26 May 2021 11:41:49 +0000 Subject: [PATCH 690/950] 2.4.1-debian-10-r13 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 4703e1b72450..39b4b3802e08 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r12" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r13" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9421237a66c3..c3b3b46b108c 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r12/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r13/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f6b4a7208745da6eb5a1135e1a3379967bb69704 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 27 May 2021 12:07:05 +0000 Subject: [PATCH 691/950] 2.4.1-debian-10-r14 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 39b4b3802e08..c4bda4d327c7 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r13" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r14" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c3b3b46b108c..faafca150287 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r13/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r14/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 10908d8af80570ac0d369f2cf32ceead755c5c66 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 28 May 2021 12:40:29 +0000 Subject: [PATCH 692/950] 2.4.1-debian-10-r15 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c4bda4d327c7..5782c6f1378b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r14" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r15" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index faafca150287..f22669c261f1 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r14/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r15/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 32953c437d45d813f50a0a4faeaba7accc099009 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 29 May 2021 13:06:03 +0000 Subject: [PATCH 693/950] 2.4.1-debian-10-r16 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 5782c6f1378b..0dc9c2869dec 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r15" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r16" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f22669c261f1..9754cd2702fd 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r15/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r16/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b17aa947ac8cd8e4c603be8f618c2dcc066d4517 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 30 May 2021 13:29:08 +0000 Subject: [PATCH 694/950] 2.4.1-debian-10-r17 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0dc9c2869dec..fdb16a5174d2 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r16" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r17" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9754cd2702fd..feda8d980e82 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r16/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r17/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 045c8b9c13d5c897dc2fc06f15ee746606d69153 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 31 May 2021 13:49:59 +0000 Subject: [PATCH 695/950] 2.4.1-debian-10-r18 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index fdb16a5174d2..276bfcdb60bd 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r17" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r18" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index feda8d980e82..eb0ad206468f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r17/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r18/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ebbf4ac7aaebbc42c53bfe1da93a77a9b0674ba0 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 2 Jun 2021 14:46:45 +0000 Subject: [PATCH 696/950] 2.4.1-debian-10-r19 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 276bfcdb60bd..c6c9f8d25eae 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r18" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r19" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index eb0ad206468f..83778c74e7b1 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r18/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r19/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 4cb5f4b4310fcadad2a132f45922212d4bf9995d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 4 Jun 2021 18:09:47 +0000 Subject: [PATCH 697/950] 2.4.1-debian-10-r20 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../prebuildfs/opt/bitnami/scripts/libwebserver.sh | 7 +++++++ bitnami/kong/README.md | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c6c9f8d25eae..c53d26ce83f1 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r19" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r20" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh index 1280134f015c..dc322c377b1b 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh @@ -177,6 +177,10 @@ web_server_reload() { # --apache-before-vhost-configuration - Configuration to add before the 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}") diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 83778c74e7b1..b270a2ec9614 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r19/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r20/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d746a0d1337e7d77b7c93fcf46f0f9bfb4f65c92 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 8 Jun 2021 06:57:04 +0000 Subject: [PATCH 698/950] 2.4.1-debian-10-r21 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c53d26ce83f1..a0a7c1ed85b5 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -10,13 +10,13 @@ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.4.1-0" --checksum 4b227d1703991130bc51959d00f61b3125ff28c3b1212f14c83163a5a08071d8 -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50 +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/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r20" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r21" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 8b5351e63226..48a0570c5500 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -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" }, "kong": { "arch": "amd64", diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b270a2ec9614..5ddb3cb5b97d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r20/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r21/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b76ec8fa215a61f01e7757a986a8b5bfb5037bdf Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 12 Jun 2021 22:13:12 +0000 Subject: [PATCH 699/950] 2.4.1-debian-10-r22 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../prebuildfs/opt/bitnami/scripts/libpersistence.sh | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a0a7c1ed85b5..2c9e06f5c4dc 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r21" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r22" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh index 55e1bef8d71d..99df69681c27 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh @@ -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 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 5ddb3cb5b97d..c35969e36edc 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r21/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r22`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r22/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d19108e88c65a4aeb033c0d7b2d6af8943ed7eee Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 13 Jun 2021 22:41:35 +0000 Subject: [PATCH 700/950] 2.4.1-debian-10-r23 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 2c9e06f5c4dc..a96f1f31190b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r22" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r23" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c35969e36edc..375b2f12d588 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r22`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r22/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r23`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r23/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 466eb571d368632c7024d110b1b0966cc6e8b6b9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 14 Jun 2021 23:56:45 +0000 Subject: [PATCH 701/950] 2.4.1-debian-10-r24 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a96f1f31190b..94497a91f84b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r23" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r24" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 375b2f12d588..310b6e476703 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r23`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r23/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r24`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r24/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 44d7cd010666754e5111515be26eab5fdca146c4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 16 Jun 2021 00:24:29 +0000 Subject: [PATCH 702/950] 2.4.1-debian-10-r25 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 94497a91f84b..327ce5d36f97 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r24" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r25" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 310b6e476703..195d6f881481 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r24`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r24/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r25`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r25/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c9268561284dc31b1e413556b30e375cee3f17e3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 19 Jun 2021 12:50:42 +0000 Subject: [PATCH 703/950] 2.4.1-debian-10-r26 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 327ce5d36f97..303f448ac7da 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r25" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r26" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 195d6f881481..3722501f3b55 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r25`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r25/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r26`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r26/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9ab7f26a2af9d82d70226c61e4b0d39e982a8d1b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 20 Jun 2021 13:45:46 +0000 Subject: [PATCH 704/950] 2.4.1-debian-10-r27 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 303f448ac7da..37cc88e00c72 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r26" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r27" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 3722501f3b55..5b8ffd3a8351 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r26`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r26/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r27`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r27/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 47212b8b70dd9ea00472af5b5c8cb52337890544 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 24 Jun 2021 06:16:15 +0000 Subject: [PATCH 705/950] 2.4.1-debian-10-r28 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 37cc88e00c72..8a1a7e2760f1 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r27" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r28" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 5b8ffd3a8351..1656cd1d68d4 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r27`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r27/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r28`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r28/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From bc8efce712e274c0cd3d9275f0615eaeefe11348 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 27 Jun 2021 12:25:37 +0000 Subject: [PATCH 706/950] 2.4.1-debian-10-r29 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 8a1a7e2760f1..106f40fce58e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r28" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r29" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1656cd1d68d4..304d06e22a8f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r28`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r28/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r29`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r29/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 963a63d212c04c3eba89f3a8598453e2b1eaa6f1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 1 Jul 2021 16:48:20 +0000 Subject: [PATCH 707/950] 2.4.1-debian-10-r30 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 106f40fce58e..887e963656f6 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r29" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r30" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 304d06e22a8f..a8f02863b0ab 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r29`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r29/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r30`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r30/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7de75e1119910aee454ae4833c9e3f073394a183 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 2 Jul 2021 17:52:07 +0000 Subject: [PATCH 708/950] 2.4.1-debian-10-r31 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 887e963656f6..acdfbe564f8a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r30" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r31" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a8f02863b0ab..40414296bca2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r30`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r30/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r31`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r31/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7a495eef0401f2be884eacc8a80b5e68f3b28b79 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 3 Jul 2021 18:19:14 +0000 Subject: [PATCH 709/950] 2.4.1-debian-10-r32 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index acdfbe564f8a..3d3897c390ae 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r31" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r32" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 40414296bca2..0271a699c6b9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r31`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r31/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r32`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r32/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b1d959bc817849df80961e1d6b4e07601adda2a5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 4 Jul 2021 18:41:00 +0000 Subject: [PATCH 710/950] 2.4.1-debian-10-r33 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 3d3897c390ae..8db0a0ce27db 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r32" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r33" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0271a699c6b9..ef8ac3c2e843 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r32`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r32/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r33`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r33/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 707f8a2f247b4bb296f0ebddd79d5a1971019856 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 5 Jul 2021 23:06:46 +0000 Subject: [PATCH 711/950] 2.4.1-debian-10-r34 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 8db0a0ce27db..4e985e60f5f7 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,14 +9,14 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.4.1-0" --checksum 4b227d1703991130bc51959d00f61b3125ff28c3b1212f14c83163a5a08071d8 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.4.1-1" --checksum 9b0a552085e9bb97ceddfd9deb3b3a2b676843257c9d0eb590f2ea76f351cc7a 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/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r33" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r34" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 48a0570c5500..8f13738c057c 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "4b227d1703991130bc51959d00f61b3125ff28c3b1212f14c83163a5a08071d8", + "digest": "9b0a552085e9bb97ceddfd9deb3b3a2b676843257c9d0eb590f2ea76f351cc7a", "distro": "debian-10", "type": "NAMI", - "version": "2.4.1-0" + "version": "2.4.1-1" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index ef8ac3c2e843..d899982ce1b4 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r33`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r33/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r34`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r34/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 4a9ce24521e2ce7baffe2c680d7288a8b7a201dd Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 6 Jul 2021 23:34:58 +0000 Subject: [PATCH 712/950] 2.4.1-debian-10-r35 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 4e985e60f5f7..2c4187db18b9 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r34" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r35" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d899982ce1b4..743bd03814e9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r34`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r34/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r35`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r35/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d62b05eef17bc9a948f8503137d66aa2d154cb5e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 8 Jul 2021 00:06:39 +0000 Subject: [PATCH 713/950] 2.4.1-debian-10-r36 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../prebuildfs/opt/bitnami/scripts/libfile.sh | 39 +++++++++++++++++++ bitnami/kong/README.md | 2 +- 3 files changed, 41 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 2c4187db18b9..cc3a9697fd51 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r35" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r36" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfile.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfile.sh index b09575cbe4a6..dd47f25e4e45 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfile.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfile.sh @@ -2,6 +2,11 @@ # # Library for managing files +# shellcheck disable=SC1091 + +# Load Generic Libraries +. /opt/bitnami/scripts/libos.sh + # Functions ######################## @@ -78,3 +83,37 @@ append_file_after_last_match() { result="$(tac "$file" | sed -E "0,/($match_regex)/s||${value}\n\1|" | tac)" echo "$result" > "$file" } + +######################## +# Wait until certain entry is present in a log file +# Arguments: +# $1 - entry to look for +# $2 - log file +# $3 - max retries. Default: 12 +# $4 - sleep between retries (in seconds). Default: 5 +# Returns: +# Boolean +######################### +wait_for_log_entry() { + local -r entry="${1:-missing entry}" + local -r log_file="${2:-missing log file}" + local -r retries="${3:-12}" + local -r interval_time="${4:-5}" + local attempt=0 + + check_log_file_for_entry() { + if ! grep -qE "$entry" "$log_file"; then + debug "Entry \"${entry}\" still not present in ${log_file} (attempt $((++attempt))/${retries})" + return 1 + fi + } + debug "Checking that ${log_file} log file contains entry \"${entry}\"" + if retry_while check_log_file_for_entry "$retries" "$interval_time"; then + debug "Found entry \"${entry}\" in ${log_file}" + true + else + error "Could not find entry \"${entry}\" in ${log_file} after ${retries} retries" + debug_execute cat "$log_file" + return 1 + fi +} diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 743bd03814e9..442fe6ba9b88 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r35`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r35/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r36`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r36/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9fd0b42298ada8313c5b90b16b86a501691ae03a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 9 Jul 2021 00:32:08 +0000 Subject: [PATCH 714/950] 2.4.1-debian-10-r37 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index cc3a9697fd51..e1445d80825f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r36" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r37" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 442fe6ba9b88..7f0540f2b9c2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r36`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r36/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r37`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r37/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8a18ba303f79e965ac0331f4c4fe0d4b273af766 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 10 Jul 2021 00:58:24 +0000 Subject: [PATCH 715/950] 2.4.1-debian-10-r38 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index e1445d80825f..0df8ea32e0ee 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r37" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r38" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7f0540f2b9c2..fd0a749c5dfc 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r37`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r37/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r38`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r38/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From af5ffe95ad7379db51d1347b86b1ce9a95c6bacd Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 11 Jul 2021 09:28:25 +0000 Subject: [PATCH 716/950] 2.4.1-debian-10-r39 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0df8ea32e0ee..665a4582a351 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r38" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r39" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index fd0a749c5dfc..21df8047ead8 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r38`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r38/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r39`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r39/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 3724a538be742d2ec2a6e76a2b7240e4f3dcc9cf Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 12 Jul 2021 15:20:48 +0000 Subject: [PATCH 717/950] 2.4.1-debian-10-r40 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 665a4582a351..f4154843462d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r39" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r40" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 21df8047ead8..aa799b5ec303 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r39`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r39/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r40`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r40/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From bee85e358e170ee62bfde032e39dcc319c381fc6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 13 Jul 2021 23:56:47 +0000 Subject: [PATCH 718/950] 2.4.1-debian-10-r41 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index f4154843462d..ed75b69abfd0 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r40" \ + BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r41" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index aa799b5ec303..95f46d882e77 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r40`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r40/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r41`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r41/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8eefe5841e3312176c4d8386d10c6eaccde992a7 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 15 Jul 2021 12:26:47 +0000 Subject: [PATCH 719/950] 2.5.0-debian-10-r0 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../opt/bitnami/.bitnami_components.json | 4 ++-- .../prebuildfs/opt/bitnami/scripts/libos.sh | 14 ++++++++++++++ bitnami/kong/README.md | 2 +- 4 files changed, 19 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index ed75b69abfd0..52f9ea4b66e3 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,14 +9,14 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.4.1-1" --checksum 9b0a552085e9bb97ceddfd9deb3b3a2b676843257c9d0eb590f2ea76f351cc7a +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.5.0-4" --checksum d20ba81a6c64daef722dc14e20bf41cf2c7dc0091a8595cb8da33e5f869e115f 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/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.4.1-debian-10-r41" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 8f13738c057c..0e1799a789ad 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "9b0a552085e9bb97ceddfd9deb3b3a2b676843257c9d0eb590f2ea76f351cc7a", + "digest": "d20ba81a6c64daef722dc14e20bf41cf2c7dc0091a8595cb8da33e5f869e115f", "distro": "debian-10", "type": "NAMI", - "version": "2.4.1-1" + "version": "2.5.0-4" } } \ No newline at end of file diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh index 6a7512281470..04be9688d448 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh @@ -348,3 +348,17 @@ generate_md5_hash() { local -r str="${1:?missing input string}" echo -n "$str" | md5sum | awk '{print $1}' } + +######################## +# Create sha1 hash from a string +# Arguments: +# $1 - string +# $2 - algorithm - 1 (default), 224, 256, 384, 512 +# Returns: +# sha1 hash - string +######################### +generate_sha_hash() { + local -r str="${1:?missing input string}" + local -r algorithm="${2:-1}" + echo -n "$str" | "sha${algorithm}sum" | awk '{print $1}' +} diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 95f46d882e77..7f71efa5a920 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.4.1`, `2.4.1-debian-10-r41`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.4.1-debian-10-r41/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e66d8da23bfdddb1321f480e101f669c317447cb Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 16 Jul 2021 12:51:08 +0000 Subject: [PATCH 720/950] 2.5.0-debian-10-r1 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 52f9ea4b66e3..edbe55010dca 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh index 04be9688d448..a8323db72d93 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh @@ -345,8 +345,8 @@ generate_random_string() { # md5 hash - string ######################### generate_md5_hash() { - local -r str="${1:?missing input string}" - echo -n "$str" | md5sum | awk '{print $1}' + local -r str="${1:?missing input string}" + echo -n "$str" | md5sum | awk '{print $1}' } ######################## diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7f71efa5a920..b20fd82e65b4 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r0/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r1/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e9dd290dfb6ab368d230b7aa5a1a38cf3f04d340 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 17 Jul 2021 13:21:16 +0000 Subject: [PATCH 721/950] 2.5.0-debian-10-r2 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index edbe55010dca..5e37aae70aa3 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b20fd82e65b4..7a1c19139892 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r1/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r2/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0eb79e2148a436b49f87412b74775fd64be0765c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 18 Jul 2021 13:54:29 +0000 Subject: [PATCH 722/950] 2.5.0-debian-10-r3 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 5e37aae70aa3..d17b9268f469 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7a1c19139892..35800aceda52 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r2/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r3/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5c480e2ca9b3c683f06a9636372c07c3cf6364f5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 19 Jul 2021 14:17:34 +0000 Subject: [PATCH 723/950] 2.5.0-debian-10-r4 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index d17b9268f469..e3f6f9f8a824 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 35800aceda52..485514b10847 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r3/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r4/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From cefe606d6dcd8abe86a799c454bf57e269455619 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 20 Jul 2021 14:50:57 +0000 Subject: [PATCH 724/950] 2.5.0-debian-10-r5 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index e3f6f9f8a824..7e67110d3e70 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 485514b10847..b1559eb406e6 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r4/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r5/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From a7aa1ba13564932d356cf536c6b0d80c8a2989df Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 21 Jul 2021 16:00:18 +0000 Subject: [PATCH 725/950] 2.5.0-debian-10-r6 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 7e67110d3e70..008e22360a02 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b1559eb406e6..578f7d6c4abe 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r5/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r6/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 288f3c6585045708e754511d224803bcf4fd6b0a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 22 Jul 2021 16:36:18 +0000 Subject: [PATCH 726/950] 2.5.0-debian-10-r7 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 008e22360a02..7a486099ff7b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 578f7d6c4abe..a2c90d87cd59 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r6/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r7/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 02e6c84c75ecf02790bf58078c495296618b643b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 24 Jul 2021 15:41:43 +0000 Subject: [PATCH 727/950] 2.5.0-debian-10-r8 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 7a486099ff7b..20e93fa630be 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a2c90d87cd59..fa3dc56bc538 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r7/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r8/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c6aadb5596f2f6d62d211f914465c54c1d484b43 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 25 Jul 2021 16:03:57 +0000 Subject: [PATCH 728/950] 2.5.0-debian-10-r9 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 20e93fa630be..d5b95cde6fa0 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index fa3dc56bc538..e3bfa7a625c8 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r8/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r9/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From da8ad4236ee5f81483e23273de591afa2a384259 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 26 Jul 2021 17:21:39 +0000 Subject: [PATCH 729/950] 2.5.0-debian-10-r10 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index d5b95cde6fa0..4974f43bf5c5 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r10" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e3bfa7a625c8..7650af3d1e64 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r9/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r10/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f8cdc2912b68e41d57171ce0777004c2e9d8f8bf Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 27 Jul 2021 20:03:53 +0000 Subject: [PATCH 730/950] 2.5.0-debian-10-r11 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 4974f43bf5c5..2bdf293d7289 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r10" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r11" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7650af3d1e64..afa763567bdf 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r10/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r11/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From fb7e3894e45aa1686c67e94725817eeb5709269f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 28 Jul 2021 20:35:14 +0000 Subject: [PATCH 731/950] 2.5.0-debian-10-r12 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 2bdf293d7289..84848dacf16a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r11" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r12" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index afa763567bdf..7b822da4f11a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r11/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r12/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 11549f32fb272af4d145e0bb7a46ceefcc26408e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 29 Jul 2021 21:06:30 +0000 Subject: [PATCH 732/950] 2.5.0-debian-10-r13 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 84848dacf16a..b2f5c7378ef8 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r12" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r13" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7b822da4f11a..dff39a993657 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r12/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r13/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f9655ce02cd61fc27d62052ff5c2ff8428fedbf0 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 30 Jul 2021 21:35:53 +0000 Subject: [PATCH 733/950] 2.5.0-debian-10-r14 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index b2f5c7378ef8..156d6b9ccf16 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r13" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r14" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index dff39a993657..c86b41c1b02b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r13/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r14/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 4f98cadca34cc4e61b92b2cfd2a00fc1703d06a9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 31 Jul 2021 22:00:08 +0000 Subject: [PATCH 734/950] 2.5.0-debian-10-r15 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 156d6b9ccf16..5c53e7c56af4 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r14" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r15" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c86b41c1b02b..28d77f57c4a1 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r14/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r15/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 06e3c523edd12fda56c304a3d4c6afd18f59f2d9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 1 Aug 2021 22:34:58 +0000 Subject: [PATCH 735/950] 2.5.0-debian-10-r16 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 5c53e7c56af4..90db252b0601 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r15" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r16" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 28d77f57c4a1..16a91094201a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r15/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r16/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8a9e37886df6169826d77e7516a5cd8d5d1b8b8b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 2 Aug 2021 23:01:40 +0000 Subject: [PATCH 736/950] 2.5.0-debian-10-r17 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 90db252b0601..b3405a13086c 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r16" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r17" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 16a91094201a..6f5c618b7e9e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r16/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r17/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7f18d2ecde3135db94e31772c12aa5087ecccaae Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 3 Aug 2021 23:24:34 +0000 Subject: [PATCH 737/950] 2.5.0-debian-10-r18 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index b3405a13086c..626bfee99de9 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r17" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r18" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 6f5c618b7e9e..5c926553e58b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r17/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r18/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5ba19ccbfe6a3bd62631e65aa19b28fc2a147eb6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 4 Aug 2021 23:47:22 +0000 Subject: [PATCH 738/950] 2.5.0-debian-10-r19 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 626bfee99de9..8350647d0d4a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r18" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r19" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 5c926553e58b..e26b9712857c 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r18/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r19/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 24f57ded526a9b9e7bcd06d5909e16bf83122a50 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 6 Aug 2021 00:19:20 +0000 Subject: [PATCH 739/950] 2.5.0-debian-10-r20 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 8350647d0d4a..c6e85aec0e15 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r19" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r20" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e26b9712857c..1468eba05d73 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r19/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r20/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 03010c44361accadd6bffd0958739c0cb63354c8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 7 Aug 2021 00:44:04 +0000 Subject: [PATCH 740/950] 2.5.0-debian-10-r21 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c6e85aec0e15..d0ccf63da662 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r20" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r21" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1468eba05d73..1cf322b0ce59 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r20/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r21/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7788b2650bacf85693fe86c6db576062232c85c1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 8 Aug 2021 01:13:19 +0000 Subject: [PATCH 741/950] 2.5.0-debian-10-r22 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index d0ccf63da662..cfb8855291f6 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r21" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r22" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1cf322b0ce59..f51e848710ad 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r21/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r22`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r22/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 4fa4cb98e1b90796035dd2662b8087ac09d9e0bb Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 9 Aug 2021 01:39:13 +0000 Subject: [PATCH 742/950] 2.5.0-debian-10-r23 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index cfb8855291f6..476dc1e16bd0 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r22" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r23" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f51e848710ad..f22df7cb7812 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r22`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r22/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r23`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r23/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From bd6534d140a5a4b353f80a7f56b559f36e3771e7 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 10 Aug 2021 02:05:38 +0000 Subject: [PATCH 743/950] 2.5.0-debian-10-r24 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 476dc1e16bd0..b7a2eda9ddff 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r23" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r24" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f22df7cb7812..9c1bcbe84a16 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r23`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r23/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r24`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r24/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From db0657d561f7f1c0b4fe669132eab36ea98aea6e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 10 Aug 2021 11:50:12 +0000 Subject: [PATCH 744/950] 2.5.0-debian-10-r25 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index b7a2eda9ddff..d93e0d06fdcd 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r24" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r25" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9c1bcbe84a16..88c64cf8df46 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r24`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r24/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r25`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r25/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From fe70485733910a952b923db1a328305f61be7f47 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 11 Aug 2021 12:14:34 +0000 Subject: [PATCH 745/950] 2.5.0-debian-10-r26 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index d93e0d06fdcd..edcad5b27596 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r25" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r26" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 88c64cf8df46..5d6eeace4620 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r25`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r25/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r26`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r26/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b3fd5d7ef82edad35413f830dc8d15283dca123a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 12 Aug 2021 12:38:31 +0000 Subject: [PATCH 746/950] 2.5.0-debian-10-r27 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index edcad5b27596..8dadd810368a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r26" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r27" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 5d6eeace4620..ff018eac2971 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r26`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r26/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r27`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r27/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 2834e12ed8f52785a5408567f73db296270d8ce2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 13 Aug 2021 13:06:44 +0000 Subject: [PATCH 747/950] 2.5.0-debian-10-r28 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../opt/bitnami/scripts/libvalidations.sh | 16 ++++++++++++++++ bitnami/kong/README.md | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 8dadd810368a..c50260dfe8f4 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r27" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r28" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libvalidations.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libvalidations.sh index ca5afc91c7b5..2d7aaa943513 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libvalidations.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libvalidations.sh @@ -91,6 +91,22 @@ is_true_false_value() { fi } +######################## +# Check if the provided argument is a boolean 1/0 value +# Arguments: +# $1 - Value to check +# Returns: +# Boolean +######################### +is_1_0_value() { + local -r bool="${1:-}" + if [[ "$bool" =~ ^[10]$ ]]; then + true + else + false + fi +} + ######################## # Check if the provided argument is an empty string or not defined # Arguments: diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index ff018eac2971..04f01f9db8a0 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r27`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r27/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r28`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r28/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8f1fd9d7723a1e676587a229b1c54dcb643fd9b6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 13 Aug 2021 13:45:52 +0000 Subject: [PATCH 748/950] 2.5.0-debian-10-r29 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c50260dfe8f4..24712fbdeee4 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,14 +9,14 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.5.0-4" --checksum d20ba81a6c64daef722dc14e20bf41cf2c7dc0091a8595cb8da33e5f869e115f +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.5.0-5" --checksum 84eff47f402030b0179c2ac8b98073e572d3f2360cd08be4268ab8c5b76fe120 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/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r28" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r29" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 0e1799a789ad..308c30864ce6 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "d20ba81a6c64daef722dc14e20bf41cf2c7dc0091a8595cb8da33e5f869e115f", + "digest": "84eff47f402030b0179c2ac8b98073e572d3f2360cd08be4268ab8c5b76fe120", "distro": "debian-10", "type": "NAMI", - "version": "2.5.0-4" + "version": "2.5.0-5" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 04f01f9db8a0..e9c172aa58d5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r28`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r28/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r29`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r29/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ccdfd1faaf8cca00f00ff5c94a9429e6c958724a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 14 Aug 2021 14:10:22 +0000 Subject: [PATCH 749/950] 2.5.0-debian-10-r30 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 24712fbdeee4..3c72b6d454da 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r29" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r30" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e9c172aa58d5..fa06229a6f3f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r29`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r29/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r30`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r30/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 52492024ec6f24e5e2df7069a86e9f85b066442a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 15 Aug 2021 14:44:12 +0000 Subject: [PATCH 750/950] 2.5.0-debian-10-r31 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 3c72b6d454da..2529f06276e1 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r30" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r31" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index fa06229a6f3f..1ec50095a48a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r30`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r30/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r31`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r31/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 240b8f93c47776097d7c1d1515f232fc3f1cf09f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 16 Aug 2021 09:06:58 +0000 Subject: [PATCH 751/950] 2.5.0-debian-10-r32 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 2529f06276e1..dab1e4db6aaf 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r31" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r32" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1ec50095a48a..335aa298d2c4 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r31`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r31/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r32`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r32/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 05d296bf773f28ff2dab821b467e01144b39d502 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 17 Aug 2021 09:28:39 +0000 Subject: [PATCH 752/950] 2.5.0-debian-10-r33 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index dab1e4db6aaf..5c1ebdb9445b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r32" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r33" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 335aa298d2c4..95e89b69722f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r32`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r32/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r33`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r33/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ebfcb7029a783c4562f24320e3731add98b1e880 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 18 Aug 2021 09:51:27 +0000 Subject: [PATCH 753/950] 2.5.0-debian-10-r34 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 5c1ebdb9445b..656c7fc19b93 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -10,13 +10,13 @@ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.5.0-5" --checksum 84eff47f402030b0179c2ac8b98073e572d3f2360cd08be4268ab8c5b76fe120 -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.13.0-0" --checksum fd7257c2736164d02832dbf72e2c1ed9d875bf3e32f0988520796bc503330129 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-0" --checksum 3e6fc37ca073b10a73a804d39c2f0c028947a1a596382a4f8ebe43dfbaa3a25e RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r33" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r34" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 308c30864ce6..2405d1e5816f 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "gosu": { "arch": "amd64", - "digest": "fd7257c2736164d02832dbf72e2c1ed9d875bf3e32f0988520796bc503330129", + "digest": "3e6fc37ca073b10a73a804d39c2f0c028947a1a596382a4f8ebe43dfbaa3a25e", "distro": "debian-10", "type": "NAMI", - "version": "1.13.0-0" + "version": "1.14.0-0" }, "kong": { "arch": "amd64", diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 95e89b69722f..faeeb76bd024 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r33`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r33/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r34`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r34/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0f0f821172e8be0758668507860bcee61c682dcf Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 18 Aug 2021 22:00:49 +0000 Subject: [PATCH 754/950] 2.5.0-debian-10-r35 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 656c7fc19b93..a02e3461558c 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,14 +9,14 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.5.0-5" --checksum 84eff47f402030b0179c2ac8b98073e572d3f2360cd08be4268ab8c5b76fe120 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.5.0-6" --checksum 71d1685c8b0fc998e9213915cb3c0b0dbcb8a5132495b3d6deda199fcf5d3480 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-0" --checksum 3e6fc37ca073b10a73a804d39c2f0c028947a1a596382a4f8ebe43dfbaa3a25e RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r34" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r35" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 2405d1e5816f..3347bb339fb7 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "84eff47f402030b0179c2ac8b98073e572d3f2360cd08be4268ab8c5b76fe120", + "digest": "71d1685c8b0fc998e9213915cb3c0b0dbcb8a5132495b3d6deda199fcf5d3480", "distro": "debian-10", "type": "NAMI", - "version": "2.5.0-5" + "version": "2.5.0-6" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index faeeb76bd024..c0c95bd979d5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r34`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r34/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r35`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r35/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c81cd51eba3f0340220b75feb7558b27ad6085c4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 19 Aug 2021 22:29:14 +0000 Subject: [PATCH 755/950] 2.5.0-debian-10-r36 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a02e3461558c..5e3a83207417 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r35" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r36" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c0c95bd979d5..6b9e85659656 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r35`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r35/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r36`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r36/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From a21f6aca40f462b077a55b3df1d9e83b9ee9f57f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 20 Aug 2021 23:00:06 +0000 Subject: [PATCH 756/950] 2.5.0-debian-10-r37 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 5e3a83207417..d6d731394fe5 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r36" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r37" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 6b9e85659656..bef716d6b1f2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r36`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r36/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r37`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r37/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 235b2b444c8766ff6f637462e775e6791ef9b580 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 21 Aug 2021 23:31:27 +0000 Subject: [PATCH 757/950] 2.5.0-debian-10-r38 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index d6d731394fe5..4662992fe547 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r37" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r38" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index bef716d6b1f2..4a2c36cdaaa5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r37`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r37/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r38`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r38/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From db62857c7047ec98131e7bcd9d5d463711f58298 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 23 Aug 2021 00:02:21 +0000 Subject: [PATCH 758/950] 2.5.0-debian-10-r39 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 4662992fe547..07b42327cb6f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r38" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r39" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4a2c36cdaaa5..2f7ee7e539ec 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r38`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r38/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r39`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r39/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 2e5f5305d4c83e73cd8877c15a1e33652dc41ad8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 24 Aug 2021 00:38:05 +0000 Subject: [PATCH 759/950] 2.5.0-debian-10-r40 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../prebuildfs/opt/bitnami/scripts/libfile.sh | 24 +++++++++++++++++-- bitnami/kong/README.md | 2 +- 3 files changed, 24 insertions(+), 4 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 07b42327cb6f..dca9d2dc62dc 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r39" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r40" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfile.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfile.sh index dd47f25e4e45..41ebaf7464f6 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfile.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfile.sh @@ -10,7 +10,7 @@ # Functions ######################## -# Replace a regex in a file +# Replace a regex-matching string in a file # Arguments: # $1 - filename # $2 - match regex @@ -30,7 +30,7 @@ replace_in_file() { # We should avoid using 'sed in-place' substitutions # 1) They are not compatible with files mounted from ConfigMap(s) # 2) We found incompatibility issues with Debian10 and "in-place" substitutions - del=$'\001' # Use a non-printable character as a 'sed' delimiter to avoid issues + local -r del=$'\001' # Use a non-printable character as a 'sed' delimiter to avoid issues if [[ $posix_regex = true ]]; then result="$(sed -E "s${del}${match_regex}${del}${substitute_regex}${del}g" "$filename")" else @@ -39,6 +39,26 @@ replace_in_file() { echo "$result" > "$filename" } +######################## +# Replace a regex-matching multiline string in a file +# Arguments: +# $1 - filename +# $2 - match regex +# $3 - substitute regex +# Returns: +# None +######################### +replace_in_file_multiline() { + local filename="${1:?filename is required}" + local match_regex="${2:?match regex is required}" + local substitute_regex="${3:?substitute regex is required}" + + local result + local -r del=$'\001' # Use a non-printable character as a 'sed' delimiter to avoid issues + result="$(perl -pe "BEGIN{undef $/;} s${del}${match_regex}${del}${substitute_regex}${del}sg" "$filename")" + echo "$result" > "$filename" +} + ######################## # Remove a line in a file based on a regex # Arguments: diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2f7ee7e539ec..755dc42b721f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r39`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r39/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r40`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r40/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9acd6ac8830e594225b9f7cdded0f69da4d07072 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 25 Aug 2021 01:27:03 +0000 Subject: [PATCH 760/950] 2.5.0-debian-10-r41 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index dca9d2dc62dc..c076b32927e0 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r40" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r41" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 755dc42b721f..16a0f0f1a0eb 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r40`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r40/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r41`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r41/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 4df010cafaabd4d1c04b055024a524935c1767e3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 26 Aug 2021 02:01:18 +0000 Subject: [PATCH 761/950] 2.5.0-debian-10-r42 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c076b32927e0..5810e777fa34 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r41" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r42" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 16a0f0f1a0eb..2c45bb1e4b70 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r41`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r41/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r42`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r42/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ab13f9eae5ab01971499e9274fb002e7dc9901bd Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 27 Aug 2021 03:03:36 +0000 Subject: [PATCH 762/950] 2.5.0-debian-10-r43 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 5810e777fa34..62a0907a1579 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r42" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r43" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2c45bb1e4b70..26fffefe87bd 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r42`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r42/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r43`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r43/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0c91b267802b1017867788f55524f7894e8146d4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 28 Aug 2021 03:33:39 +0000 Subject: [PATCH 763/950] 2.5.0-debian-10-r44 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 62a0907a1579..b07e923b7177 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r43" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r44" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 26fffefe87bd..3ca9f93e6ec9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r43`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r43/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r44`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r44/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 4d9636b4ad94323273cb677582c4bb1c478c98c2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 29 Aug 2021 04:06:06 +0000 Subject: [PATCH 764/950] 2.5.0-debian-10-r45 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index b07e923b7177..ddb4e81948b6 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r44" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r45" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 3ca9f93e6ec9..0bebb6f99b64 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r44`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r44/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r45`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r45/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e040cc3b93f7f490627daf83548e54f665aefd8a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 30 Aug 2021 04:32:48 +0000 Subject: [PATCH 765/950] 2.5.0-debian-10-r46 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index ddb4e81948b6..a00181e126fd 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r45" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r46" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0bebb6f99b64..565fc6c9ab41 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r45`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r45/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r46`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r46/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From adebf7ea893f6d0b1229a246338a237defaabdf6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 31 Aug 2021 05:01:16 +0000 Subject: [PATCH 766/950] 2.5.0-debian-10-r47 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a00181e126fd..906020b2984b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r46" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r47" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 565fc6c9ab41..7aab0b1c6833 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r46`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r46/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r47`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r47/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 4a510fc00910efafaa8aa3413685d34c4c0d4ddd Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 31 Aug 2021 19:53:03 +0000 Subject: [PATCH 767/950] 2.5.0-debian-10-r48 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 906020b2984b..f8a5a5f7f7dd 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,14 +9,14 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.5.0-6" --checksum 71d1685c8b0fc998e9213915cb3c0b0dbcb8a5132495b3d6deda199fcf5d3480 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.5.0-7" --checksum 4b98b5dd2589916d2ddd60e73b6b9cb9d3fada69821d5afd8fefde6446528261 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-0" --checksum 3e6fc37ca073b10a73a804d39c2f0c028947a1a596382a4f8ebe43dfbaa3a25e RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r47" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r48" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 3347bb339fb7..b3147b3acd6b 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "71d1685c8b0fc998e9213915cb3c0b0dbcb8a5132495b3d6deda199fcf5d3480", + "digest": "4b98b5dd2589916d2ddd60e73b6b9cb9d3fada69821d5afd8fefde6446528261", "distro": "debian-10", "type": "NAMI", - "version": "2.5.0-6" + "version": "2.5.0-7" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7aab0b1c6833..3d5601bf1248 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r47`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r47/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r48`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r48/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 953c46030301a405cb3d2cec9f9098028050444d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 1 Sep 2021 20:27:48 +0000 Subject: [PATCH 768/950] 2.5.0-debian-10-r49 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index f8a5a5f7f7dd..f25b2cffc9c5 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r48" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r49" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 3d5601bf1248..b6e0f082abad 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r48`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r48/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r49`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r49/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ccc8dd3b7be65882fe5a9d2297d98700f2cb95c9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 2 Sep 2021 21:08:31 +0000 Subject: [PATCH 769/950] 2.5.0-debian-10-r50 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index f25b2cffc9c5..aee8918220eb 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r49" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r50" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b6e0f082abad..2d08af3a6e07 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r49`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r49/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r50`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r50/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 311035c1e64e55df8c464012df48d5b1ce185102 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 3 Sep 2021 21:38:39 +0000 Subject: [PATCH 770/950] 2.5.0-debian-10-r51 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index aee8918220eb..477f9b764de1 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r50" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r51" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2d08af3a6e07..4f52c6166416 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r50`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r50/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r51`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r51/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From a439315afbf16dccde472d4919000ee98b267c13 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 4 Sep 2021 22:05:58 +0000 Subject: [PATCH 771/950] 2.5.0-debian-10-r52 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 477f9b764de1..3248f173c700 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r51" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r52" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4f52c6166416..a5b7946e3947 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r51`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r51/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r52`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r52/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8374b44ba6783100d93c8a80740eda6184c0aa05 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 5 Sep 2021 22:36:21 +0000 Subject: [PATCH 772/950] 2.5.0-debian-10-r53 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 3248f173c700..7a08cb19dbe8 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r52" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r53" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a5b7946e3947..b7baa7d207b9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r52`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r52/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r53`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r53/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7d4048ee51a332f3947b512d65dd6d5fa39809db Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 7 Sep 2021 01:02:23 +0000 Subject: [PATCH 773/950] 2.5.0-debian-10-r54 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../opt/bitnami/scripts/libservice.sh | 39 +++++++++++++++++++ bitnami/kong/README.md | 2 +- 3 files changed, 41 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 7a08cb19dbe8..8f3fcb359a30 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r53" \ + BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r54" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh index ae8f310137d2..0b96a0be09e0 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh @@ -137,6 +137,19 @@ generate_cron_conf() { fi } +######################## +# Remove a cron configuration file for a given service +# Arguments: +# $1 - Service name +# Returns: +# None +######################### +remove_cron_conf() { + local service_name="${1:?service name is missing}" + local cron_conf_dir="/etc/monit/conf.d" + rm -f "${cron_conf_dir}/${service_name}" +} + ######################## # Generate a monit configuration file for a given service # Arguments: @@ -183,6 +196,19 @@ check process ${service_name} EOF } +######################## +# Remove a monit configuration file for a given service +# Arguments: +# $1 - Service name +# Returns: +# None +######################### +remove_monit_conf() { + local service_name="${1:?service name is missing}" + local monit_conf_dir="/etc/monit/conf.d" + rm -f "${monit_conf_dir}/${service_name}.conf" +} + ######################## # Generate a logrotate configuration file # Arguments: @@ -233,3 +259,16 @@ $(indent "$extra" 2) } EOF } + +######################## +# Remove a logrotate configuration file +# Arguments: +# $1 - Service name +# Returns: +# None +######################### +remove_logrotate_conf() { + local service_name="${1:?service name is missing}" + local logrotate_conf_dir="/etc/logrotate.d" + rm -f "${logrotate_conf_dir}/${service_name}" +} diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index b7baa7d207b9..ea0440062203 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r53`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r53/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r54`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r54/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7c18a9ed8222fdffcd504e5aebe3447cfecf837a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 7 Sep 2021 22:10:41 +0000 Subject: [PATCH 774/950] 2.5.1-debian-10-r0 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 8f3fcb359a30..47013a6800e6 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,14 +9,14 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.5.0-7" --checksum 4b98b5dd2589916d2ddd60e73b6b9cb9d3fada69821d5afd8fefde6446528261 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.5.1-0" --checksum 2219413a48b6e0ea74fe9660377d77284f51fbb490f5e2ee29616511ca3b0a66 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-0" --checksum 3e6fc37ca073b10a73a804d39c2f0c028947a1a596382a4f8ebe43dfbaa3a25e RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.0-debian-10-r54" \ + BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index b3147b3acd6b..c6078e09a9cd 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "4b98b5dd2589916d2ddd60e73b6b9cb9d3fada69821d5afd8fefde6446528261", + "digest": "2219413a48b6e0ea74fe9660377d77284f51fbb490f5e2ee29616511ca3b0a66", "distro": "debian-10", "type": "NAMI", - "version": "2.5.0-7" + "version": "2.5.1-0" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index ea0440062203..2df2c07f2f48 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.0`, `2.5.0-debian-10-r54`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.0-debian-10-r54/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8af8b7e9be1247067fa0dadcb4c9fe810a8e0162 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 8 Sep 2021 22:40:27 +0000 Subject: [PATCH 775/950] 2.5.1-debian-10-r1 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 47013a6800e6..edd39ed4f141 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2df2c07f2f48..2b41b69e6fbe 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r0/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r1/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 817a11add14e78625520812738e153d2e9a8feeb Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 9 Sep 2021 23:07:29 +0000 Subject: [PATCH 776/950] 2.5.1-debian-10-r2 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index edd39ed4f141..9ba8fd742447 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2b41b69e6fbe..e8ad14af76c9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r1/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r2/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 113ff2fbb30ee98ab43716beb1a1fe16f0677f1d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 10 Sep 2021 23:36:00 +0000 Subject: [PATCH 777/950] 2.5.1-debian-10-r3 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 9ba8fd742447..0ebe4e7c529e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e8ad14af76c9..aa5cd9fb890b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r2/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r3/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 09567cae53f41dca5845e7bbbca61ce3763e5992 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 12 Sep 2021 00:06:10 +0000 Subject: [PATCH 778/950] 2.5.1-debian-10-r4 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0ebe4e7c529e..23c818eae862 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index aa5cd9fb890b..8491dcd318c6 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r3/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r4/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 70960ab70a8ccc240f5ada051521ff51c041fff0 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 13 Sep 2021 00:37:34 +0000 Subject: [PATCH 779/950] 2.5.1-debian-10-r5 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 23c818eae862..6f04949ad328 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 8491dcd318c6..cdb61749ae70 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r4/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r5/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c6c050aeee39a9c187cfa2e394ac67ca8e9e9249 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 13 Sep 2021 10:13:39 +0000 Subject: [PATCH 780/950] 2.5.1-debian-10-r6 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 6f04949ad328..6f245e4a201d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,14 +9,14 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.5.1-0" --checksum 2219413a48b6e0ea74fe9660377d77284f51fbb490f5e2ee29616511ca3b0a66 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.5.1-1" --checksum 3714d6dc0dd8dd8b52b3227e010ee87a197e2721606564bfadc74a987bf34a82 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-0" --checksum 3e6fc37ca073b10a73a804d39c2f0c028947a1a596382a4f8ebe43dfbaa3a25e RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index c6078e09a9cd..3bc1a89921a6 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "2219413a48b6e0ea74fe9660377d77284f51fbb490f5e2ee29616511ca3b0a66", + "digest": "3714d6dc0dd8dd8b52b3227e010ee87a197e2721606564bfadc74a987bf34a82", "distro": "debian-10", "type": "NAMI", - "version": "2.5.1-0" + "version": "2.5.1-1" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index cdb61749ae70..79d2e7431275 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r5/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r6/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 51b02377a9ca23d6c0c7cd91b1c361da5a54be7d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 14 Sep 2021 10:42:57 +0000 Subject: [PATCH 781/950] 2.5.1-debian-10-r7 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 6f245e4a201d..d896468d63db 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 79d2e7431275..d3ffd693df65 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r6/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r7/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 98abe91230f82f928b3ddd949b04eb2cb309e692 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 15 Sep 2021 11:28:34 +0000 Subject: [PATCH 782/950] 2.5.1-debian-10-r8 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index d896468d63db..14e9a09b12a8 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d3ffd693df65..1f00b211c464 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r7/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r8/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ccb43220627dbc70d00a589ed1420bfc32a67107 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 16 Sep 2021 11:58:20 +0000 Subject: [PATCH 783/950] 2.5.1-debian-10-r9 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../prebuildfs/opt/bitnami/scripts/libos.sh | 43 ++++++++++++++++++- bitnami/kong/README.md | 2 +- 3 files changed, 44 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 14e9a09b12a8..fb02fb4a315c 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh index a8323db72d93..4265aae0a673 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh @@ -141,10 +141,51 @@ am_i_root() { if [[ "$(id -u)" = "0" ]]; then true else - false + false fi } +######################## +# Print OS metadata +# Arguments: +# $1 - Flag name +# Flags: +# --id - Distro ID +# --version - Distro version +# --branch - Distro branch +# --codename - Distro codename +# Returns: +# String +######################### +get_os_metadata() { + local -r flag_name="${1:?missing flag}" + # Helper function + get_os_release_metadata() { + local -r env_name="${1:?missing environment variable name}" + ( + . /etc/os-release + echo "${!env_name}" + ) + } + case "$flag_name" in + --id) + get_os_release_metadata ID + ;; + --version) + get_os_release_metadata VERSION_ID + ;; + --branch) + get_os_release_metadata VERSION_ID | sed 's/\..*//' + ;; + --codename) + get_os_release_metadata VERSION_CODENAME + ;; + *) + error "Unknown flag ${flag_name}" + return 1 + esac +} + ######################## # Get total memory available # Arguments: diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1f00b211c464..98832c1c8ef0 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r8/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r9/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 94afc183bf16024437bf4c34bbcd7bf6670d1672 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 17 Sep 2021 12:27:41 +0000 Subject: [PATCH 784/950] 2.5.1-debian-10-r10 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index fb02fb4a315c..8b59d8775974 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r10" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 98832c1c8ef0..c817a0edf96d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r9/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r10/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 2978bce5b6276da876ba35d47a670af27c2c78c7 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 18 Sep 2021 12:59:43 +0000 Subject: [PATCH 785/950] 2.5.1-debian-10-r11 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 8b59d8775974..7d61cd2edaa6 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r10" \ + BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r11" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c817a0edf96d..37ee64ca2688 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r10/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r11/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 1aad31c209b81219d639fc019a1cf4e42cb04250 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 19 Sep 2021 13:33:08 +0000 Subject: [PATCH 786/950] 2.5.1-debian-10-r12 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 7d61cd2edaa6..aedee8ca2ebb 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r11" \ + BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r12" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 37ee64ca2688..8fb904f715f5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r11/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r12/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b19bb29aedd0e09bffe20dc0e81dfb4a32bf8a9a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 20 Sep 2021 14:10:40 +0000 Subject: [PATCH 787/950] 2.5.1-debian-10-r13 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index aedee8ca2ebb..d1241343f7bd 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r12" \ + BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r13" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 8fb904f715f5..aede10bc4c4b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r12/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r13/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 10bfc52f91bab8c59d27c4c43e99f2adda2c22ce Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 21 Sep 2021 14:49:08 +0000 Subject: [PATCH 788/950] 2.5.1-debian-10-r14 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index d1241343f7bd..fdc03129c4a0 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r13" \ + BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r14" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index aede10bc4c4b..e5a427fb696f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r13/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r14/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 3da882834141424b4cd4b933a0004b1186a2a8f8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 22 Sep 2021 16:33:11 +0000 Subject: [PATCH 789/950] 2.5.1-debian-10-r15 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index fdc03129c4a0..2f114dff3ce0 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r14" \ + BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r15" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e5a427fb696f..6f68663947e9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r14/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r15/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8b2c8275e3b1895586c8bb134d602c1e70a37612 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 23 Sep 2021 17:00:11 +0000 Subject: [PATCH 790/950] 2.5.1-debian-10-r16 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 2f114dff3ce0..2e576c365a05 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r15" \ + BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r16" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 6f68663947e9..f50880ab2b10 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r15/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r16/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b57c4ac310cf004175dd6eebc80976c216b9fa2d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 24 Sep 2021 17:26:27 +0000 Subject: [PATCH 791/950] 2.5.1-debian-10-r17 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 2e576c365a05..c292c2db7a87 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r16" \ + BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r17" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f50880ab2b10..8c57de828695 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r16/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r17/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0c8a31ed4a6e311010396bfb7896605d357a52af Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 25 Sep 2021 17:50:29 +0000 Subject: [PATCH 792/950] 2.5.1-debian-10-r18 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c292c2db7a87..90603cb83738 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r17" \ + BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r18" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 8c57de828695..830676667568 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r17/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r18/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5f038d96abdce8fd71ec13b740dee3f17e0dd5da Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 26 Sep 2021 18:17:41 +0000 Subject: [PATCH 793/950] 2.5.1-debian-10-r19 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 90603cb83738..914e2575d391 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r18" \ + BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r19" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 830676667568..392c07bdbb19 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r18/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r19/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 6367229dff0f200105a78d2d94526c35d1741981 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 27 Sep 2021 16:28:03 +0000 Subject: [PATCH 794/950] 2.6.0-debian-10-r0 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 914e2575d391..e6eac752bf6b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,14 +9,14 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.5.1-1" --checksum 3714d6dc0dd8dd8b52b3227e010ee87a197e2721606564bfadc74a987bf34a82 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.6.0-0" --checksum 7a7de6f350e9ec13d262a508ced238eddf3abb890a5c92f1908902cc5efb8260 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-0" --checksum 3e6fc37ca073b10a73a804d39c2f0c028947a1a596382a4f8ebe43dfbaa3a25e RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.5.1-debian-10-r19" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 3bc1a89921a6..8c5a028a4fe7 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "3714d6dc0dd8dd8b52b3227e010ee87a197e2721606564bfadc74a987bf34a82", + "digest": "7a7de6f350e9ec13d262a508ced238eddf3abb890a5c92f1908902cc5efb8260", "distro": "debian-10", "type": "NAMI", - "version": "2.5.1-1" + "version": "2.6.0-0" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 392c07bdbb19..132e289306d5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.5.1`, `2.5.1-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.5.1-debian-10-r19/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 72210adc916c19b09fd2e3e4a7575dec84131dd5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 28 Sep 2021 16:54:55 +0000 Subject: [PATCH 795/950] 2.6.0-debian-10-r1 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index e6eac752bf6b..28fe464c27a2 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 132e289306d5..ecce27970f77 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r0/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r1/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f73e1159cc6356bd3c96f0f5ba501da3e2ac85c8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 29 Sep 2021 17:24:05 +0000 Subject: [PATCH 796/950] 2.6.0-debian-10-r2 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 28fe464c27a2..d053e770406a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index ecce27970f77..9d7e243f8f19 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r1/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r2/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 2bd34b07f7d7b709bc93a2466dd8d75222dc93cd Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 30 Sep 2021 17:49:23 +0000 Subject: [PATCH 797/950] 2.6.0-debian-10-r3 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index d053e770406a..25c8254ede78 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9d7e243f8f19..9f70f748c663 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r2/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r3/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From cd7a3200027d2530b0eb6409117f895334d02ada Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 1 Oct 2021 18:18:11 +0000 Subject: [PATCH 798/950] 2.6.0-debian-10-r4 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 25c8254ede78..527eb154e429 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9f70f748c663..22dec3b56d09 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r3/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r4/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f3aeb6ff8626ac947e45c8d2456f3d0f50b78cde Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 2 Oct 2021 18:40:23 +0000 Subject: [PATCH 799/950] 2.6.0-debian-10-r5 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 527eb154e429..c4ec333ec31a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 22dec3b56d09..169bd8742f75 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r4/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r5/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From dfcf27a2d15b4f9fda08186b905f820390043d89 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 3 Oct 2021 19:08:31 +0000 Subject: [PATCH 800/950] 2.6.0-debian-10-r6 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c4ec333ec31a..907447db246b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 169bd8742f75..60ad6b21345a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r5/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r6/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From edd751c337515c7d0e5b4448d251d14f5264e497 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 4 Oct 2021 19:41:54 +0000 Subject: [PATCH 801/950] 2.6.0-debian-10-r7 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 907447db246b..fd8ff5288e8c 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 60ad6b21345a..599ab7178556 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r6/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r7/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 2323bc61c427d62f71376c84079953187f2abe79 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 7 Oct 2021 17:21:49 +0000 Subject: [PATCH 802/950] 2.6.0-debian-10-r8 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index fd8ff5288e8c..530f13b68812 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 599ab7178556..9c5eed695d9e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r7/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r8/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 59a95b463aeaf80e46eeea74c03caf155716367b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 8 Oct 2021 21:36:00 +0000 Subject: [PATCH 803/950] 2.6.0-debian-10-r9 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 530f13b68812..749c4f8a9951 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9c5eed695d9e..c956d97d0b66 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r8/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r9/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0b9bc5c11f6bbac06dba3048ce1d24656096eb12 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 9 Oct 2021 22:01:47 +0000 Subject: [PATCH 804/950] 2.6.0-debian-10-r10 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 749c4f8a9951..59c728c10189 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r10" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c956d97d0b66..e1c10e8e163e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r9/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r10/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8bd6ac7876a73f883dc859ff6aeee7e990e0f503 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 10 Oct 2021 22:26:44 +0000 Subject: [PATCH 805/950] 2.6.0-debian-10-r11 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 59c728c10189..522c06df7c8a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r10" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r11" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e1c10e8e163e..1f3248732b84 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r10/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r11/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 782bfae4c61ba1db15b9eedb986d415eacccadc4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 12 Oct 2021 18:00:24 +0000 Subject: [PATCH 806/950] 2.6.0-debian-10-r12 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../prebuildfs/opt/bitnami/scripts/libos.sh | 45 ++++++++++++++++++- bitnami/kong/README.md | 2 +- 3 files changed, 46 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 522c06df7c8a..dd269e0c22b1 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r11" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r12" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh index 4265aae0a673..6bd564773acb 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh @@ -39,18 +39,24 @@ group_exists() { # Arguments: # $1 - group # Flags: +# -i|--gid - the ID for the new group # -s|--system - Whether to create new user as system user (uid <= 999) # Returns: # None ######################### ensure_group_exists() { local group="${1:?group is missing}" + local gid="" local is_system_user=false # Validate arguments shift 1 while [ "$#" -gt 0 ]; do case "$1" in + -i|--gid) + shift + gid="${1:?missing gid}" + ;; -s|--system) is_system_user=true ;; @@ -64,6 +70,13 @@ ensure_group_exists() { if ! group_exists "$group"; then local -a args=("$group") + if [[ -n "$gid" ]]; then + if group_exists "$gid" ; then + error "The GID $gid is already in use." >&2 + return 1 + fi + args+=("--gid" "$gid") + fi $is_system_user && args+=("--system") groupadd "${args[@]}" >/dev/null 2>&1 fi @@ -74,7 +87,9 @@ ensure_group_exists() { # Arguments: # $1 - user # Flags: +# -i|--uid - the ID for the new user # -g|--group - the group the new user should belong to +# -a|--append-groups - comma-separated list of supplemental groups to append to the new user # -h|--home - the home directory for the new user # -s|--system - whether to create new user as system user (uid <= 999) # Returns: @@ -82,7 +97,9 @@ ensure_group_exists() { ######################### ensure_user_exists() { local user="${1:?user is missing}" + local uid="" local group="" + local append_groups="" local home="" local is_system_user=false @@ -90,10 +107,18 @@ ensure_user_exists() { shift 1 while [ "$#" -gt 0 ]; do case "$1" in + -i|--uid) + shift + uid="${1:?missing uid}" + ;; -g|--group) shift group="${1:?missing group}" ;; + -a|--append-groups) + shift + append_groups="${1:?missing append_groups}" + ;; -h|--home) shift home="${1:?missing home directory}" @@ -111,7 +136,15 @@ ensure_user_exists() { if ! user_exists "$user"; then local -a user_args=("-N" "$user") - $is_system_user && user_args+=("--system") + if [[ -n "$uid" ]]; then + if user_exists "$uid" ; then + error "The UID $uid is already in use." + return 1 + fi + user_args+=("--uid" "$uid") + else + $is_system_user && user_args+=("--system") + fi useradd "${user_args[@]}" >/dev/null 2>&1 fi @@ -122,6 +155,15 @@ ensure_user_exists() { usermod -g "$group" "$user" >/dev/null 2>&1 fi + if [[ -n "$append_groups" ]]; then + local -a groups + read -ra groups <<< "$(tr ',;' ' ' <<< "$append_groups")" + for group in "${groups[@]}"; do + ensure_group_exists "$group" + usermod -aG "$group" "$user" >/dev/null 2>&1 + done + fi + if [[ -n "$home" ]]; then mkdir -p "$home" usermod -d "$home" "$user" >/dev/null 2>&1 @@ -403,3 +445,4 @@ generate_sha_hash() { local -r algorithm="${2:-1}" echo -n "$str" | "sha${algorithm}sum" | awk '{print $1}' } + diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1f3248732b84..d2b806349f23 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r11/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r12/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From fcf440fc4f68276409276e2ac5103279a2c8f6f9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 13 Oct 2021 18:43:50 +0000 Subject: [PATCH 807/950] 2.6.0-debian-10-r13 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index dd269e0c22b1..aed36eef3cf2 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r12" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r13" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d2b806349f23..51259abe93d9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r12/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r13/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 6833097bd0f05f75738b741f636e5f70bab834de Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 14 Oct 2021 19:28:34 +0000 Subject: [PATCH 808/950] 2.6.0-debian-10-r14 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index aed36eef3cf2..e2272980d7a8 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r13" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r14" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 51259abe93d9..da63a444f362 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r13/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r14/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e11c9172bb52c11f751aafdaaa160650c1e75c27 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 15 Oct 2021 19:53:46 +0000 Subject: [PATCH 809/950] 2.6.0-debian-10-r15 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index e2272980d7a8..7d9305b616e5 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r14" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r15" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index da63a444f362..bf4dca5148c2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r14/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r15/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e840490f5b5690a59e46780476ee563d32d51bc2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 16 Oct 2021 20:22:07 +0000 Subject: [PATCH 810/950] 2.6.0-debian-10-r16 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 7d9305b616e5..0cb334379511 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r15" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r16" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index bf4dca5148c2..426aeeb52ca5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r15/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r16/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 1755bc6c29ad80f5ece9e66718b475b1c1ccdecf Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 17 Oct 2021 20:51:34 +0000 Subject: [PATCH 811/950] 2.6.0-debian-10-r17 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0cb334379511..141ff6f8553c 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r16" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r17" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 426aeeb52ca5..806910b8c1eb 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r16/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r17/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 3a07f55d8354cbad3ac15abb966659a4f468bab0 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 18 Oct 2021 23:51:34 +0000 Subject: [PATCH 812/950] 2.6.0-debian-10-r18 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 141ff6f8553c..ab6cec8a58e5 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r17" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r18" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 806910b8c1eb..47e21b5bb95c 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r17/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r18/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 60fc90e75710c52ff48dd64679154d628dc4a07e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 20 Oct 2021 04:39:37 +0000 Subject: [PATCH 813/950] 2.6.0-debian-10-r19 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../prebuildfs/opt/bitnami/scripts/libnet.sh | 21 +++++++++ .../opt/bitnami/scripts/libservice.sh | 7 ++- .../opt/bitnami/scripts/libwebserver.sh | 43 +++++++++++++++---- bitnami/kong/README.md | 2 +- 5 files changed, 61 insertions(+), 14 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index ab6cec8a58e5..80ebc0f480ed 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r18" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r19" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libnet.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libnet.sh index 4391dacc7853..8bbf165e3e2a 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libnet.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libnet.sh @@ -140,3 +140,24 @@ parse_uri() { esac [[ "$uri" =~ $URI_REGEX ]] && echo "${BASH_REMATCH[${index}]}" } + +######################## +# Wait for a HTTP connection to succeed +# Globals: +# * +# Arguments: +# $1 - URL to wait for +# $2 - Maximum amount of retries (optional) +# $3 - Time between retries (optional) +# Returns: +# true if the HTTP connection succeeded, false otherwise +######################### +wait_for_http_connection() { + local url="${1:?missing url}" + local retries="${2:-}" + local sleep_time="${3:-}" + if ! retry_while "debug_execute curl --silent ${url}" "$retries" "$sleep_time"; then + error "Could not connect to ${url}" + return 1 + fi +} diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh index 0b96a0be09e0..a713bd108e15 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libservice.sh @@ -158,7 +158,7 @@ remove_cron_conf() { # $3 - Start command # $4 - Stop command # Flags: -# --disabled - Whether to disable the monit configuration +# --disable - Whether to disable the monit configuration # Returns: # None ######################### @@ -174,9 +174,8 @@ generate_monit_conf() { shift 4 while [[ "$#" -gt 0 ]]; do case "$1" in - --disabled) - shift - disabled="$1" + --disable) + disabled="yes" ;; *) echo "Invalid command line flag ${1}" >&2 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh index dc322c377b1b..785d883f325e 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh @@ -164,11 +164,14 @@ web_server_reload() { # Arguments: # $1 - App name # Flags: -# --hosts - Hosts to enable # --type - Application type, which has an effect on which configuration template to use +# --hosts - Host listen addresses +# --server-name - Server name +# --server-aliases - Server aliases # --allow-remote-connections - Whether to allow remote connections or to require local connections -# --disabled - Whether to render the file with a .disabled prefix -# --enable-https - Enable app configuration on HTTPS port +# --disable - Whether to render server configurations with a .disabled prefix +# --disable-http - Whether to render the app's HTTP server configuration with a .disabled prefix +# --disable-https - Whether to render the app's HTTPS server configuration with a .disabled prefix # --http-port - HTTP port number # --https-port - HTTPS port number # --document-root - Path to document root directory @@ -198,11 +201,18 @@ ensure_web_server_app_configuration_exists() { while [[ "$#" -gt 0 ]]; do case "$1" in # Common flags + --disable \ + | --disable-http \ + | --disable-https \ + ) + apache_args+=("$1") + nginx_args+=("$1") + ;; --hosts \ + | --server-name \ + | --server-aliases \ | --type \ | --allow-remote-connections \ - | --disabled \ - | --enable-https \ | --http-port \ | --https-port \ | --document-root \ @@ -347,8 +357,13 @@ ensure_web_server_prefix_configuration_exists() { # Arguments: # $1 - App name # Flags: -# --hosts - Hosts to enable -# --enable-https - Update HTTPS app configuration +# --hosts - Host listen addresses +# --server-name - Server name +# --server-aliases - Server aliases +# --enable-http - Enable HTTP app configuration (if not enabled already) +# --enable-https - Enable HTTPS app configuration (if not enabled already) +# --disable-http - Disable HTTP app configuration (if not disabled already) +# --disable-https - Disable HTTPS app configuration (if not disabled already) # --http-port - HTTP port number # --https-port - HTTPS port number # Returns: @@ -363,8 +378,20 @@ web_server_update_app_configuration() { while [[ "$#" -gt 0 ]]; do case "$1" in # Common flags - --hosts \ + --enable-http \ | --enable-https \ + | --disable-http \ + | --disable-https \ + ) + args+=("$1") + ;; + --hosts \ + | --server-name \ + | --server-aliases \ + | --enable-http \ + | --enable-https \ + | --disable-http \ + | --disable-https \ | --http-port \ | --https-port \ ) diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 47e21b5bb95c..8545f1a101c1 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r18/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r19/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f70fdd600e8b91aeec2979645c38ab731e99d6e5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 21 Oct 2021 05:05:22 +0000 Subject: [PATCH 814/950] 2.6.0-debian-10-r20 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 80ebc0f480ed..341712013b64 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r19" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r20" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 8545f1a101c1..528ca39bd7d6 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r19/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r20/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 00fd979f28987da090127920af0024dddc14ccfa Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 22 Oct 2021 05:36:34 +0000 Subject: [PATCH 815/950] 2.6.0-debian-10-r21 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 341712013b64..dcf7db8e4b4f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r20" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r21" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 528ca39bd7d6..3617e14ab893 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r20/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r21/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e0154c685eadb1554de287363fc57b95d90a2e98 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 23 Oct 2021 06:03:04 +0000 Subject: [PATCH 816/950] 2.6.0-debian-10-r22 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index dcf7db8e4b4f..0c313257267b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r21" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r22" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 3617e14ab893..7584fca222b6 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r21/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r22`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r22/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From a917316c449c01f973578c76dab818e4c3355753 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 24 Oct 2021 06:28:01 +0000 Subject: [PATCH 817/950] 2.6.0-debian-10-r23 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0c313257267b..8d7092f21d55 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r22" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r23" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7584fca222b6..4ce6ffe7baf1 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r22`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r22/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r23`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r23/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 2ec93e03a77d551c48a9d769b615b8f0e0fce407 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 25 Oct 2021 06:55:00 +0000 Subject: [PATCH 818/950] 2.6.0-debian-10-r24 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 8d7092f21d55..bae4c6e99931 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r23" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r24" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4ce6ffe7baf1..688568bc332a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r23`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r23/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r24`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r24/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 853f1783ae98f435fe2c891b045029ec2e1adea8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 26 Oct 2021 07:18:18 +0000 Subject: [PATCH 819/950] 2.6.0-debian-10-r25 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index bae4c6e99931..3f47a95fb2fc 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r24" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r25" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 688568bc332a..5e23da77f3d5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r24`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r24/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r25`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r25/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b3ce4d59b3fe4a6ad29a52bec7ac09e1a4f675f1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 26 Oct 2021 21:55:16 +0000 Subject: [PATCH 820/950] 2.6.0-debian-10-r26 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 3f47a95fb2fc..504f18f2f2d3 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r25" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r26" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 5e23da77f3d5..22e868acdae5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r25`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r25/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r26`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r26/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 028d7b55f49986dd3e4dcf1be22e5f9fc6149209 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 27 Oct 2021 22:28:03 +0000 Subject: [PATCH 821/950] 2.6.0-debian-10-r27 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 504f18f2f2d3..e20336ff5467 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r26" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r27" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 22e868acdae5..d78303de32c4 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r26`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r26/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r27`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r27/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 1b1c2fa79f89a36351b8f819aab3234eceb34e74 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 29 Oct 2021 07:03:49 +0000 Subject: [PATCH 822/950] 2.6.0-debian-10-r28 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index e20336ff5467..a553a2dc6955 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r27" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r28" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d78303de32c4..c69b793afb16 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r27`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r27/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r28`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r28/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 3d82e8a28d093e88e8d06134b2e7cd873b65e62b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 30 Oct 2021 07:34:42 +0000 Subject: [PATCH 823/950] 2.6.0-debian-10-r29 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a553a2dc6955..a1d1640b17de 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r28" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r29" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c69b793afb16..9d31abf75a48 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r28`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r28/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r29`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r29/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 4728448b9ebf0353c8caf3ee85ffe034805e5c59 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 31 Oct 2021 08:03:51 +0000 Subject: [PATCH 824/950] 2.6.0-debian-10-r30 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a1d1640b17de..f8e38286c5c0 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r29" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r30" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9d31abf75a48..3e6ec49f000a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r29`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r29/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r30`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r30/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From fc4722a7603d67618053a4eaf78111280d621ed5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 1 Nov 2021 08:29:45 +0000 Subject: [PATCH 825/950] 2.6.0-debian-10-r31 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index f8e38286c5c0..b12891d5fc47 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r30" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r31" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 3e6ec49f000a..750f21b5323d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r30`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r30/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r31`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r31/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 273387c5cdee25e94530cc92edbe2ee8e1be5fca Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 2 Nov 2021 08:54:30 +0000 Subject: [PATCH 826/950] 2.6.0-debian-10-r32 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index b12891d5fc47..44ee89c6d017 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r31" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r32" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 750f21b5323d..0b87aaddb15c 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r31`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r31/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r32`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r32/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f326ed15bcb8645eae302b1103f3563e29193427 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 4 Nov 2021 07:05:14 +0000 Subject: [PATCH 827/950] 2.6.0-debian-10-r33 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../prebuildfs/opt/bitnami/scripts/libfs.sh | 49 ++++++++++--------- bitnami/kong/README.md | 2 +- 3 files changed, 27 insertions(+), 26 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 44ee89c6d017..fba0e592a39e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r32" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r33" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh index ae5e2459c377..b438c913341d 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh @@ -50,8 +50,9 @@ ensure_dir_exists() { # boolean ######################### is_dir_empty() { - local dir="${1:?missing directory}" - + local -r path="${1:?missing directory}" + # Calculate real path in order to avoid issues with symlinks + local -r dir="$(realpath "$path")" if [[ ! -e "$dir" ]] || [[ -z "$(ls -A "$dir")" ]]; then true else @@ -88,7 +89,7 @@ is_file_writable() { local dir dir="$(dirname "$file")" - if [[ ( -f "$file" && -w "$file" ) || ( ! -f "$file" && -d "$dir" && -w "$dir" ) ]]; then + if [[ (-f "$file" && -w "$file") || (! -f "$file" && -d "$dir" && -w "$dir") ]]; then true else false @@ -136,31 +137,31 @@ configure_permissions_ownership() { shift 1 while [ "$#" -gt 0 ]; do case "$1" in - -f|--file-mode) - shift - file_mode="${1:?missing mode for files}" - ;; - -d|--dir-mode) - shift - dir_mode="${1:?missing mode for directories}" - ;; - -u|--user) - shift - user="${1:?missing user}" - ;; - -g|--group) - shift - group="${1:?missing group}" - ;; - *) - echo "Invalid command line flag $1" >&2 - return 1 - ;; + -f | --file-mode) + shift + file_mode="${1:?missing mode for files}" + ;; + -d | --dir-mode) + shift + dir_mode="${1:?missing mode for directories}" + ;; + -u | --user) + shift + user="${1:?missing user}" + ;; + -g | --group) + shift + group="${1:?missing group}" + ;; + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; esac shift done - read -r -a filepaths <<< "$paths" + read -r -a filepaths <<<"$paths" for p in "${filepaths[@]}"; do if [[ -e "$p" ]]; then if [[ -n $dir_mode ]]; then diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0b87aaddb15c..94bf8c753341 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r32`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r32/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r33`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r33/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 269b97eb9ae741eb47302c44217517a746902e79 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 5 Nov 2021 07:32:30 +0000 Subject: [PATCH 828/950] 2.6.0-debian-10-r34 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index fba0e592a39e..77ac3dc1b88c 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r33" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r34" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 94bf8c753341..5543b1bad002 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -37,7 +37,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r33`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r33/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r34`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r34/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b2475a8cd67a762291533ae4ce967a1030976b4f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 5 Nov 2021 22:42:52 +0000 Subject: [PATCH 829/950] 2.6.0-debian-10-r35 release --- bitnami/kong/2/debian-10/Dockerfile | 4 +- .../opt/bitnami/.bitnami_components.json | 4 +- bitnami/kong/README.md | 82 ++++++++++--------- 3 files changed, 46 insertions(+), 44 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 77ac3dc1b88c..c20eba72ff25 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,14 +9,14 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.6.0-0" --checksum 7a7de6f350e9ec13d262a508ced238eddf3abb890a5c92f1908902cc5efb8260 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.6.0-1" --checksum 44d8dff08b0ba40b7b070d91153b7decf77d0afafb8849aeeed08cd7375cea6f RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-0" --checksum 3e6fc37ca073b10a73a804d39c2f0c028947a1a596382a4f8ebe43dfbaa3a25e RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r34" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r35" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 8c5a028a4fe7..d082d18587c2 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "7a7de6f350e9ec13d262a508ced238eddf3abb890a5c92f1908902cc5efb8260", + "digest": "44d8dff08b0ba40b7b070d91153b7decf77d0afafb8849aeeed08cd7375cea6f", "distro": "debian-10", "type": "NAMI", - "version": "2.6.0-0" + "version": "2.6.0-1" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 5543b1bad002..efe9dae9dbf9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -1,23 +1,25 @@ -# What is Kong? +# Kong packaged by Bitnami -> Kong is a scalable, open source API layer (aka API gateway or API middleware) that runs in front of any RESTful API. Extra functionalities beyond the core platform are extended through plugins. Kong is built on top of reliable technologies like NGINX and provides an easy-to-use RESTful API to operate and configure the system. +## What is Kong? -[https://github.com/kong/kong](https://github.com/kong/kong) +> Kong is an open source Microservice API gateway and platform designed for managing microservices requests of high-availability, fault-tolerance, and distributed systems. -# TL;DR +[Overview of Kong](https://konghq.com/kong-community-edition/) + +## TL;DR ``` $ docker run --name kong bitnami/kong:latest ``` -## Docker Compose +### Docker Compose ```console $ curl -sSL https://raw.githubusercontent.com/bitnami/bitnami-docker-kong/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. @@ -28,20 +30,20 @@ $ docker-compose up -d > This [CVE scan report](https://quay.io/repository/bitnami/kong?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. -# Why use a non-root container? +## Why use a non-root container? Non-root container images add an extra layer of security and are generally recommended for production environments. However, because they run as a non-root user, privileged tasks are typically off-limits. Learn more about non-root containers [in our docs](https://docs.bitnami.com/tutorials/work-with-non-root-containers/). -# 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r34`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r34/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r35`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r35/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). -# Get this image +## Get this image The recommended way to get the Bitnami Kong Docker Image is to pull the prebuilt image from the [Docker Hub Registry](https://hub.docker.com/r/bitnami/kong). @@ -61,21 +63,21 @@ If you wish, you can also build the image yourself. $ docker build -t bitnami/kong:latest 'https://github.com/bitnami/bitnami-docker-kong.git#master:2/debian-10' ``` -# Connecting to other containers +## Connecting to other containers Using [Docker container networking](https://docs.docker.com/engine/userguide/networking/), a different server running inside a container can easily be accessed by your application containers and vice-versa. Containers attached to the same network can communicate with each other using the container name as the hostname. -## Using the Command Line +### Using the Command Line -### Step 1: Create a network +#### Step 1: Create a network ```console $ docker network create kong-network --driver bridge ``` -### Step 2: Launch the Kong container within your network +#### Step 2: Launch the Kong container within your network Use the `--network ` argument to the `docker run` command to attach the container to the `kong-network` network. @@ -83,11 +85,11 @@ Use the `--network ` argument to the `docker run` command to attach the $ docker run --name kong-node1 --network kong-network bitnami/kong:latest ``` -### Step 3: Run another containers +#### Step 3: Run another containers We can launch another containers using the same flag (`--network NETWORK`) in the `docker run` command. If you also set a name to your container, you will be able to use it as hostname in your network. -# Configuration +## Configuration The Bitnami Docker Kong can be easily setup with the following environment variables: @@ -108,7 +110,7 @@ This container also supports configuring Kong via environment values starting wi Check the official [Kong Configuration Reference](https://docs.konghq.com/latest/configuration/#environment-variables) for the full list of configurable properties. -## Full configuration +### Full configuration The image looks for Kong the configuration file in `/opt/bitnami/kong/conf/kong.conf`, which you can overwrite using your own custom configuration file. @@ -137,7 +139,7 @@ services: - /path/to/kong.conf:/opt/bitnami/kong/conf/kong.conf ``` -# Logging +## Logging The Bitnami Kong Docker image sends the container logs to `stdout`. To view the logs: @@ -147,7 +149,7 @@ $ docker logs kong You can configure the containers [logging driver](https://docs.docker.com/engine/admin/logging/overview/) using the `--log-driver` option if you wish to consume the container logs differently. In the default configuration docker uses the `json-file` driver. -# Understand the structure of this image +## Understand the structure of this image The Bitnami Kong Docker image is built using a Dockerfile with the structure below: @@ -156,7 +158,7 @@ FROM bitnami/minideb ENV ... -# Install required system packages and dependencies +## Install required system packages and dependencies RUN install_packages xxx yyy zzz RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack && component_unpack "kong" "aa.bb.cc-dd" @@ -180,13 +182,13 @@ The Dockerfile has several sections related to: - Entrypoint and command - Take into account that these actions are not executed until the container is started. -# Customize this image +## Customize this image The Bitnami Kong Docker image is designed to be extended so it can be used as the base image for your custom API service. > Note: Read the [previous section](#understand-the-structure-of-this-image) to understand the Dockerfile structure before extending this image. -## Extend this image +### Extend this image Before extending this image, please note it is possible there are certain ways you can configure Kong using the original: @@ -197,7 +199,7 @@ If your desired customizations cannot be covered using the methods mentioned abo ```Dockerfile FROM bitnami/kong -## Put your customizations below +### Put your customizations below ... ``` @@ -212,24 +214,24 @@ Here is an example of extending the image with the following modifications: FROM bitnami/kong LABEL maintainer "Bitnami " -## Change user to perform privileged actions +### Change user to perform privileged actions USER 0 -## Install 'vim' +### Install 'vim' RUN install_packages vim -## Revert to the original non-root user +### Revert to the original non-root user USER 1001 -## Disable anonymous reports -# Keep in mind it is possible to do this by setting the KONG_ANONYMOUS_REPORTS=off environment variable +### Disable anonymous reports +## Keep in mind it is possible to do this by setting the KONG_ANONYMOUS_REPORTS=off environment variable RUN sed -i -r 's/#anonymous_reports = on/anonymous_reports = off/' /opt/bitnami/kong/conf/kong.conf -## Modify the ports used by Kong by default -# It is also possible to change these environment variables at runtime +### Modify the ports used by Kong by default +## It is also possible to change these environment variables at runtime ENV KONG_PROXY_HTTP_PORT_NUMBER=8080 ENV KONG_ADMIN_HTTP_PORT_NUMBER=8081 EXPOSE 8080 8081 8443 8444 -## Modify the default container user +### Modify the default container user USER 1002 ``` @@ -256,19 +258,19 @@ volumes: driver: local ``` -# Maintenance +## Maintenance -## Upgrade this image +### Upgrade this image Bitnami provides up-to-date versions of Kong, 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/kong:latest ``` -### Step 2: Stop the running container +#### Step 2: Stop the running container Stop the currently running container using the command @@ -276,13 +278,13 @@ Stop the currently running container using the command $ docker stop kong ``` -### Step 3: Remove the currently running container +#### Step 3: Remove the currently running container ```console $ docker rm -v kong ``` -### Step 4: Run the new image +#### Step 4: Run the new image Re-create your container from the new image. @@ -290,11 +292,11 @@ Re-create your container from the new image. $ docker run --name kong bitnami/kong:latest ``` -# Contributing +## 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-kong/issues), or submit a [pull request](https://github.com/bitnami/bitnami-docker-kong/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-kong/issues/new). For us to provide better support, be sure to include the following information in your issue: @@ -304,7 +306,7 @@ If you encountered a problem running this container, you can file an [issue](htt - Version of this container - The command you used to run the container, and any relevant output you saw (masking any sensitive information) -# License +## License Copyright (c) 2021 Bitnami From 422a3a162a5c129875a3d7f0d254512c65ad7907 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 6 Nov 2021 23:14:24 +0000 Subject: [PATCH 830/950] 2.6.0-debian-10-r36 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c20eba72ff25..18fe664bf62c 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r35" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r36" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index efe9dae9dbf9..f3e76f213546 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -39,7 +39,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r35`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r35/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r36`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r36/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c6d7b4aee4f8acaf9f708ac5cf4b8b661674b2bb Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 7 Nov 2021 23:40:01 +0000 Subject: [PATCH 831/950] 2.6.0-debian-10-r37 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 18fe664bf62c..5a6db35a1756 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r36" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r37" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f3e76f213546..24de30685fba 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -39,7 +39,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r36`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r36/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r37`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r37/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From cee3557f54c6a2a3bdee8d5ac6dad35d6eed758e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 8 Nov 2021 23:27:53 +0000 Subject: [PATCH 832/950] 2.6.0-debian-10-r38 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 5a6db35a1756..5989bd1cf831 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,14 +9,14 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.6.0-1" --checksum 44d8dff08b0ba40b7b070d91153b7decf77d0afafb8849aeeed08cd7375cea6f +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.6.0-2" --checksum b9fa4198e926b5dfd13efb5b014f741602d0401be72c53a8afda269c4f9812ff RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-0" --checksum 3e6fc37ca073b10a73a804d39c2f0c028947a1a596382a4f8ebe43dfbaa3a25e RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r37" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r38" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index d082d18587c2..8be8b0c44527 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "44d8dff08b0ba40b7b070d91153b7decf77d0afafb8849aeeed08cd7375cea6f", + "digest": "b9fa4198e926b5dfd13efb5b014f741602d0401be72c53a8afda269c4f9812ff", "distro": "debian-10", "type": "NAMI", - "version": "2.6.0-1" + "version": "2.6.0-2" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 24de30685fba..68e760b3fdbf 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -39,7 +39,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r37`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r37/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r38`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r38/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From cb81885d5a92718f7728beb70be4cb468237799b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 10 Nov 2021 00:04:52 +0000 Subject: [PATCH 833/950] 2.6.0-debian-10-r39 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 5989bd1cf831..6cd277ea487b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r38" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r39" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 68e760b3fdbf..0fdc4e4e6661 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -39,7 +39,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r38`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r38/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r39`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r39/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d8802e46de5268635c61487939f7f9e18667b07a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 11 Nov 2021 00:35:10 +0000 Subject: [PATCH 834/950] 2.6.0-debian-10-r40 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 6cd277ea487b..a3b0ee58350d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r39" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r40" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh index 785d883f325e..459f99c7d1cd 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh @@ -178,13 +178,13 @@ web_server_reload() { # Apache-specific flags: # --apache-additional-configuration - Additional vhost configuration (no default) # --apache-before-vhost-configuration - Configuration to add before the directive (no default) -# --apache-allow-override - Whether to allow .htaccess files (only allowed when --move-htaccess is set to 'no') +# --apache-allow-override - Whether to allow .htaccess files (only allowed when --move-htaccess is set to 'no' and type is not defined) # --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 +# --apache-move-htaccess - Move .htaccess files to a common place so they can be loaded during Apache startup (only allowed when type is not defined) # NGINX-specific flags: # --nginx-additional-configuration - Additional server block configuration (no default) # --nginx-external-configuration - Configuration external to server block (no default) diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0fdc4e4e6661..93a85e622813 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -39,7 +39,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r39`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r39/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r40`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r40/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From db2a9f2942e281bf7e28c969662c9237922c4992 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 12 Nov 2021 01:03:44 +0000 Subject: [PATCH 835/950] 2.6.0-debian-10-r41 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a3b0ee58350d..999af64585a2 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r40" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r41" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 93a85e622813..0ff88467ed81 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -39,7 +39,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r40`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r40/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r41`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r41/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From a95cde9c6b88d02b2efaf7f3a326f5fc542c4650 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 13 Nov 2021 01:38:26 +0000 Subject: [PATCH 836/950] 2.6.0-debian-10-r42 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 999af64585a2..eecff72ddaa4 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r41" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r42" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0ff88467ed81..9530de810ea4 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -39,7 +39,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r41`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r41/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r42`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r42/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f951eb413751c537b1a079f0e4789f4f8a7907d1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 14 Nov 2021 02:02:16 +0000 Subject: [PATCH 837/950] 2.6.0-debian-10-r43 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index eecff72ddaa4..9785394847b9 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r42" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r43" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9530de810ea4..c0d5177ab441 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -39,7 +39,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r42`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r42/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r43`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r43/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c24cf288e2650b1f564af2cb1dc688d5b2d68b49 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 15 Nov 2021 03:24:55 +0000 Subject: [PATCH 838/950] 2.6.0-debian-10-r44 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 9785394847b9..5a674f115bd3 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r43" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r44" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c0d5177ab441..6d708e48658f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -39,7 +39,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r43`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r43/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r44`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r44/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 1b2698622d0e8940eecf8aaf02e8509838abf7a2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 16 Nov 2021 03:59:42 +0000 Subject: [PATCH 839/950] 2.6.0-debian-10-r45 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 5a674f115bd3..e683d31a0233 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r44" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r45" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 6d708e48658f..86cfdc33262a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -6,6 +6,8 @@ [Overview of Kong](https://konghq.com/kong-community-edition/) +Trademarks: This software listing is packaged by Bitnami. The respective trademarks mentioned in the offering are owned by the respective companies, and use of them does not imply any affiliation or endorsement. + ## TL;DR ``` @@ -39,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r44`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r44/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r45`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r45/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 220c75119d6e5670a54ca12ae87cbc0fc56d3301 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 17 Nov 2021 05:10:04 +0000 Subject: [PATCH 840/950] 2.6.0-debian-10-r46 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index e683d31a0233..0d74e8ae90f8 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r45" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r46" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 86cfdc33262a..500da67b68e4 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r45`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r45/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r46`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r46/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7c978c22a4c0eb92b6feb3f6e64da2af5f083f7a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 18 Nov 2021 06:19:23 +0000 Subject: [PATCH 841/950] 2.6.0-debian-10-r47 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0d74e8ae90f8..0e52cdc4de03 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r46" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r47" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 500da67b68e4..7b669b2a434c 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r46`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r46/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r47`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r47/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7b67bd3ddca5b9a8f84939756ce45ee955ca0502 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 19 Nov 2021 06:48:30 +0000 Subject: [PATCH 842/950] 2.6.0-debian-10-r48 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0e52cdc4de03..24e07ce22250 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r47" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r48" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7b669b2a434c..196fa450df8f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r47`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r47/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r48`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r48/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ece15275db26582d37a7e33b632b4f6a7e85ce0a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 21 Nov 2021 03:09:24 +0000 Subject: [PATCH 843/950] 2.6.0-debian-10-r49 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 24e07ce22250..f0ae5338bf4f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r48" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r49" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 196fa450df8f..c90e8e5adfee 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r48`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r48/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r49`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r49/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 143e4b98f29462cbe6840439822dd6c343b9f564 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 22 Nov 2021 04:17:10 +0000 Subject: [PATCH 844/950] 2.6.0-debian-10-r50 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index f0ae5338bf4f..f6e190d30736 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r49" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r50" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c90e8e5adfee..84be4a7e08ac 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r49`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r49/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r50`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r50/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ec7b96e63d00338cea91e8dae3b196585cfef367 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 23 Nov 2021 04:41:49 +0000 Subject: [PATCH 845/950] 2.6.0-debian-10-r51 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index f6e190d30736..d706cc3f4d84 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r50" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r51" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 84be4a7e08ac..dbc726547907 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r50`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r50/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r51`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r51/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0bbbf7aeff578bd60b53ed2ce2b1a7fe5705a842 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 24 Nov 2021 05:07:49 +0000 Subject: [PATCH 846/950] 2.6.0-debian-10-r52 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index d706cc3f4d84..02e4d7c4bd8b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r51" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r52" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index dbc726547907..fbfb4b561f4a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r51`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r51/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r52`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r52/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 8487befebdb7763035c058c606b621aa8fba4414 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 25 Nov 2021 06:14:23 +0000 Subject: [PATCH 847/950] 2.6.0-debian-10-r53 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 02e4d7c4bd8b..810a05271355 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r52" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r53" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index fbfb4b561f4a..89551ef07403 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r52`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r52/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r53`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r53/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 3cc61dd5d4cacb6bd5453bb33efa8f79649c2071 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 26 Nov 2021 06:41:57 +0000 Subject: [PATCH 848/950] 2.6.0-debian-10-r54 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 810a05271355..c20c99a1943d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r53" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r54" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 89551ef07403..995b33793ffa 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r53`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r53/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r54`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r54/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 04208bf02e933151b331e58b48011ad10ac86b75 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 27 Nov 2021 23:55:00 +0000 Subject: [PATCH 849/950] 2.6.0-debian-10-r55 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c20c99a1943d..2dd0d2ba1f73 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r54" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r55" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 995b33793ffa..49ca5c402a76 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r54`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r54/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r55`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r55/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7fc8937442da8f2993b4b4147008da2d1f037486 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 29 Nov 2021 00:20:29 +0000 Subject: [PATCH 850/950] 2.6.0-debian-10-r56 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 2dd0d2ba1f73..c9cac6691b61 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r55" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r56" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 49ca5c402a76..e1896fb0f6f6 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r55`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r55/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r56`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r56/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 303ded1b51e6a1a5855d1f10e945cc0ead4092f7 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 30 Nov 2021 01:23:49 +0000 Subject: [PATCH 851/950] 2.6.0-debian-10-r57 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c9cac6691b61..aa4be6720e67 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r56" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r57" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e1896fb0f6f6..72977e390271 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r56`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r56/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r57`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r57/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 940bc49afff150f68c18a580c71f49758e0d81ae Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 1 Dec 2021 12:52:07 +0000 Subject: [PATCH 852/950] 2.6.0-debian-10-r58 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../rootfs/opt/bitnami/scripts/kong-env.sh | 90 +++++++ .../opt/bitnami/scripts/kong/entrypoint.sh | 2 +- .../opt/bitnami/scripts/kong/postunpack.sh | 47 +--- .../rootfs/opt/bitnami/scripts/kong/run.sh | 16 +- .../rootfs/opt/bitnami/scripts/kong/setup.sh | 2 +- .../rootfs/opt/bitnami/scripts/libkong.sh | 219 ++++++++---------- bitnami/kong/README.md | 2 +- 8 files changed, 208 insertions(+), 172 deletions(-) create mode 100644 bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong-env.sh diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index aa4be6720e67..8a97267bad23 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r57" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r58" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong-env.sh b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong-env.sh new file mode 100644 index 000000000000..90e21c5b695c --- /dev/null +++ b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong-env.sh @@ -0,0 +1,90 @@ +#!/bin/bash +# +# Environment configuration for kong + +# The values for all environment variables will be set in the below order of precedence +# 1. Custom environment variables defined below after Bitnami defaults +# 2. Constants defined in this file (environment variables with no default), i.e. BITNAMI_ROOT_DIR +# 3. Environment variables overridden via external files using *_FILE variables (see below) +# 4. Environment variables set externally (i.e. current Bash context/Dockerfile/userdata) + +# Load logging library +. /opt/bitnami/scripts/liblog.sh + +export BITNAMI_ROOT_DIR="/opt/bitnami" +export BITNAMI_VOLUME_DIR="/bitnami" + +# Logging configuration +export MODULE="${MODULE:-kong}" +export BITNAMI_DEBUG="${BITNAMI_DEBUG:-false}" + +# By setting an environment variable matching *_FILE to a file path, the prefixed environment +# variable will be overridden with the value specified in that file +kong_env_vars=( + KONG_MIGRATE + KONG_EXIT_AFTER_MIGRATE + KONG_PROXY_LISTEN_ADDRESS + KONG_PROXY_HTTP_PORT_NUMBER + KONG_PROXY_HTTPS_PORT_NUMBER + KONG_ADMIN_LISTEN_ADDRESS + KONG_ADMIN_HTTP_PORT_NUMBER + KONG_ADMIN_HTTPS_PORT_NUMBER + KONG_NGINX_DAEMON + KONG_PROXY_LISTEN + KONG_PROXY_LISTEN_OVERRIDE + KONG_ADMIN_LISTEN + KONG_ADMIN_LISTEN_OVERRIDE + KONG_DATABASE + KONG_CASSANDRA_PASSWORD + KONG_PG_PASSWORD +) +for env_var in "${kong_env_vars[@]}"; do + file_env_var="${env_var}_FILE" + if [[ -n "${!file_env_var:-}" ]]; then + if [[ -r "${!file_env_var:-}" ]]; then + export "${env_var}=$(< "${!file_env_var}")" + unset "${file_env_var}" + else + warn "Skipping export of '${env_var}'. '${!file_env_var:-}' is not readable." + fi + fi +done +unset kong_env_vars + +# Paths +export KONG_BASE_DIR="${BITNAMI_ROOT_DIR}/kong" +export KONG_CONF_DIR="${KONG_BASE_DIR}/conf" +export KONG_CONF_FILE="${KONG_CONF_DIR}/kong.conf" +export KONG_DEFAULT_CONF_FILE="${KONG_CONF_DIR}/kong.conf.default" +export KONG_INITSCRIPTS_DIR="/docker-entrypoint-initdb.d" +export KONG_SERVER_DIR="${KONG_BASE_DIR}/server" +export KONG_LOGS_DIR="${KONG_SERVER_DIR}/logs" +export PATH="${KONG_BASE_DIR}/bin:${KONG_BASE_DIR}/openresty/bin:${PATH}" + +# System users (when running with a privileged user) +export KONG_DAEMON_USER="kong" +export KONG_DAEMON_GROUP="kong" + +# Kong cluster creation settings +export KONG_MIGRATE="${KONG_MIGRATE:-no}" +export KONG_EXIT_AFTER_MIGRATE="${KONG_EXIT_AFTER_MIGRATE:-no}" + +# Kong interface settings +export KONG_PROXY_LISTEN_ADDRESS="${KONG_PROXY_LISTEN_ADDRESS:-0.0.0.0}" +export KONG_PROXY_HTTP_PORT_NUMBER="${KONG_PROXY_HTTP_PORT_NUMBER:-8000}" +export KONG_PROXY_HTTPS_PORT_NUMBER="${KONG_PROXY_HTTPS_PORT_NUMBER:-8443}" +export KONG_ADMIN_LISTEN_ADDRESS="${KONG_ADMIN_LISTEN_ADDRESS:-0.0.0.0}" +export KONG_ADMIN_HTTP_PORT_NUMBER="${KONG_ADMIN_HTTP_PORT_NUMBER:-8001}" +export KONG_ADMIN_HTTPS_PORT_NUMBER="${KONG_ADMIN_HTTPS_PORT_NUMBER:-8444}" + +# Kong native settings +export KONG_NGINX_DAEMON="${KONG_NGINX_DAEMON:-off}" +export KONG_PROXY_LISTEN="${KONG_PROXY_LISTEN:-${KONG_PROXY_LISTEN_ADDRESS}:${KONG_PROXY_HTTP_PORT_NUMBER}, ${KONG_PROXY_LISTEN_ADDRESS}:${KONG_PROXY_HTTPS_PORT_NUMBER} ssl}" +export KONG_PROXY_LISTEN_OVERRIDE="${KONG_PROXY_LISTEN_OVERRIDE:-no}" +export KONG_ADMIN_LISTEN="${KONG_ADMIN_LISTEN:-${KONG_ADMIN_LISTEN_ADDRESS}:${KONG_ADMIN_HTTP_PORT_NUMBER}, ${KONG_ADMIN_LISTEN_ADDRESS}:${KONG_ADMIN_HTTPS_PORT_NUMBER} ssl}" +export KONG_ADMIN_LISTEN_OVERRIDE="${KONG_ADMIN_LISTEN_OVERRIDE:-no}" +export KONG_DATABASE="${KONG_DATABASE:-postgres}" +export KONG_CASSANDRA_PASSWORD="${KONG_CASSANDRA_PASSWORD:-}" +export KONG_PG_PASSWORD="${KONG_PG_PASSWORD:-}" + +# Custom environment variables may be defined below diff --git a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/entrypoint.sh b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/entrypoint.sh index ce0a5d7a669c..208e1f9ed4d8 100755 --- a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/entrypoint.sh +++ b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/entrypoint.sh @@ -12,7 +12,7 @@ set -o pipefail . /opt/bitnami/scripts/liblog.sh . /opt/bitnami/scripts/libkong.sh -eval "$(kong_env)" +. /opt/bitnami/scripts/kong-env.sh print_welcome_page diff --git a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/postunpack.sh b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/postunpack.sh index f923799de7bc..f307ac39555a 100755 --- a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/postunpack.sh +++ b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/postunpack.sh @@ -11,53 +11,8 @@ set -o pipefail . /opt/bitnami/scripts/libos.sh . /opt/bitnami/scripts/libkong.sh -# Auxiliar functions - -######################## -# Set a configuration to Kong's configuration file -# Globals: -# KONG_CONF_FILE -# Arguments: -# $1 - key -# $2 - value -# Returns: -# None -######################### -kong_conf_set() { - local -r key="${1:?missing key}" - local -r value="${2:-}" - - # Check if the value was commented or set before - if grep -q "^#*${key}\s*=[^#]*" "$KONG_CONF_FILE"; then - debug "Updating entry for property '${key}' in configuration file" - # Update the existing key (leave trailing space for comments) - sed -ri "s|^(#*${key}\s*=)[^#]*|\1 ${value} |" "$KONG_CONF_FILE" - else - debug "Adding new entry for property '${key}' in configuration file" - # Add a new key - printf '/opt/bitnami/scripts/kong = %s\n' "$key" "$value" >>"$KONG_CONF_FILE" - fi -} - -######################## -# Uncomment non-empty entries in Kong configuration -# Globals: -# KONG_CONF_FILE -# Arguments: -# None -# Returns: -# None -######################### -kong_configure_non_empty_values() { - # Uncomment all non-empty keys in the main Kong configuration file - sed -ri 's/^#+([a-z_ ]+)=(\s*[^# ]+)/\1=\2 /' "$KONG_CONF_FILE" - - # Comment read-only postgres connection parameters again, as default values fail to work properly - sed -ri 's/(^pg_ro_.+)=(\s*[^# ]+)/#\1=\2 /' "$KONG_CONF_FILE" -} - # Load Kong environment variables -eval "$(kong_env)" +. /opt/bitnami/scripts/kong-env.sh # Ensure users and groups used by Kong exist ensure_user_exists "$KONG_DAEMON_USER" --group "$KONG_DAEMON_GROUP" diff --git a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/run.sh b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/run.sh index df28471525cf..bdd826c324ee 100755 --- a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/run.sh +++ b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/run.sh @@ -13,11 +13,23 @@ set -o pipefail . /opt/bitnami/scripts/libkong.sh # Load Kong environment variables -eval "$(kong_env)" +. /opt/bitnami/scripts/kong-env.sh + +# In case we are working with root containers, we need to set the KONG_NGINX_USER environment variable +# before running Kong + +if am_i_root && [[ -z "${KONG_NGINX_USER:-}" ]]; then + export KONG_NGINX_USER="${KONG_DAEMON_USER} ${KONG_DAEMON_GROUP}" +fi + if is_boolean_yes "$KONG_EXIT_AFTER_MIGRATE"; then info "** Container configured to just perform the database migration (KONG_EXIT_AFTER_MIGRATE=yes). Exiting now **" exit 0 else info "** Starting Kong **" - exec kong start + if am_i_root; then + exec gosu "$KONG_DAEMON_USER" kong start + else + exec kong start + fi fi diff --git a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/setup.sh b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/setup.sh index a213410dc0de..73481b3e309d 100755 --- a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/setup.sh +++ b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong/setup.sh @@ -12,7 +12,7 @@ set -o pipefail . /opt/bitnami/scripts/libkong.sh # Load Kong environment variables -eval "$(kong_env)" +. /opt/bitnami/scripts/kong-env.sh # Ensure Kong environment variables are valid kong_validate diff --git a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/libkong.sh b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/libkong.sh index 4aa19c7b63dc..edc4a0dc41c9 100644 --- a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/libkong.sh +++ b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/libkong.sh @@ -12,99 +12,6 @@ . /opt/bitnami/scripts/libservice.sh . /opt/bitnami/scripts/libvalidations.sh -######################## -# Load global variables used for Kong configuration. -# Globals: -# KONG_* -# Arguments: -# None -# Returns: -# Series of exports to be used as 'eval' arguments -######################### -kong_env() { - # Avoid environment settings getting overridden twice - if [[ -n "${MODULE:-}" ]]; then - return - fi - - cat <<"EOF" -# Bitnami debug -export MODULE=kong -export BITNAMI_DEBUG="${BITNAMI_DEBUG:-false}" - -# Paths -export KONG_BASE_DIR="/opt/bitnami/kong" -export KONG_CONF_DIR="${KONG_BASE_DIR}/conf" -export KONG_SERVER_DIR="${KONG_BASE_DIR}/server" - -export KONG_CONF_FILE="${KONG_CONF_DIR}/kong.conf" -export KONG_DEFAULT_CONF_FILE="${KONG_CONF_DIR}/kong.conf.default" -export KONG_INITSCRIPTS_DIR="/docker-entrypoint-initdb.d" - -# Users -export KONG_DAEMON_USER="${KONG_DAEMON_USER:-kong}" -export KONG_DAEMON_GROUP="${KONG_DAEMON_GROUP:-kong}" - -# Cluster settings -export KONG_MIGRATE="${KONG_MIGRATE:-no}" -export KONG_EXIT_AFTER_MIGRATE="${KONG_EXIT_AFTER_MIGRATE:-no}" - -# Port and service bind configurations for KONG_PROXY_LISTEN and KONG_ADMIN_LISTEN -# By setting these separately, we are consistent with other Bitnami solutions -# However it is still possible to directly set KONG_PROXY_LISTEN and KONG_ADMIN_LISTEN -export KONG_PROXY_LISTEN_ADDRESS="${KONG_PROXY_LISTEN_ADDRESS:-0.0.0.0}" -export KONG_PROXY_HTTP_PORT_NUMBER="${KONG_PROXY_HTTP_PORT_NUMBER:-8000}" -export KONG_PROXY_HTTPS_PORT_NUMBER="${KONG_PROXY_HTTPS_PORT_NUMBER:-8443}" -export KONG_ADMIN_LISTEN_ADDRESS="${KONG_ADMIN_LISTEN_ADDRESS:-127.0.0.1}" -export KONG_ADMIN_HTTP_PORT_NUMBER="${KONG_ADMIN_HTTP_PORT_NUMBER:-8001}" -export KONG_ADMIN_HTTPS_PORT_NUMBER="${KONG_ADMIN_HTTPS_PORT_NUMBER:-8444}" - -# Kong configuration -# These environment variables are used by Kong and allow overriding values in its configuration file -export KONG_NGINX_DAEMON="off" -EOF - - if am_i_root; then - cat <<"EOF" -export KONG_NGINX_USER="${KONG_DAEMON_USER} ${KONG_DAEMON_GROUP}" -EOF - fi - - if [[ -f "${KONG_CASSANDRA_PASSWORD_FILE:-}" ]]; then - cat <<"EOF" -export KONG_CASSANDRA_PASSWORD="$(< "${KONG_CASSANDRA_PASSWORD_FILE}")" -EOF - fi - - if [[ -f "${KONG_POSTGRESQL_PASSWORD_FILE:-}" ]]; then - cat <<"EOF" -export KONG_PG_PASSWORD="$(< "${KONG_POSTGRESQL_PASSWORD_FILE}")" -EOF - fi - - # Compound environment variables that form a single Kong configuration entry - if [[ -n "${KONG_PROXY_LISTEN:-}" ]]; then - cat <<"EOF" -export KONG_PROXY_LISTEN_OVERRIDE="yes" -EOF - else - cat <<"EOF" -export KONG_PROXY_LISTEN="${KONG_PROXY_LISTEN_ADDRESS}:${KONG_PROXY_HTTP_PORT_NUMBER}, ${KONG_PROXY_LISTEN_ADDRESS}:${KONG_PROXY_HTTPS_PORT_NUMBER} ssl" -export KONG_PROXY_LISTEN_OVERRIDE="no" -EOF - fi - if [[ -n "${KONG_ADMIN_LISTEN:-}" ]]; then - cat <<"EOF" -export KONG_ADMIN_LISTEN_OVERRIDE="yes" -EOF - else - cat <<"EOF" -export KONG_ADMIN_LISTEN="${KONG_ADMIN_LISTEN_ADDRESS}:${KONG_ADMIN_HTTP_PORT_NUMBER}, ${KONG_ADMIN_LISTEN_ADDRESS}:${KONG_ADMIN_HTTPS_PORT_NUMBER} ssl" -export KONG_ADMIN_LISTEN_OVERRIDE="no" -EOF - fi -} - ######################## # Validate settings in KONG_* environment variables # Globals: @@ -155,7 +62,7 @@ kong_validate() { local -r total="$#" for i in $(seq 1 "$((total - 1))"); do for j in $(seq "$((i + 1))" "$total"); do - if (( "${!i}" == "${!j}" )); then + if (("${!i}" == "${!j}")); then print_validation_error "${!i} and ${!j} are bound to the same port" fi done @@ -230,6 +137,7 @@ kong_initialize() { info "Initializing Kong" info "Waiting for database connection to succeed" + kong_configure_from_environment_variables while ! kong_migrations_list_output="$(kong migrations list 2>&1)"; do if is_boolean_yes "$KONG_MIGRATE" && [[ "$kong_migrations_list_output" =~ "Database needs bootstrapping"* ]]; then @@ -249,6 +157,74 @@ kong_initialize() { kong migrations finish done fi + + # Fix server ownership because of running the kong migrate commands as root + am_i_root && chown -R "$KONG_DAEMON_USER":"$KONG_DAEMON_GROUP" "$KONG_SERVER_DIR" "$KONG_CONF_DIR" + + # Set return code to avoid issues in previous commands + true +} + +######################## +# Set a configuration to Kong's configuration file +# Globals: +# KONG_CONF_FILE +# Arguments: +# $1 - key +# $2 - value +# Returns: +# None +######################### +kong_conf_set() { + local -r key="${1:?missing key}" + local -r value="${2:-}" + + # Check if the value was commented or set before + if grep -q "^#*${key}\s*=[^#]*" "$KONG_CONF_FILE"; then + debug "Updating entry for property '${key}' in configuration file" + # Update the existing key (leave trailing space for comments) + sed -ri "s|^#*(${key}\s*=)[^#]*|\1 ${value} |" "$KONG_CONF_FILE" + else + debug "Adding new entry for property '${key}' in configuration file" + # Add a new key + printf '%s = %s\n' "$key" "$value" >>"$KONG_CONF_FILE" + fi +} + +######################## +# Uncomment non-empty entries in Kong configuration +# Globals: +# KONG_CONF_FILE +# Arguments: +# None +# Returns: +# None +######################### +kong_configure_non_empty_values() { + # Uncomment all non-empty keys in the main Kong configuration file + sed -ri 's/^#+([a-z_ ]+)=(\s*[^# ]+)/\1=\2 /' "$KONG_CONF_FILE" + + # Comment read-only postgres connection parameters again, as default values fail to work properly + sed -ri 's/(^pg_ro_.+)=(\s*[^# ]+)/#\1=\2 /' "$KONG_CONF_FILE" +} + +######################## +# Configure Kong configuration files from environment variables +# Globals: +# KONG_* +# Arguments: +# None +# Returns: +# None +######################### +kong_configure_from_environment_variables() { + # Map environment variables to config properties + for var in "${!KONG_CFG_@}"; do + key="$(echo "$var" | sed -e 's/^KONG_CFG_//g' | tr '[:upper:]' '[:lower:]')" + + value="${!var}" + kong_conf_set "$key" "$value" + done } ######################## @@ -261,7 +237,7 @@ kong_initialize() { # None ######################### is_kong_running() { - if kong health 2>&1 | grep -E "Kong is healthy" > /dev/null; then + if kong health 2>&1 | grep -E "Kong is healthy" >/dev/null; then true else false @@ -291,13 +267,13 @@ is_kong_not_running() { # None ######################### kong_stop() { - local -r retries=5 - local -r sleep_time=5 + local -r retries=5 + local -r sleep_time=5 kong stop - if ! retry_while is_kong_not_running "$retries" "$sleep_time"; then - error "Kong failed to shut down" - exit 1 - fi + if ! retry_while is_kong_not_running "$retries" "$sleep_time"; then + error "Kong failed to shut down" + exit 1 + fi } ######################## @@ -310,13 +286,13 @@ kong_stop() { # None ######################### kong_start_bg() { - local -r retries=5 - local -r sleep_time=5 - info "Starting kong in background" - kong start & - if retry_while is_kong_running "$retries" "$sleep_time"; then - info "Kong started successfully in background" - fi + local -r retries=5 + local -r sleep_time=5 + info "Starting kong in background" + kong start & + if retry_while is_kong_running "$retries" "$sleep_time"; then + info "Kong started successfully in background" + fi } ######################## @@ -330,23 +306,26 @@ kong_start_bg() { ######################### kong_custom_init_scripts() { if [[ -n $(find "${KONG_INITSCRIPTS_DIR}/" -type f -regex ".*\.sh") ]]; then - info "Loading user's custom files from $KONG_INITSCRIPTS_DIR ..."; + info "Loading user's custom files from $KONG_INITSCRIPTS_DIR ..." local -r tmp_file="/tmp/filelist" kong_start_bg - find "${KONG_INITSCRIPTS_DIR}/" -type f -regex ".*\.sh" | sort > "$tmp_file" + find "${KONG_INITSCRIPTS_DIR}/" -type f -regex ".*\.sh" | sort >"$tmp_file" while read -r f; do case "$f" in - *.sh) - if [[ -x "$f" ]]; then - debug "Executing $f"; "$f" - else - debug "Sourcing $f"; . "$f" - fi - ;; - *) - debug "Ignoring $f" ;; + *.sh) + if [[ -x "$f" ]]; then + debug "Executing $f" + "$f" + else + debug "Sourcing $f" + . "$f" + fi + ;; + *) + debug "Ignoring $f" + ;; esac - done < $tmp_file + done <$tmp_file kong_stop rm -f "$tmp_file" else diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 72977e390271..2e250564c8a8 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r57`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r57/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r58`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r58/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From fa6658cf3c9117d7a40d7edb843059402ec354c8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 2 Dec 2021 13:20:41 +0000 Subject: [PATCH 853/950] 2.6.0-debian-10-r59 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 8a97267bad23..a1a1c521603d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r58" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r59" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2e250564c8a8..92acfccd21c6 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r58`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r58/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r59`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r59/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d2b14810f777435e975648bca9a1420728ef7444 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 3 Dec 2021 13:46:37 +0000 Subject: [PATCH 854/950] 2.6.0-debian-10-r60 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a1a1c521603d..f959e68cc923 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r59" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r60" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 92acfccd21c6..a5bb713ca672 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r59`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r59/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r60`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r60/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b63a048663a99e86bb067f4634cf3e9438dfc64b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 4 Dec 2021 14:11:48 +0000 Subject: [PATCH 855/950] 2.6.0-debian-10-r61 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index f959e68cc923..79a60e414bad 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r60" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r61" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a5bb713ca672..a1a149b1ad9d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r60`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r60/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r61`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r61/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 41df6d051f426e984c21d4b8c109036a4ed7f211 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 5 Dec 2021 14:36:34 +0000 Subject: [PATCH 856/950] 2.6.0-debian-10-r62 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 79a60e414bad..f23bf7be2b70 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r61" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r62" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a1a149b1ad9d..6b05bfcf45fb 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r61`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r61/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r62`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r62/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5537bb2ca7c2670772c1a666e0d22cec4dd0e2f5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 6 Dec 2021 15:04:44 +0000 Subject: [PATCH 857/950] 2.6.0-debian-10-r63 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index f23bf7be2b70..5c6ac2da5d00 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r62" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r63" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 6b05bfcf45fb..7040f99a0ae1 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r62`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r62/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r63`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r63/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f0de2663bdfac307494f1de4827f027ecd0abced Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 7 Dec 2021 15:30:25 +0000 Subject: [PATCH 858/950] 2.6.0-debian-10-r64 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 5c6ac2da5d00..5ee7741c1543 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r63" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r64" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7040f99a0ae1..f8216aa3e24b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r63`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r63/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r64`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r64/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 11bcc128016b8d676b33aed8b0818f925ec4fa2e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 8 Dec 2021 16:00:24 +0000 Subject: [PATCH 859/950] 2.6.0-debian-10-r65 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 5ee7741c1543..0b287195ad19 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r64" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r65" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f8216aa3e24b..9b9b42dd0836 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r64`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r64/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r65`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r65/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9bfcfb6f73bcc95c3c004396e97c01046033b9aa Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 9 Dec 2021 16:27:37 +0000 Subject: [PATCH 860/950] 2.6.0-debian-10-r66 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0b287195ad19..2d7d9c555b9f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r65" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r66" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9b9b42dd0836..e5c691673f99 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r65`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r65/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r66`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r66/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7fc69d520e430001060734579c6143fee5208bd3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 10 Dec 2021 18:11:32 +0000 Subject: [PATCH 861/950] 2.6.0-debian-10-r67 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../prebuildfs/opt/bitnami/scripts/libfs.sh | 14 ++++++++++---- bitnami/kong/README.md | 2 +- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 2d7d9c555b9f..62bd7ae7467a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r66" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r67" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh index b438c913341d..1b504b1df458 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh @@ -20,8 +20,13 @@ owned_by() { local path="${1:?path is missing}" local owner="${2:?owner is missing}" + local group="${3:-}" - chown "$owner":"$owner" "$path" + if [[ -n $group ]]; then + chown "$owner":"$group" "$path" + else + chown "$owner":"$owner" "$path" + fi } ######################## @@ -34,11 +39,12 @@ owned_by() { ######################### ensure_dir_exists() { local dir="${1:?directory is missing}" - local owner="${2:-}" + local owner_user="${2:-}" + local owner_group="${3:-}" mkdir -p "${dir}" - if [[ -n $owner ]]; then - owned_by "$dir" "$owner" + if [[ -n $owner_user ]]; then + owned_by "$dir" "$owner_user" "$owner_group" fi } diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e5c691673f99..56882b59c744 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r66`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r66/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r67`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r67/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 4275a23a3f7761ab5189da8b53c26838712fd673 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 11 Dec 2021 18:37:39 +0000 Subject: [PATCH 862/950] 2.6.0-debian-10-r68 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 62bd7ae7467a..526f377bdbb9 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r67" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r68" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 56882b59c744..3561ca3c78c9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r67`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r67/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r68`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r68/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From dc41c2ed239d2d2a8e01b50c48d22f91d8087e33 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 12 Dec 2021 19:03:58 +0000 Subject: [PATCH 863/950] 2.6.0-debian-10-r69 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 526f377bdbb9..c31e779b9b51 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r68" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r69" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 3561ca3c78c9..7f428ef41cce 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r68`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r68/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r69`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r69/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e88848b7ebddc85461fce0e518ab828d8b4fa373 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 13 Dec 2021 19:31:44 +0000 Subject: [PATCH 864/950] 2.6.0-debian-10-r70 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c31e779b9b51..4e0004153c04 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r69" \ + BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r70" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7f428ef41cce..23bb8236119c 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r69`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r69/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r70`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r70/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 06f56d6dd78e1fae696d489fbcd578a2bc6627b5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 29 Dec 2021 15:13:56 +0000 Subject: [PATCH 865/950] 2.7.0-debian-10-r0 release --- bitnami/kong/2/debian-10/Dockerfile | 4 +- .../opt/bitnami/.bitnami_components.json | 4 +- .../opt/bitnami/scripts/libcomponent.sh | 4 +- .../prebuildfs/opt/bitnami/scripts/libos.sh | 192 ++++++++++-------- .../opt/bitnami/scripts/libwebserver.sh | 4 + bitnami/kong/README.md | 2 +- 6 files changed, 116 insertions(+), 94 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 4e0004153c04..59d49fb3d2b3 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,14 +9,14 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.6.0-2" --checksum b9fa4198e926b5dfd13efb5b014f741602d0401be72c53a8afda269c4f9812ff +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.7.0-1" --checksum 98ab04a2c4fee9134369d58bc07c137ca1d6f37a0716fbf0ac69cd1bc5076e11 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-0" --checksum 3e6fc37ca073b10a73a804d39c2f0c028947a1a596382a4f8ebe43dfbaa3a25e RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.6.0-debian-10-r70" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 8be8b0c44527..447a18eec934 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "b9fa4198e926b5dfd13efb5b014f741602d0401be72c53a8afda269c4f9812ff", + "digest": "98ab04a2c4fee9134369d58bc07c137ca1d6f37a0716fbf0ac69cd1bc5076e11", "distro": "debian-10", "type": "NAMI", - "version": "2.6.0-2" + "version": "2.7.0-1" } } \ No newline at end of file diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libcomponent.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libcomponent.sh index 1d8c6bf24375..6fa65772008e 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libcomponent.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libcomponent.sh @@ -26,7 +26,7 @@ component_unpack() { local base_name="${name}-${version}-${OS_NAME}-${OS_ARCH}-${OS_FLAVOUR}" local package_sha256="" local directory="/opt/bitnami" - + # Validate arguments shift 2 while [ "$#" -gt 0 ]; do @@ -54,7 +54,7 @@ component_unpack() { rm "${CACHE_ROOT}/${base_name}.tar.gz.sha256" fi else - curl --remote-name --silent "${DOWNLOAD_URL}/${base_name}.tar.gz" + curl --remote-name --silent --show-error --fail "${DOWNLOAD_URL}/${base_name}.tar.gz" fi if [ -n "$package_sha256" ]; then echo "Verifying package integrity" diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh index 6bd564773acb..b6c50da90807 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libos.sh @@ -7,6 +7,7 @@ # Load Generic Libraries . /opt/bitnami/scripts/liblog.sh . /opt/bitnami/scripts/libfs.sh +. /opt/bitnami/scripts/libvalidations.sh # Functions @@ -53,17 +54,17 @@ ensure_group_exists() { shift 1 while [ "$#" -gt 0 ]; do case "$1" in - -i|--gid) - shift - gid="${1:?missing gid}" - ;; - -s|--system) - is_system_user=true - ;; - *) - echo "Invalid command line flag $1" >&2 - return 1 - ;; + -i | --gid) + shift + gid="${1:?missing gid}" + ;; + -s | --system) + is_system_user=true + ;; + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; esac shift done @@ -71,7 +72,7 @@ ensure_group_exists() { if ! group_exists "$group"; then local -a args=("$group") if [[ -n "$gid" ]]; then - if group_exists "$gid" ; then + if group_exists "$gid"; then error "The GID $gid is already in use." >&2 return 1 fi @@ -107,29 +108,29 @@ ensure_user_exists() { shift 1 while [ "$#" -gt 0 ]; do case "$1" in - -i|--uid) - shift - uid="${1:?missing uid}" - ;; - -g|--group) - shift - group="${1:?missing group}" - ;; - -a|--append-groups) - shift - append_groups="${1:?missing append_groups}" - ;; - -h|--home) - shift - home="${1:?missing home directory}" - ;; - -s|--system) - is_system_user=true - ;; - *) - echo "Invalid command line flag $1" >&2 - return 1 - ;; + -i | --uid) + shift + uid="${1:?missing uid}" + ;; + -g | --group) + shift + group="${1:?missing group}" + ;; + -a | --append-groups) + shift + append_groups="${1:?missing append_groups}" + ;; + -h | --home) + shift + home="${1:?missing home directory}" + ;; + -s | --system) + is_system_user=true + ;; + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; esac shift done @@ -137,7 +138,7 @@ ensure_user_exists() { if ! user_exists "$user"; then local -a user_args=("-N" "$user") if [[ -n "$uid" ]]; then - if user_exists "$uid" ; then + if user_exists "$uid"; then error "The UID $uid is already in use." return 1 fi @@ -157,7 +158,7 @@ ensure_user_exists() { if [[ -n "$append_groups" ]]; then local -a groups - read -ra groups <<< "$(tr ',;' ' ' <<< "$append_groups")" + read -ra groups <<<"$(tr ',;' ' ' <<<"$append_groups")" for group in "${groups[@]}"; do ensure_group_exists "$group" usermod -aG "$group" "$user" >/dev/null 2>&1 @@ -210,21 +211,22 @@ get_os_metadata() { ) } case "$flag_name" in - --id) - get_os_release_metadata ID - ;; - --version) - get_os_release_metadata VERSION_ID - ;; - --branch) - get_os_release_metadata VERSION_ID | sed 's/\..*//' - ;; - --codename) - get_os_release_metadata VERSION_CODENAME - ;; - *) - error "Unknown flag ${flag_name}" - return 1 + --id) + get_os_release_metadata ID + ;; + --version) + get_os_release_metadata VERSION_ID + ;; + --branch) + get_os_release_metadata VERSION_ID | sed 's/\..*//' + ;; + --codename) + get_os_release_metadata VERSION_CODENAME + ;; + *) + error "Unknown flag ${flag_name}" + return 1 + ;; esac } @@ -255,14 +257,14 @@ get_machine_size() { # Validate arguments while [[ "$#" -gt 0 ]]; do case "$1" in - --memory) - shift - memory="${1:?missing memory}" - ;; - *) - echo "Invalid command line flag $1" >&2 - return 1 - ;; + --memory) + shift + memory="${1:?missing memory}" + ;; + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; esac shift done @@ -314,7 +316,7 @@ convert_to_mb() { size="${BASH_REMATCH[1]}" unit="${BASH_REMATCH[2]}" if [[ "$unit" = "g" || "$unit" = "G" ]]; then - amount="$((size * 1024))" + amount="$((size * 1024))" else amount="$size" fi @@ -322,7 +324,6 @@ convert_to_mb() { echo "$amount" } - ######################### # Redirects output to /dev/null if debug mode is disabled # Globals: @@ -333,7 +334,7 @@ convert_to_mb() { # None ######################### debug_execute() { - if ${BITNAMI_DEBUG:-false}; then + if is_boolean_yes "${BITNAMI_DEBUG:-false}"; then "$@" else "$@" >/dev/null 2>&1 @@ -355,8 +356,8 @@ retry_while() { local sleep_time="${3:-5}" local return_value=1 - read -r -a command <<< "$cmd" - for ((i = 1 ; i <= retries ; i+=1 )); do + read -r -a command <<<"$cmd" + for ((i = 1; i <= retries; i += 1)); do "${command[@]}" && return_value=0 && break sleep "$sleep_time" done @@ -383,35 +384,36 @@ generate_random_string() { # Validate arguments while [[ "$#" -gt 0 ]]; do case "$1" in - -t|--type) - shift - type="$1" - ;; - -c|--count) - shift - count="$1" - ;; - *) - echo "Invalid command line flag $1" >&2 - return 1 - ;; + -t | --type) + shift + type="$1" + ;; + -c | --count) + shift + count="$1" + ;; + *) + echo "Invalid command line flag $1" >&2 + return 1 + ;; esac shift done # Validate type case "$type" in - ascii) - filter="[:print:]" - ;; - alphanumeric) - filter="a-zA-Z0-9" - ;; - numeric) - filter="0-9" - ;; - *) + ascii) + filter="[:print:]" + ;; + alphanumeric) + filter="a-zA-Z0-9" + ;; + numeric) + filter="0-9" + ;; + *) echo "Invalid type ${type}" >&2 return 1 + ;; esac # Obtain count + 10 lines from /dev/urandom to ensure that the resulting string has the expected size # Note there is a very small chance of strings starting with EOL character @@ -446,3 +448,19 @@ generate_sha_hash() { echo -n "$str" | "sha${algorithm}sum" | awk '{print $1}' } +######################## +# Converts a string to its hexadecimal representation +# Arguments: +# $1 - string +# Returns: +# hexadecimal representation of the string +######################### +convert_to_hex() { + local -r str=${1:?missing input string} + local -i iterator + local char + for ((iterator = 0; iterator < ${#str}; iterator++)); do + char=${str:iterator:1} + printf '%x' "'${char}" + done +} diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh index 459f99c7d1cd..503650210583 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh @@ -177,6 +177,8 @@ web_server_reload() { # --document-root - Path to document root directory # Apache-specific flags: # --apache-additional-configuration - Additional vhost configuration (no default) +# --apache-additional-http-configuration - Additional HTTP vhost configuration (no default) +# --apache-additional-https-configuration - Additional HTTPS vhost configuration (no default) # --apache-before-vhost-configuration - Configuration to add before the directive (no default) # --apache-allow-override - Whether to allow .htaccess files (only allowed when --move-htaccess is set to 'no' and type is not defined) # --apache-extra-directory-configuration - Extra configuration for the document root directory @@ -224,6 +226,8 @@ ensure_web_server_app_configuration_exists() { # Specific Apache flags --apache-additional-configuration \ + | --apache-additional-http-configuration \ + | --apache-additional-https-configuration \ | --apache-before-vhost-configuration \ | --apache-allow-override \ | --apache-extra-directory-configuration \ diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 23bb8236119c..1b3fe425248b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.6.0`, `2.6.0-debian-10-r70`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.6.0-debian-10-r70/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 4a07cfa3d5cb046ac91ecdc8ee54638d7d803e9c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 30 Dec 2021 15:33:28 +0000 Subject: [PATCH 866/950] 2.7.0-debian-10-r1 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 59d49fb3d2b3..9c28fa03425a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1b3fe425248b..a5fabf14a898 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r0/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r1/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5662dbdd413957b9c5e8adc41be2bf23af2e1c19 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 31 Dec 2021 15:56:28 +0000 Subject: [PATCH 867/950] 2.7.0-debian-10-r2 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 9c28fa03425a..a47849544749 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a5fabf14a898..e655c6a80110 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r1/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r2/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 04cf6f18b340281e387bf7794290e757af09881d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 1 Jan 2022 16:16:33 +0000 Subject: [PATCH 868/950] 2.7.0-debian-10-r3 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a47849544749..038cc64aeaab 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e655c6a80110..1979e16d3108 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r2/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r3/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). @@ -310,7 +310,7 @@ If you encountered a problem running this container, you can file an [issue](htt ## License -Copyright (c) 2021 Bitnami +Copyright (c) 2022 Bitnami Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. From 2329c93472f092423f5c585aa1f4b2aa41ffd64d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 2 Jan 2022 16:37:16 +0000 Subject: [PATCH 869/950] 2.7.0-debian-10-r4 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 038cc64aeaab..6e4ea4154177 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1979e16d3108..24e2a5ae2fe2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r3/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r4/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f7addaaadad597a1369c3077ac44afd8ec8064c0 Mon Sep 17 00:00:00 2001 From: Carlos Rodriguez Hernandez Date: Mon, 3 Jan 2022 07:27:58 +0000 Subject: [PATCH 870/950] Update year in LICENSE file --- bitnami/kong/LICENSE | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 bitnami/kong/LICENSE diff --git a/bitnami/kong/LICENSE b/bitnami/kong/LICENSE deleted file mode 100644 index c850fde34074..000000000000 --- a/bitnami/kong/LICENSE +++ /dev/null @@ -1,13 +0,0 @@ -Copyright (c) 2015-2021 Bitnami - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. From 4b3a59afb251baa3f12fad19f9973fc4b0e7060c Mon Sep 17 00:00:00 2001 From: Carlos Rodriguez Hernandez Date: Mon, 3 Jan 2022 07:38:47 +0000 Subject: [PATCH 871/950] Update year in LICENSE and rename file --- bitnami/kong/LICENSE.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 bitnami/kong/LICENSE.md diff --git a/bitnami/kong/LICENSE.md b/bitnami/kong/LICENSE.md new file mode 100644 index 000000000000..cdc8ab40132d --- /dev/null +++ b/bitnami/kong/LICENSE.md @@ -0,0 +1,13 @@ +Copyright © 2022 Bitnami + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. From 2ad632ccc5999fd1b8fff97e74311fca555d83b5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 4 Jan 2022 00:35:20 +0000 Subject: [PATCH 872/950] 2.7.0-debian-10-r5 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 6e4ea4154177..7ef385e3aad0 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 24e2a5ae2fe2..284b8fb4689d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r4/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r5/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). @@ -310,7 +310,7 @@ If you encountered a problem running this container, you can file an [issue](htt ## License -Copyright (c) 2022 Bitnami +Copyright © 2022 Bitnami Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. From c52f32c086c3bfcb416ddeb854599cc75cf862a8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 5 Jan 2022 00:57:40 +0000 Subject: [PATCH 873/950] 2.7.0-debian-10-r6 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../2/debian-10/prebuildfs/opt/bitnami/scripts/libcomponent.sh | 2 +- bitnami/kong/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 7ef385e3aad0..2a73733f5ee4 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libcomponent.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libcomponent.sh index 6fa65772008e..94abe7e64562 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libcomponent.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libcomponent.sh @@ -58,7 +58,7 @@ component_unpack() { fi if [ -n "$package_sha256" ]; then echo "Verifying package integrity" - echo "$package_sha256 ${base_name}.tar.gz" | sha256sum --check - + echo "$package_sha256 ${base_name}.tar.gz" | sha256sum --check - || exit "$?" fi tar --directory "${directory}" --extract --gunzip --file "${base_name}.tar.gz" --no-same-owner --strip-components=2 "${base_name}/files/" rm "${base_name}.tar.gz" diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 284b8fb4689d..2cda27e0ecb2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r5/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r6/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 764e0fab49f61415f3a9b12f7b8ac6614f85b916 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 6 Jan 2022 05:03:42 +0000 Subject: [PATCH 874/950] 2.7.0-debian-10-r7 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 2a73733f5ee4..1c9114346690 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2cda27e0ecb2..486c2214d2a2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r6/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r7/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 2455d982fa3965c41248719190e1ad18a346e5c3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 7 Jan 2022 05:27:52 +0000 Subject: [PATCH 875/950] 2.7.0-debian-10-r8 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 1c9114346690..c3c1f9c7f3c9 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 486c2214d2a2..e433cb02fb28 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r7/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r8/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 948ff85ff899a5e7f62b56b944655b6599723df1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 9 Jan 2022 00:48:40 +0000 Subject: [PATCH 876/950] 2.7.0-debian-10-r9 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c3c1f9c7f3c9..d021712d2a5a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e433cb02fb28..71b7f6d475e6 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r8/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r9/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 7422c10ec89c367b2ed9ae3af96a9cc6d06eabfd Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 10 Jan 2022 01:12:09 +0000 Subject: [PATCH 877/950] 2.7.0-debian-10-r10 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index d021712d2a5a..4abc1630988b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r10" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 71b7f6d475e6..c9df9fbd137b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r9/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r10/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b1ed7405fcd96fd6cd3e5395199018a5ec33802f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 10 Jan 2022 12:01:27 +0000 Subject: [PATCH 878/950] 2.7.0-debian-10-r11 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 4abc1630988b..c5c0f217a425 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r10" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r11" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c9df9fbd137b..8d89c1ef84a0 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r10/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r11/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d183fafda6821d766abbd04b72ac902c9e2d17a6 Mon Sep 17 00:00:00 2001 From: Carlos Rodriguez Hernandez Date: Mon, 10 Jan 2022 18:09:32 +0000 Subject: [PATCH 879/950] Update issue template --- bitnami/kong/.github/ISSUE_TEMPLATE.md | 40 +------------------------- 1 file changed, 1 insertion(+), 39 deletions(-) diff --git a/bitnami/kong/.github/ISSUE_TEMPLATE.md b/bitnami/kong/.github/ISSUE_TEMPLATE.md index da2b4da33fde..91afdfd82d31 100644 --- a/bitnami/kong/.github/ISSUE_TEMPLATE.md +++ b/bitnami/kong/.github/ISSUE_TEMPLATE.md @@ -1,20 +1,3 @@ - - **Description** @@ -33,28 +16,7 @@ You do NOT have to include this information if this is a FEATURE REQUEST -**Additional information you deem important (e.g. issue happens only occasionally):** +**Additional information you deem important (e.g. issue happens only occasionally, environment details, etc.):** -**Version** - -- Output of `docker version`: - -``` -(paste your output here) -``` - -- Output of `docker info`: - -``` -(paste your output here) -``` - -- Output of `docker-compose version` (if applicable): - -``` -(paste your output here) -``` - -**Additional environment details (AWS, VirtualBox, Docker for MAC, physical, etc.):** From 46f2f4682142f8bde2a976eae2d28d2c2bb1e1ed Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 12 Jan 2022 05:49:45 +0000 Subject: [PATCH 880/950] 2.7.0-debian-10-r12 release --- bitnami/kong/2/debian-10/Dockerfile | 6 +++--- .../prebuildfs/opt/bitnami/.bitnami_components.json | 8 ++++---- bitnami/kong/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c5c0f217a425..96db38cfc718 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,14 +9,14 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.7.0-1" --checksum 98ab04a2c4fee9134369d58bc07c137ca1d6f37a0716fbf0ac69cd1bc5076e11 -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-0" --checksum 3e6fc37ca073b10a73a804d39c2f0c028947a1a596382a4f8ebe43dfbaa3a25e +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.7.0-2" --checksum c334a6abd8ea893e7d865cd2844ddf015a5ec0459a825b4e56530666aa613779 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-1" --checksum 16f1a317859b06ae82e816b30f98f28b4707d18fe6cc3881bff535192a7715dc RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r11" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r12" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 447a18eec934..f7db99474744 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,16 +1,16 @@ { "gosu": { "arch": "amd64", - "digest": "3e6fc37ca073b10a73a804d39c2f0c028947a1a596382a4f8ebe43dfbaa3a25e", + "digest": "16f1a317859b06ae82e816b30f98f28b4707d18fe6cc3881bff535192a7715dc", "distro": "debian-10", "type": "NAMI", - "version": "1.14.0-0" + "version": "1.14.0-1" }, "kong": { "arch": "amd64", - "digest": "98ab04a2c4fee9134369d58bc07c137ca1d6f37a0716fbf0ac69cd1bc5076e11", + "digest": "c334a6abd8ea893e7d865cd2844ddf015a5ec0459a825b4e56530666aa613779", "distro": "debian-10", "type": "NAMI", - "version": "2.7.0-1" + "version": "2.7.0-2" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 8d89c1ef84a0..7467b7d9a23f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r11/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r12/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5fa62a3d2960835f8e6ab68dede45a056e78e13d Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 13 Jan 2022 06:16:37 +0000 Subject: [PATCH 881/950] 2.7.0-debian-10-r13 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 96db38cfc718..465383447c87 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r12" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r13" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7467b7d9a23f..c59878dffce5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r12/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r13/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 4b1d27a8cd581f1951953a3494dd976a26aa78a2 Mon Sep 17 00:00:00 2001 From: Carlos Rodriguez Hernandez Date: Thu, 13 Jan 2022 15:21:40 +0000 Subject: [PATCH 882/950] Update CONTRIBUTING.md guidelines Signed-off-by: Carlos Rodriguez Hernandez --- bitnami/kong/CONTRIBUTING.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/bitnami/kong/CONTRIBUTING.md b/bitnami/kong/CONTRIBUTING.md index b4270435b0c6..4f5ce693ec65 100644 --- a/bitnami/kong/CONTRIBUTING.md +++ b/bitnami/kong/CONTRIBUTING.md @@ -17,6 +17,31 @@ When submitting a PR make sure that: - The title of the PR is clear enough. - If necessary, add information to the repository's `README.md`. +#### Sign Your Work + +The sign-off is a simple line at the end of the explanation for a commit. All commits needs to be signed. Your signature certifies that you wrote the patch or otherwise have the right to contribute the material. The rules are pretty simple, you only need to certify the guidelines from [developercertificate.org](https://developercertificate.org/). + +Then you just add a line to every git commit message: + + Signed-off-by: Joe Smith + +Use your real name (sorry, no pseudonyms or anonymous contributions.) + +If you set your `user.name` and `user.email` git configs, you can sign your commit automatically with `git commit -s`. + +Note: If your git config information is set properly then viewing the `git log` information for your commit will look something like this: + +``` +Author: Joe Smith +Date: Thu Feb 2 11:41:15 2018 -0800 + + Update README + + Signed-off-by: Joe Smith +``` + +Notice the `Author` and `Signed-off-by` lines match. If they don't your PR will be rejected by the automated DCO check. + ### PR Approval and Release Process 1. Changes are manually reviewed by Bitnami team members usually within a business day. From a2d385f945658df80dd3559ee2a30891325b0ae7 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 14 Jan 2022 06:50:51 +0000 Subject: [PATCH 883/950] 2.7.0-debian-10-r14 release --- bitnami/kong/2/debian-10/Dockerfile | 4 +++- bitnami/kong/README.md | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 465383447c87..adfd46e74720 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -11,12 +11,14 @@ COPY prebuildfs / RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.7.0-2" --checksum c334a6abd8ea893e7d865cd2844ddf015a5ec0459a825b4e56530666aa613779 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-1" --checksum 16f1a317859b06ae82e816b30f98f28b4707d18fe6cc3881bff535192a7715dc +RUN apt-get update && apt-get upgrade -y && \ + rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r13" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r14" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c59878dffce5..2f8150ef9c92 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r13/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r14/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0e8cacb1ba7c61678adfad6763c4b61f9339ac0b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 15 Jan 2022 07:15:24 +0000 Subject: [PATCH 884/950] 2.7.0-debian-10-r15 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index adfd46e74720..a136d95692ba 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r14" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r15" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2f8150ef9c92..c4b875df26c2 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r14/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r15/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 52f6aa3c63cf973de2016ffaa31231a0cf6810e1 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 16 Jan 2022 07:41:24 +0000 Subject: [PATCH 885/950] 2.7.0-debian-10-r16 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a136d95692ba..6e5bdc88dcb6 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r15" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r16" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index c4b875df26c2..0b6eadb32fe9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r15/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r16/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 4da93071151a5d3b883d98a304f68ac955139dc3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 17 Jan 2022 08:15:31 +0000 Subject: [PATCH 886/950] 2.7.0-debian-10-r17 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 6e5bdc88dcb6..9e5cacbbc9b5 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r16" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r17" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0b6eadb32fe9..048d3e4fc758 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r16/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r17/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 38807a84631cf94bfc4e6114225bf8ff582c46f7 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 18 Jan 2022 08:40:36 +0000 Subject: [PATCH 887/950] 2.7.0-debian-10-r18 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 9e5cacbbc9b5..7e71dfd95d54 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r17" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r18" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 048d3e4fc758..a0b69623b665 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r17/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r18/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 6af65a3407d115a99a3ee436456497183f8457da Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 19 Jan 2022 09:10:04 +0000 Subject: [PATCH 888/950] 2.7.0-debian-10-r19 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 7e71dfd95d54..f78ddfdb15c3 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r18" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r19" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a0b69623b665..f53094da446b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r18/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r19/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f5ecfc91e9a8db6a8d90eaabdb3f3e271053ecdf Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 19 Jan 2022 13:25:38 +0000 Subject: [PATCH 889/950] 2.7.0-debian-10-r20 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index f78ddfdb15c3..22a63e7ea75e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r19" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r20" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f53094da446b..7c81c289c6e3 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r19/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r20/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 305d60f67e775a25f5e04221623b7ef4f3c3d7ed Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 20 Jan 2022 13:55:55 +0000 Subject: [PATCH 890/950] 2.7.0-debian-10-r21 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 22a63e7ea75e..c03364c1104a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r20" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r21" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7c81c289c6e3..7880c204f553 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r20/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r21/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From dd5ff7d4fced346cdc566e888024b6fccd2c0090 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 21 Jan 2022 07:03:25 +0000 Subject: [PATCH 891/950] 2.7.0-debian-10-r22 release --- bitnami/kong/2/debian-10/Dockerfile | 6 +++--- .../prebuildfs/opt/bitnami/.bitnami_components.json | 8 ++++---- bitnami/kong/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c03364c1104a..a31e819bf6c0 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,8 +9,8 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.7.0-2" --checksum c334a6abd8ea893e7d865cd2844ddf015a5ec0459a825b4e56530666aa613779 -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-1" --checksum 16f1a317859b06ae82e816b30f98f28b4707d18fe6cc3881bff535192a7715dc +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.7.0-3" --checksum 6c7b95760215aa35b0d351e5748d17fae8c7a74835db7d6eecb2e52fdb526d4e +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-2" --checksum 7419bc5e2be68eb14c92e321acc843413481cda73323fb8c0d1dda8b1e5aa9d5 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r21" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r22" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index f7db99474744..fb864c034889 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,16 +1,16 @@ { "gosu": { "arch": "amd64", - "digest": "16f1a317859b06ae82e816b30f98f28b4707d18fe6cc3881bff535192a7715dc", + "digest": "7419bc5e2be68eb14c92e321acc843413481cda73323fb8c0d1dda8b1e5aa9d5", "distro": "debian-10", "type": "NAMI", - "version": "1.14.0-1" + "version": "1.14.0-2" }, "kong": { "arch": "amd64", - "digest": "c334a6abd8ea893e7d865cd2844ddf015a5ec0459a825b4e56530666aa613779", + "digest": "6c7b95760215aa35b0d351e5748d17fae8c7a74835db7d6eecb2e52fdb526d4e", "distro": "debian-10", "type": "NAMI", - "version": "2.7.0-2" + "version": "2.7.0-3" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7880c204f553..573e91224966 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r21/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r22`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r22/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c1a49cc6061bd144614aad6ece437beee882d010 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 21 Jan 2022 14:20:17 +0000 Subject: [PATCH 892/950] 2.7.0-debian-10-r23 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a31e819bf6c0..0aca0605683b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.7.0-3" --checksum 6c7b95760215aa35b0d351e5748d17fae8c7a74835db7d6eecb2e52fdb526d4e +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.7.0-4" --checksum 029e9ed2a43c7e3fea32578aa26515d2fb9c206cb1a803cc1d845dab6b131a25 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-2" --checksum 7419bc5e2be68eb14c92e321acc843413481cda73323fb8c0d1dda8b1e5aa9d5 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r22" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r23" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index fb864c034889..1f1f17db31dd 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "6c7b95760215aa35b0d351e5748d17fae8c7a74835db7d6eecb2e52fdb526d4e", + "digest": "029e9ed2a43c7e3fea32578aa26515d2fb9c206cb1a803cc1d845dab6b131a25", "distro": "debian-10", "type": "NAMI", - "version": "2.7.0-3" + "version": "2.7.0-4" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 573e91224966..424006cf81be 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r22`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r22/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r23`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r23/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From eb62d7bcc40b45ca8b98941ea0ecb4e5f9f03cb8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 22 Jan 2022 14:46:57 +0000 Subject: [PATCH 893/950] 2.7.0-debian-10-r24 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0aca0605683b..e79c2c291373 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r23" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r24" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 424006cf81be..a478ba8ae4f0 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r23`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r23/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r24`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r24/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 51014e3b48d156d5198cbad3da9d773287f00c4b Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 23 Jan 2022 15:15:02 +0000 Subject: [PATCH 894/950] 2.7.0-debian-10-r25 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index e79c2c291373..d70f636bd4f0 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r24" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r25" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a478ba8ae4f0..2e40be92c577 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r24`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r24/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r25`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r25/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 25684129afd1cce334c08892344a62c7f2732bf9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 25 Jan 2022 02:26:37 +0000 Subject: [PATCH 895/950] 2.7.0-debian-10-r26 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index d70f636bd4f0..ba17391d46e9 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.7.0-4" --checksum 029e9ed2a43c7e3fea32578aa26515d2fb9c206cb1a803cc1d845dab6b131a25 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.7.0-5" --checksum ceea363e0c33687b4b4b2407ad22dc7b197537ec596fcdcd7459d184a8d3b760 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-2" --checksum 7419bc5e2be68eb14c92e321acc843413481cda73323fb8c0d1dda8b1e5aa9d5 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r25" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r26" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 1f1f17db31dd..dd323e67c772 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "029e9ed2a43c7e3fea32578aa26515d2fb9c206cb1a803cc1d845dab6b131a25", + "digest": "ceea363e0c33687b4b4b2407ad22dc7b197537ec596fcdcd7459d184a8d3b760", "distro": "debian-10", "type": "NAMI", - "version": "2.7.0-4" + "version": "2.7.0-5" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 2e40be92c577..d7e5775e2c5d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r25`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r25/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r26`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r26/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ad89b732bf576317c20302c13839cf20d5f4240f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 25 Jan 2022 08:16:20 +0000 Subject: [PATCH 896/950] 2.7.0-debian-10-r28 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index ba17391d46e9..0c470890f693 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -10,7 +10,7 @@ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.7.0-5" --checksum ceea363e0c33687b4b4b2407ad22dc7b197537ec596fcdcd7459d184a8d3b760 -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-2" --checksum 7419bc5e2be68eb14c92e321acc843413481cda73323fb8c0d1dda8b1e5aa9d5 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-3" --checksum 276ab5a0be4b05e136ec468d62c8f9cc4f40d9664c55f01f16a9f1209ba16980 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r26" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r28" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index dd323e67c772..3458830f761e 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,10 +1,10 @@ { "gosu": { "arch": "amd64", - "digest": "7419bc5e2be68eb14c92e321acc843413481cda73323fb8c0d1dda8b1e5aa9d5", + "digest": "276ab5a0be4b05e136ec468d62c8f9cc4f40d9664c55f01f16a9f1209ba16980", "distro": "debian-10", "type": "NAMI", - "version": "1.14.0-2" + "version": "1.14.0-3" }, "kong": { "arch": "amd64", diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index d7e5775e2c5d..e788a9038539 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r26`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r26/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r28`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r28/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 64a8bc1da7e24b32516161906b8f4e4bd0823577 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 26 Jan 2022 08:50:16 +0000 Subject: [PATCH 897/950] 2.7.0-debian-10-r29 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0c470890f693..de68352e550e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r28" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r29" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index e788a9038539..a31f91674457 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r28`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r28/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r29`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r29/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0aca94ef1809f8291fc666c3c472b06ea7748f60 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 27 Jan 2022 09:16:48 +0000 Subject: [PATCH 898/950] 2.7.0-debian-10-r30 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index de68352e550e..c178ef2fc85d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r29" \ + BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r30" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a31f91674457..a2be13335f64 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r29`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r29/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r30`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r30/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 016a03b6a58e37211f834c6b3b111a5f637ae5bd Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 27 Jan 2022 22:05:13 +0000 Subject: [PATCH 899/950] 2.7.1-debian-10-r0 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c178ef2fc85d..ff5074d6c4e1 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.7.0-5" --checksum ceea363e0c33687b4b4b2407ad22dc7b197537ec596fcdcd7459d184a8d3b760 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.7.1-0" --checksum aa10e2e396ae77e64587875f2d70eecb274efd3f92a7aa21cb0bb41f2e4d1595 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-3" --checksum 276ab5a0be4b05e136ec468d62c8f9cc4f40d9664c55f01f16a9f1209ba16980 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.0-debian-10-r30" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 3458830f761e..b2a105e8b4ac 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "ceea363e0c33687b4b4b2407ad22dc7b197537ec596fcdcd7459d184a8d3b760", + "digest": "aa10e2e396ae77e64587875f2d70eecb274efd3f92a7aa21cb0bb41f2e4d1595", "distro": "debian-10", "type": "NAMI", - "version": "2.7.0-5" + "version": "2.7.1-0" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a2be13335f64..8b0104ca3d15 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.0`, `2.7.0-debian-10-r30`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.0-debian-10-r30/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 105e7da40bcedead323b0b2f6026be9e430da9f6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 28 Jan 2022 22:31:02 +0000 Subject: [PATCH 900/950] 2.7.1-debian-10-r1 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index ff5074d6c4e1..bc921cb2b87f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 8b0104ca3d15..375d7d2c39fd 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r0/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r1/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 490754d6f333b26b43d53cf4399b8eed387fbbe3 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 29 Jan 2022 22:58:43 +0000 Subject: [PATCH 901/950] 2.7.1-debian-10-r2 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index bc921cb2b87f..1b1a9ebd8dd5 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 375d7d2c39fd..7788bbb8bf6e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r1/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r2/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 1d8b4375f96257b80fe17122d419d476d8cb3ce4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 30 Jan 2022 23:27:12 +0000 Subject: [PATCH 902/950] 2.7.1-debian-10-r3 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 1b1a9ebd8dd5..ed0f4b627a6a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7788bbb8bf6e..60a414e0702f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r2/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r3/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 6e6fc71cbcf712c1285fe735ccee1ae06b226180 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 31 Jan 2022 23:59:14 +0000 Subject: [PATCH 903/950] 2.7.1-debian-10-r4 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index ed0f4b627a6a..d33921e6b701 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 60a414e0702f..127e5a3a113f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r3/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r4/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0e640640c3f6f9c252eee0fc1528145ba352b767 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 2 Feb 2022 00:26:37 +0000 Subject: [PATCH 904/950] 2.7.1-debian-10-r5 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index d33921e6b701..4c9629d724f4 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 127e5a3a113f..bd404a275d7a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r4/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r5/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 475a0f303fc620a483b1f2c635700b263a83d443 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 2 Feb 2022 16:29:33 +0000 Subject: [PATCH 905/950] 2.7.1-debian-10-r6 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 4c9629d724f4..2432ee907e0f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r5" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index bd404a275d7a..26e7d9535d18 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r5/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r6/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ec2d8039a68868a05e434ff12c2c9c26b230d5f0 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 3 Feb 2022 08:51:02 +0000 Subject: [PATCH 906/950] 2.7.1-debian-10-r7 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../2/debian-10/prebuildfs/opt/bitnami/scripts/libcomponent.sh | 2 +- bitnami/kong/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 2432ee907e0f..4f518655624d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libcomponent.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libcomponent.sh index 94abe7e64562..e3098a93b7c0 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libcomponent.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libcomponent.sh @@ -60,6 +60,6 @@ component_unpack() { echo "Verifying package integrity" echo "$package_sha256 ${base_name}.tar.gz" | sha256sum --check - || exit "$?" fi - tar --directory "${directory}" --extract --gunzip --file "${base_name}.tar.gz" --no-same-owner --strip-components=2 "${base_name}/files/" + tar --directory "${directory}" --extract --gunzip --file "${base_name}.tar.gz" --no-same-owner --strip-components=2 rm "${base_name}.tar.gz" } diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 26e7d9535d18..4079047651bf 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r6/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r7/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From fb5e4590ce6413ce538f8b080ed8acba732a10f6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 4 Feb 2022 09:23:25 +0000 Subject: [PATCH 907/950] 2.7.1-debian-10-r8 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 4f518655624d..ce9146e5dac2 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4079047651bf..3b86850c1542 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r7/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r8/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 85d8db295257918c459335fdc14fcd1fcd6a80c6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 5 Feb 2022 09:56:41 +0000 Subject: [PATCH 908/950] 2.7.1-debian-10-r9 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index ce9146e5dac2..436b51795910 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 3b86850c1542..8ec1676e895f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r8/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r9/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b7fa1cad519bf068ee0c476e5b1b903a6f814cad Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 6 Feb 2022 10:27:20 +0000 Subject: [PATCH 909/950] 2.7.1-debian-10-r10 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 436b51795910..3c1dc751089e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r10" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 8ec1676e895f..0fb851d2232d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r9/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r10/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From c621b94103e36b097a6b2dcc9f6703ce3bf5beb8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 7 Feb 2022 10:57:22 +0000 Subject: [PATCH 910/950] 2.7.1-debian-10-r11 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 3c1dc751089e..37cfbda1a2b3 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r10" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r11" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0fb851d2232d..f8531c498504 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r10/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r11/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 250dd8ea4ee1660a3e846f2e77fdd2a1ccca1d59 Mon Sep 17 00:00:00 2001 From: Carlos Rodriguez Hernandez Date: Mon, 7 Feb 2022 14:02:14 +0000 Subject: [PATCH 911/950] Change issue/bug template Signed-off-by: Carlos Rodriguez Hernandez --- bitnami/kong/.github/ISSUE_TEMPLATE.md | 22 ---------- .../.github/ISSUE_TEMPLATE/bug_report.yml | 41 +++++++++++++++++++ .../kong/.github/ISSUE_TEMPLATE/config.yml | 1 + .../ISSUE_TEMPLATE/feature_request.yml | 29 +++++++++++++ 4 files changed, 71 insertions(+), 22 deletions(-) delete mode 100644 bitnami/kong/.github/ISSUE_TEMPLATE.md create mode 100644 bitnami/kong/.github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 bitnami/kong/.github/ISSUE_TEMPLATE/config.yml create mode 100644 bitnami/kong/.github/ISSUE_TEMPLATE/feature_request.yml diff --git a/bitnami/kong/.github/ISSUE_TEMPLATE.md b/bitnami/kong/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index 91afdfd82d31..000000000000 --- a/bitnami/kong/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,22 +0,0 @@ -**Description** - - - -**Steps to reproduce the issue:** - -1. [First Step] -2. [Second Step] -3. [and so on...] - -**Describe the results you received:** - - - -**Describe the results you expected:** - - - -**Additional information you deem important (e.g. issue happens only occasionally, environment details, etc.):** - - - diff --git a/bitnami/kong/.github/ISSUE_TEMPLATE/bug_report.yml b/bitnami/kong/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 000000000000..658fc40d2d6e --- /dev/null +++ b/bitnami/kong/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,41 @@ +name: 🐞 Bug +description: Create a report to help us improve +body: + - type: markdown + attributes: + value: | + Thank you for reporting an issue. Before you open the bug report please review the README file present in the root of this repository. + + Please fill in as much of the following form as you're able. + - type: input + attributes: + label: Name and Version + description: Name and version of the affected container image + placeholder: bitnami/wordpress:1.2.3 + validations: + required: true + - type: textarea + attributes: + label: What steps will reproduce the bug? + description: Enter details about your bug. + placeholder: | + 1. In this environment... + 2. With this config... + 3. Run '...' + 4. See error... + validations: + required: true + - type: textarea + attributes: + label: What is the expected behavior? + description: If possible please provide textual output instead of screenshots. + - type: textarea + attributes: + label: What do you see instead? + description: If possible please provide textual output instead of screenshots. + validations: + required: true + - type: textarea + attributes: + label: Additional information + description: Tell us anything else you think we should know. diff --git a/bitnami/kong/.github/ISSUE_TEMPLATE/config.yml b/bitnami/kong/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000000..3ba13e0cec6c --- /dev/null +++ b/bitnami/kong/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false diff --git a/bitnami/kong/.github/ISSUE_TEMPLATE/feature_request.yml b/bitnami/kong/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 000000000000..7c812014aa08 --- /dev/null +++ b/bitnami/kong/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,29 @@ +name: "\U0001F680 Feature request" +description: Suggest an idea for this project +body: + - type: markdown + attributes: + value: | + Thank you for suggesting an idea to improve this Bitnami container image. + Please fill in as much of the following form as you're able. + - type: input + attributes: + label: Name and Version + description: Name and version of the affected container image + placeholder: bitnami/wordpress:1.2.3 + validations: + required: true + - type: textarea + attributes: + label: What is the problem this feature will solve? + validations: + required: true + - type: textarea + attributes: + label: What is the feature you are proposing to solve the problem? + description: Describe the requests. If you already have something in mind... PRs are welcome! + validations: + required: true + - type: textarea + attributes: + label: What alternatives have you considered? From 0d38e19fedb93219fa3a49235fd72bddb3792e0f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 8 Feb 2022 11:28:09 +0000 Subject: [PATCH 912/950] 2.7.1-debian-10-r12 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 37cfbda1a2b3..c34a08a75bf0 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r11" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r12" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f8531c498504..affb1db1eccf 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r11/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r12/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From d645eb12ca9119678244064fc22c1562dc330041 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 9 Feb 2022 11:58:54 +0000 Subject: [PATCH 913/950] 2.7.1-debian-10-r13 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c34a08a75bf0..a8648fdd0abb 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r12" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r13" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index affb1db1eccf..78c65a152675 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r12/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r13/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 767e06b9f210732071c11ac5c2f9e8a4718f30f2 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 10 Feb 2022 12:28:01 +0000 Subject: [PATCH 914/950] 2.7.1-debian-10-r14 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a8648fdd0abb..b45c3ffc953f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r13" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r14" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 78c65a152675..59c8e014473a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r13/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r14/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 4e41e484c60a87d7871cca48c43c3d9f437c99d9 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 12 Feb 2022 01:08:42 +0000 Subject: [PATCH 915/950] 2.7.1-debian-10-r15 release --- bitnami/kong/2/debian-10/Dockerfile | 6 +++--- .../prebuildfs/opt/bitnami/.bitnami_components.json | 8 ++++---- bitnami/kong/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index b45c3ffc953f..4608918b0608 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,8 +9,8 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.7.1-0" --checksum aa10e2e396ae77e64587875f2d70eecb274efd3f92a7aa21cb0bb41f2e4d1595 -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-3" --checksum 276ab5a0be4b05e136ec468d62c8f9cc4f40d9664c55f01f16a9f1209ba16980 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.7.1-2" --checksum 75c06b867e8e015ccbc766e469a4c4156bb10bde6d2426c50c5c73a5d4699db1 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-4" --checksum ec62006ece7e0b49c65926e458ba2b71d6d251552118b1378840b1803dbb3d53 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r14" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r15" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index b2a105e8b4ac..dde71df04399 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,16 +1,16 @@ { "gosu": { "arch": "amd64", - "digest": "276ab5a0be4b05e136ec468d62c8f9cc4f40d9664c55f01f16a9f1209ba16980", + "digest": "ec62006ece7e0b49c65926e458ba2b71d6d251552118b1378840b1803dbb3d53", "distro": "debian-10", "type": "NAMI", - "version": "1.14.0-3" + "version": "1.14.0-4" }, "kong": { "arch": "amd64", - "digest": "aa10e2e396ae77e64587875f2d70eecb274efd3f92a7aa21cb0bb41f2e4d1595", + "digest": "75c06b867e8e015ccbc766e469a4c4156bb10bde6d2426c50c5c73a5d4699db1", "distro": "debian-10", "type": "NAMI", - "version": "2.7.1-0" + "version": "2.7.1-2" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 59c8e014473a..f01388c18249 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r14/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r15/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From a8196c319c548c97ef426219259004db8141504e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 13 Feb 2022 01:37:04 +0000 Subject: [PATCH 916/950] 2.7.1-debian-10-r16 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 4608918b0608..344c74e41fc8 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r15" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r16" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f01388c18249..4273c94c6ca4 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r15/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r16/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 96d8a95fa3b50185d6f6402cb6c5585f90bb788f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 14 Feb 2022 02:05:28 +0000 Subject: [PATCH 917/950] 2.7.1-debian-10-r17 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 344c74e41fc8..9dc14c1f1d1d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r16" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r17" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4273c94c6ca4..7b9bca3bae2c 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r16/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r17/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 3a8e0eafa014eb6de8adf55f6ce047e599172064 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 15 Feb 2022 02:32:12 +0000 Subject: [PATCH 918/950] 2.7.1-debian-10-r18 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 9dc14c1f1d1d..edfede8f09bf 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r17" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r18" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 7b9bca3bae2c..1a6525977383 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r17/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r18/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e8b88840dc8821b798beb22345d3e544eb1899b4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 16 Feb 2022 13:51:31 +0000 Subject: [PATCH 919/950] 2.7.1-debian-10-r19 release --- bitnami/kong/2/debian-10/Dockerfile | 6 +++--- .../prebuildfs/opt/bitnami/.bitnami_components.json | 8 ++++---- bitnami/kong/README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index edfede8f09bf..2d3919dd4602 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,8 +9,8 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.7.1-2" --checksum 75c06b867e8e015ccbc766e469a4c4156bb10bde6d2426c50c5c73a5d4699db1 -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-4" --checksum ec62006ece7e0b49c65926e458ba2b71d6d251552118b1378840b1803dbb3d53 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.7.1-3" --checksum a68b0bf33c318cbdc6c461be10728de2621b9bb982e17373821311e04f5bddab +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-5" --checksum 6f8fd2267481ffbe899a7f93b7b3076cd78dd70b7b9835bed79414932a749664 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r18" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r19" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index dde71df04399..1dcad53ff8b4 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,16 +1,16 @@ { "gosu": { "arch": "amd64", - "digest": "ec62006ece7e0b49c65926e458ba2b71d6d251552118b1378840b1803dbb3d53", + "digest": "6f8fd2267481ffbe899a7f93b7b3076cd78dd70b7b9835bed79414932a749664", "distro": "debian-10", "type": "NAMI", - "version": "1.14.0-4" + "version": "1.14.0-5" }, "kong": { "arch": "amd64", - "digest": "75c06b867e8e015ccbc766e469a4c4156bb10bde6d2426c50c5c73a5d4699db1", + "digest": "a68b0bf33c318cbdc6c461be10728de2621b9bb982e17373821311e04f5bddab", "distro": "debian-10", "type": "NAMI", - "version": "2.7.1-2" + "version": "2.7.1-3" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1a6525977383..73349a884c0e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r18/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r19/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b7a4fc5a429f8c2332130e53f2e1b1abfe774f33 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 17 Feb 2022 14:18:17 +0000 Subject: [PATCH 920/950] 2.7.1-debian-10-r20 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 2d3919dd4602..c57304f8852b 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r19" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r20" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 73349a884c0e..04cd4a397d9a 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r19/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r20/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 9f8c7fc9aa6d069525165a1652d7bd800d095990 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 18 Feb 2022 19:30:12 +0000 Subject: [PATCH 921/950] 2.7.1-debian-10-r21 release --- bitnami/kong/2/debian-10/Dockerfile | 6 +++--- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index c57304f8852b..66a37df3e2c6 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,8 +9,8 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.7.1-3" --checksum a68b0bf33c318cbdc6c461be10728de2621b9bb982e17373821311e04f5bddab -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-5" --checksum 6f8fd2267481ffbe899a7f93b7b3076cd78dd70b7b9835bed79414932a749664 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.7.1-4" --checksum a68b0bf33c318cbdc6c461be10728de2621b9bb982e17373821311e04f5bddab +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-6" --checksum 6f8fd2267481ffbe899a7f93b7b3076cd78dd70b7b9835bed79414932a749664 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r20" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r21" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 1dcad53ff8b4..60863f6f2714 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -4,13 +4,13 @@ "digest": "6f8fd2267481ffbe899a7f93b7b3076cd78dd70b7b9835bed79414932a749664", "distro": "debian-10", "type": "NAMI", - "version": "1.14.0-5" + "version": "1.14.0-6" }, "kong": { "arch": "amd64", "digest": "a68b0bf33c318cbdc6c461be10728de2621b9bb982e17373821311e04f5bddab", "distro": "debian-10", "type": "NAMI", - "version": "2.7.1-3" + "version": "2.7.1-4" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 04cd4a397d9a..f49b90b05c42 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r20/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r21/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e15e89d3ef05c883b84204e6433d2b4c40f39dcd Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 19 Feb 2022 20:23:05 +0000 Subject: [PATCH 922/950] 2.7.1-debian-10-r22 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 66a37df3e2c6..28d89f9d31c9 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r21" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r22" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index f49b90b05c42..efc31d9fbe16 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r21/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r22`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r22/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 63836ca611af6b51a6701ae2645d69fc305966a4 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 20 Feb 2022 21:16:38 +0000 Subject: [PATCH 923/950] 2.7.1-debian-10-r23 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 28d89f9d31c9..2d539afc271e 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r22" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r23" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index efc31d9fbe16..8fabe83e33f0 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r22`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r22/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r23`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r23/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 6d7e4f9ad0cc715db4e375f1065c656a8cf4e200 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 22 Feb 2022 08:30:25 +0000 Subject: [PATCH 924/950] 2.7.1-debian-10-r24 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 2d539afc271e..7c215acc8f3d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r23" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r24" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 8fabe83e33f0..9c0b5e292726 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r23`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r23/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r24`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r24/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b428fd4a889afa50ae34c5031abe0dae3f4cc4cb Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 24 Feb 2022 09:24:33 +0000 Subject: [PATCH 925/950] 2.7.1-debian-10-r25 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/2/debian-10/docker-compose.yml | 2 +- bitnami/kong/README.md | 2 +- bitnami/kong/docker-compose.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 7c215acc8f3d..dec11161bc3c 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r24" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r25" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/docker-compose.yml b/bitnami/kong/2/debian-10/docker-compose.yml index 844fb936abe7..a3c685a6c7b9 100644 --- a/bitnami/kong/2/debian-10/docker-compose.yml +++ b/bitnami/kong/2/debian-10/docker-compose.yml @@ -1,7 +1,7 @@ version: '2' services: postgresql: - image: docker.io/bitnami/postgresql:11 + image: docker.io/bitnami/postgresql:13 volumes: - postgresql_data:/bitnami/postgresql environment: diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 9c0b5e292726..392918410459 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r24`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r24/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r25`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r25/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). diff --git a/bitnami/kong/docker-compose.yml b/bitnami/kong/docker-compose.yml index 844fb936abe7..a3c685a6c7b9 100644 --- a/bitnami/kong/docker-compose.yml +++ b/bitnami/kong/docker-compose.yml @@ -1,7 +1,7 @@ version: '2' services: postgresql: - image: docker.io/bitnami/postgresql:11 + image: docker.io/bitnami/postgresql:13 volumes: - postgresql_data:/bitnami/postgresql environment: From 921c2203d18bee1f33c8f40bd631342b5179ecac Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 25 Feb 2022 09:44:37 +0000 Subject: [PATCH 926/950] 2.7.1-debian-10-r26 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh | 5 +++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index dec11161bc3c..ca76c1a53746 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r25" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r26" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh index 1b504b1df458..21b964ff1cf4 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh @@ -74,8 +74,9 @@ is_dir_empty() { # boolean ######################### is_mounted_dir_empty() { - local dir="${1:?missing directory}" - + local -r path="${1:?missing directory}" + # Calculate real path in order to avoid issues with symlinks + local -r dir="$(realpath "$path")" if is_dir_empty "$dir" || find "$dir" -mindepth 1 -maxdepth 1 -not -name ".snapshot" -not -name "lost+found" -exec false {} +; then true else diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 392918410459..80bbcc349706 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r25`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r25/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r26`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r26/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From ce159da8885650fd44589d18dee39eed600b268f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 26 Feb 2022 10:07:38 +0000 Subject: [PATCH 927/950] 2.7.1-debian-10-r27 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index ca76c1a53746..f29edb84ad4d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r26" \ + BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r27" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 80bbcc349706..3bc5e92d5c9d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r26`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r26/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r27`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r27/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From f56c90295997d8fe03d2f384d7af560d0c8aca1f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 11 Mar 2022 12:30:27 +0000 Subject: [PATCH 928/950] 2.8.0-debian-10-r0 release --- bitnami/kong/2/debian-10/Dockerfile | 6 +++--- .../prebuildfs/opt/bitnami/.bitnami_components.json | 8 ++++---- .../2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh | 5 ++--- .../2/debian-10/rootfs/opt/bitnami/scripts/libkong.sh | 2 +- bitnami/kong/README.md | 2 +- 5 files changed, 11 insertions(+), 12 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index f29edb84ad4d..e55f7807f7e9 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,8 +9,8 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.7.1-4" --checksum a68b0bf33c318cbdc6c461be10728de2621b9bb982e17373821311e04f5bddab -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-6" --checksum 6f8fd2267481ffbe899a7f93b7b3076cd78dd70b7b9835bed79414932a749664 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.8.0-1" --checksum 3f3afcd0b2d4465d0036659dfd4ee2d67f372dddab45bbfa17c13ae842b5168f +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-7" --checksum d6280b6f647a62bf6edc74dc8e526bfff63ddd8067dcb8540843f47203d9ccf1 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.7.1-debian-10-r27" \ + BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r0" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 60863f6f2714..a95e56cc6f3e 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,16 +1,16 @@ { "gosu": { "arch": "amd64", - "digest": "6f8fd2267481ffbe899a7f93b7b3076cd78dd70b7b9835bed79414932a749664", + "digest": "d6280b6f647a62bf6edc74dc8e526bfff63ddd8067dcb8540843f47203d9ccf1", "distro": "debian-10", "type": "NAMI", - "version": "1.14.0-6" + "version": "1.14.0-7" }, "kong": { "arch": "amd64", - "digest": "a68b0bf33c318cbdc6c461be10728de2621b9bb982e17373821311e04f5bddab", + "digest": "3f3afcd0b2d4465d0036659dfd4ee2d67f372dddab45bbfa17c13ae842b5168f", "distro": "debian-10", "type": "NAMI", - "version": "2.7.1-4" + "version": "2.8.0-1" } } \ No newline at end of file diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh index 21b964ff1cf4..1b504b1df458 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libfs.sh @@ -74,9 +74,8 @@ is_dir_empty() { # boolean ######################### is_mounted_dir_empty() { - local -r path="${1:?missing directory}" - # Calculate real path in order to avoid issues with symlinks - local -r dir="$(realpath "$path")" + local dir="${1:?missing directory}" + if is_dir_empty "$dir" || find "$dir" -mindepth 1 -maxdepth 1 -not -name ".snapshot" -not -name "lost+found" -exec false {} +; then true else diff --git a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/libkong.sh b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/libkong.sh index edc4a0dc41c9..63f0f8c95b38 100644 --- a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/libkong.sh +++ b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/libkong.sh @@ -140,7 +140,7 @@ kong_initialize() { kong_configure_from_environment_variables while ! kong_migrations_list_output="$(kong migrations list 2>&1)"; do - if is_boolean_yes "$KONG_MIGRATE" && [[ "$kong_migrations_list_output" =~ "Database needs bootstrapping"* ]]; then + if is_boolean_yes "$KONG_MIGRATE" && [[ "$kong_migrations_list_output" =~ "Database needs bootstrapping"* ]] || [[ "$kong_migrations_list_output" =~ "migrations available" ]]; then break fi debug "$kong_migrations_list_output" diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 3bc5e92d5c9d..8af065f70873 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.7.1`, `2.7.1-debian-10-r27`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.7.1-debian-10-r27/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From cdf68b0877ddd01014d62bcc8bf99243bdcbdcb6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 12 Mar 2022 12:59:42 +0000 Subject: [PATCH 929/950] 2.8.0-debian-10-r1 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index e55f7807f7e9..9a6e6bc2ab45 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r0" \ + BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r1" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 8af065f70873..a48f29c67aaa 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r0/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r1/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 50f21d9204dbd5bc9fc2114772ea39d5f9744ab6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 13 Mar 2022 13:23:48 +0000 Subject: [PATCH 930/950] 2.8.0-debian-10-r2 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 9a6e6bc2ab45..a82738a2293f 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r1" \ + BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r2" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a48f29c67aaa..782b93d0604d 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r1/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r2/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 38f8ed8dbd08c8377bda8f94fb98da1a82929754 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 14 Mar 2022 15:57:33 +0000 Subject: [PATCH 931/950] 2.8.0-debian-10-r3 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a82738a2293f..849044444218 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r2" \ + BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r3" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 782b93d0604d..ef0e5ad91f79 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r2/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r3/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 461be3e52c83563097fae39dfa6e93948531b1d5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 15 Mar 2022 16:28:32 +0000 Subject: [PATCH 932/950] 2.8.0-debian-10-r4 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 849044444218..d0b7015e73aa 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r3" \ + BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r4" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index ef0e5ad91f79..1a6062d56a6b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r3/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r4/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 04d0e41677892d0653302c5f67617af306ed5856 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 21 Mar 2022 16:11:47 +0000 Subject: [PATCH 933/950] 2.8.0-debian-10-r5 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index d0b7015e73aa..1e23f724c23c 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r4" \ + BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r5" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 1a6062d56a6b..ecad8c2c72c9 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r4`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r4/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r5/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 39fb1703151beba184f3294972d409714171081c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 22 Mar 2022 17:06:40 +0000 Subject: [PATCH 934/950] 2.8.0-debian-10-r6 release --- bitnami/kong/2/debian-10/Dockerfile | 5 +++-- bitnami/kong/README.md | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 1e23f724c23c..bf7568dce8b5 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -17,8 +17,9 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh -ENV BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r5" \ +ENV APP_VERSION="2.8.0" \ + BITNAMI_APP_NAME="kong" \ + BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r6" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index ecad8c2c72c9..8f4b92f73be5 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r5`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r5/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r6/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 112c0e61bd6f6a519552d9e85566104cc9fde49c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 23 Mar 2022 14:06:06 +0000 Subject: [PATCH 935/950] 2.8.0-debian-10-r7 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index bf7568dce8b5..6fda28b3c3d9 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.8.0-1" --checksum 3f3afcd0b2d4465d0036659dfd4ee2d67f372dddab45bbfa17c13ae842b5168f +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.8.0-2" --checksum 7d3ed77174aed95ae7f7ffa16e1d2c6d8c5cd79b20d8c0a9f2c88e411946c383 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-7" --checksum d6280b6f647a62bf6edc74dc8e526bfff63ddd8067dcb8540843f47203d9ccf1 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -19,7 +19,7 @@ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV APP_VERSION="2.8.0" \ BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r7" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index a95e56cc6f3e..8e8b78458b5c 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "3f3afcd0b2d4465d0036659dfd4ee2d67f372dddab45bbfa17c13ae842b5168f", + "digest": "7d3ed77174aed95ae7f7ffa16e1d2c6d8c5cd79b20d8c0a9f2c88e411946c383", "distro": "debian-10", "type": "NAMI", - "version": "2.8.0-1" + "version": "2.8.0-2" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 8f4b92f73be5..99f1a91f0ccb 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r6`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r6/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r7/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From a8ae735ba1b9eeaa7cd774dbc9f78ad978384f11 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 24 Mar 2022 14:33:30 +0000 Subject: [PATCH 936/950] 2.8.0-debian-10-r8 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 6fda28b3c3d9..85ffab210581 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -19,7 +19,7 @@ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV APP_VERSION="2.8.0" \ BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r7" \ + BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r8" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 99f1a91f0ccb..a21038ede08c 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r7`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r7/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r8/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From b7eb963ed827dfb9da282892270308b022de24f7 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 25 Mar 2022 15:04:07 +0000 Subject: [PATCH 937/950] 2.8.0-debian-10-r9 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- .../debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh | 4 ---- .../kong/2/debian-10/rootfs/opt/bitnami/scripts/kong-env.sh | 1 + bitnami/kong/README.md | 2 +- 4 files changed, 3 insertions(+), 6 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 85ffab210581..0b27e8769047 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -19,7 +19,7 @@ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV APP_VERSION="2.8.0" \ BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r8" \ + BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r9" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh index 503650210583..818c2158032b 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/scripts/libwebserver.sh @@ -392,10 +392,6 @@ web_server_update_app_configuration() { --hosts \ | --server-name \ | --server-aliases \ - | --enable-http \ - | --enable-https \ - | --disable-http \ - | --disable-https \ | --http-port \ | --https-port \ ) diff --git a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong-env.sh b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong-env.sh index 90e21c5b695c..ace49e722c26 100644 --- a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong-env.sh +++ b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong-env.sh @@ -9,6 +9,7 @@ # 4. Environment variables set externally (i.e. current Bash context/Dockerfile/userdata) # Load logging library +# shellcheck disable=SC1091 . /opt/bitnami/scripts/liblog.sh export BITNAMI_ROOT_DIR="/opt/bitnami" diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index a21038ede08c..0768eef30f9b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r8`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r8/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r9/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 2ec2f42f65fb091c247b96a4ed247a9336ba1017 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 26 Mar 2022 15:34:03 +0000 Subject: [PATCH 938/950] 2.8.0-debian-10-r10 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong-env.sh | 2 +- bitnami/kong/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0b27e8769047..a0b78fae5165 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -19,7 +19,7 @@ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV APP_VERSION="2.8.0" \ BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r9" \ + BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r10" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong-env.sh b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong-env.sh index ace49e722c26..d45a8a1302c2 100644 --- a/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong-env.sh +++ b/bitnami/kong/2/debian-10/rootfs/opt/bitnami/scripts/kong-env.sh @@ -9,7 +9,7 @@ # 4. Environment variables set externally (i.e. current Bash context/Dockerfile/userdata) # Load logging library -# shellcheck disable=SC1091 +# shellcheck disable=SC1090,SC1091 . /opt/bitnami/scripts/liblog.sh export BITNAMI_ROOT_DIR="/opt/bitnami" diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 0768eef30f9b..48a6f7c48f3b 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r9`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r9/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r10/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 5a4717a074bea8ea8b751d676ac3e010b2510cbd Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 27 Mar 2022 16:00:59 +0000 Subject: [PATCH 939/950] 2.8.0-debian-10-r11 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a0b78fae5165..af838f874b99 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -19,7 +19,7 @@ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV APP_VERSION="2.8.0" \ BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r10" \ + BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r11" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 48a6f7c48f3b..059056b167ae 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r10/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r11/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From fdbcafa3faa7df08ac7ebe6c5d49a1cb92973e7e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 28 Mar 2022 16:33:22 +0000 Subject: [PATCH 940/950] 2.8.0-debian-10-r12 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index af838f874b99..77022319091a 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -19,7 +19,7 @@ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV APP_VERSION="2.8.0" \ BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r11" \ + BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r12" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 059056b167ae..5a76cf49a89f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r11/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r12/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 06c3c679d530348c5f66306851369dfc4b847949 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 29 Mar 2022 16:59:19 +0000 Subject: [PATCH 941/950] 2.8.0-debian-10-r13 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 77022319091a..b69b2ff31bea 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -19,7 +19,7 @@ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV APP_VERSION="2.8.0" \ BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r12" \ + BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r13" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 5a76cf49a89f..91a2d8e12471 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r12`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r12/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r13/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e77235a34d0533c349e6f2f12be8c0c8e55c37fb Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 30 Mar 2022 17:25:30 +0000 Subject: [PATCH 942/950] 2.8.0-debian-10-r14 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index b69b2ff31bea..a01953f3f924 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -19,7 +19,7 @@ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV APP_VERSION="2.8.0" \ BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r13" \ + BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r14" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 91a2d8e12471..ad301349bc05 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r13`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r13/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r14/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 39bb7356e2840d607eddd168ce50cbfe74f9ec8c Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 31 Mar 2022 17:52:48 +0000 Subject: [PATCH 943/950] 2.8.0-debian-10-r15 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a01953f3f924..6862696cce31 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -19,7 +19,7 @@ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV APP_VERSION="2.8.0" \ BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r14" \ + BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r15" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index ad301349bc05..3bc4cf971b3f 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r14`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r14/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r15/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From e82ff15f00cb0614b3e68e200b4d1b1f69244faf Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 1 Apr 2022 21:09:02 +0000 Subject: [PATCH 944/950] 2.8.0-debian-10-r16 release --- bitnami/kong/2/debian-10/Dockerfile | 4 ++-- .../debian-10/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 6862696cce31..b61bf201c8d9 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.8.0-2" --checksum 7d3ed77174aed95ae7f7ffa16e1d2c6d8c5cd79b20d8c0a9f2c88e411946c383 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.8.0-3" --checksum f8d3e8bf76987a1a842777c19bc63b047ecb762fe4872ac0d9bd1370d4913ac7 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-7" --checksum d6280b6f647a62bf6edc74dc8e526bfff63ddd8067dcb8540843f47203d9ccf1 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -19,7 +19,7 @@ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV APP_VERSION="2.8.0" \ BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r15" \ + BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r16" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 8e8b78458b5c..88f22803c96b 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "7d3ed77174aed95ae7f7ffa16e1d2c6d8c5cd79b20d8c0a9f2c88e411946c383", + "digest": "f8d3e8bf76987a1a842777c19bc63b047ecb762fe4872ac0d9bd1370d4913ac7", "distro": "debian-10", "type": "NAMI", - "version": "2.8.0-2" + "version": "2.8.0-3" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 3bc4cf971b3f..4fa29be001e7 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r15`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r15/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r16/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 0bdecbfbf2983c1a0a65ef88f3f387a14663d766 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sat, 2 Apr 2022 21:41:12 +0000 Subject: [PATCH 945/950] 2.8.0-debian-10-r17 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index b61bf201c8d9..a21d7141b20d 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -19,7 +19,7 @@ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV APP_VERSION="2.8.0" \ BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r16" \ + BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r17" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 4fa29be001e7..40e80a193135 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r16`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r16/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r17/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 343b9f7f13375e6449499d8ee4968501137d8e76 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Sun, 3 Apr 2022 22:06:34 +0000 Subject: [PATCH 946/950] 2.8.0-debian-10-r18 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index a21d7141b20d..0c422055a4f3 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -19,7 +19,7 @@ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV APP_VERSION="2.8.0" \ BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r17" \ + BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r18" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 40e80a193135..215bb512402e 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r17`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r17/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r18/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 46e8c9f9ff92ed40a145b90613480da3ace6b4b5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Tue, 5 Apr 2022 07:33:05 +0000 Subject: [PATCH 947/950] 2.8.0-debian-10-r19 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 0c422055a4f3..6897686e70b2 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -19,7 +19,7 @@ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV APP_VERSION="2.8.0" \ BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r18" \ + BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r19" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 215bb512402e..dd4bd7d4ca11 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r18/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r19/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 3d44a51abe10aec9bd6baf009a223efc5ad2f3c5 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 6 Apr 2022 08:04:50 +0000 Subject: [PATCH 948/950] 2.8.0-debian-10-r20 release --- bitnami/kong/2/debian-10/Dockerfile | 2 +- bitnami/kong/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 6897686e70b2..27410f6722ec 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -19,7 +19,7 @@ COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh ENV APP_VERSION="2.8.0" \ BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r19" \ + BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r20" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index dd4bd7d4ca11..345fab37a818 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r19/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r20/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 74622f4fe09825c1a7c9d3f329207bbe851eb054 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 6 Apr 2022 22:11:51 +0000 Subject: [PATCH 949/950] 2.8.1-debian-10-r0 release --- bitnami/kong/2/debian-10/Dockerfile | 5 ++--- .../prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- bitnami/kong/README.md | 2 +- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/bitnami/kong/2/debian-10/Dockerfile b/bitnami/kong/2/debian-10/Dockerfile index 27410f6722ec..e47268931660 100644 --- a/bitnami/kong/2/debian-10/Dockerfile +++ b/bitnami/kong/2/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libc6 libgcc1 libpcre3 libssl1.1 libyaml-0-2 perl procps tar zlib1g zlib1g-dev -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.8.0-3" --checksum f8d3e8bf76987a1a842777c19bc63b047ecb762fe4872ac0d9bd1370d4913ac7 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kong" "2.8.1-0" --checksum ed9ab2aeb2b11104d63f1d1892502ee8c9a3aba0b923e51a0a7b5ea29f56fd4f RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-7" --checksum d6280b6f647a62bf6edc74dc8e526bfff63ddd8067dcb8540843f47203d9ccf1 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives @@ -17,9 +17,8 @@ RUN chmod g+rwX /opt/bitnami COPY rootfs / RUN /opt/bitnami/scripts/kong/postunpack.sh -ENV APP_VERSION="2.8.0" \ +ENV APP_VERSION="2.8.1" \ BITNAMI_APP_NAME="kong" \ - BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r20" \ PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:/opt/bitnami/common/bin:$PATH" EXPOSE 8000 8001 8443 8444 diff --git a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 88f22803c96b..cc7c9e2e6a66 100644 --- a/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/kong/2/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "kong": { "arch": "amd64", - "digest": "f8d3e8bf76987a1a842777c19bc63b047ecb762fe4872ac0d9bd1370d4913ac7", + "digest": "ed9ab2aeb2b11104d63f1d1892502ee8c9a3aba0b923e51a0a7b5ea29f56fd4f", "distro": "debian-10", "type": "NAMI", - "version": "2.8.0-3" + "version": "2.8.1-0" } } \ No newline at end of file diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 345fab37a818..848b5e6d4265 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r20`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.0-debian-10-r20/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.8.1`, `2.8.1-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.1-debian-10-r0/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong). From 6b69f8c5294de0edcede8f63ce9883cd4c32dca6 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 7 Apr 2022 18:51:29 +0000 Subject: [PATCH 950/950] 2.8.1-debian-10-r1 release --- bitnami/kong/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitnami/kong/README.md b/bitnami/kong/README.md index 848b5e6d4265..26c31a011b54 100644 --- a/bitnami/kong/README.md +++ b/bitnami/kong/README.md @@ -41,7 +41,7 @@ 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/). -* [`2`, `2-debian-10`, `2.8.1`, `2.8.1-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.1-debian-10-r0/2/debian-10/Dockerfile) +* [`2`, `2-debian-10`, `2.8.1`, `2.8.1-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong/blob/2.8.1-debian-10-r1/2/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/kong GitHub repo](https://github.com/bitnami/bitnami-docker-kong).