10.7.0-debian-10-r57 release
This commit is contained in:
parent
f04148172b
commit
a04ab9a46d
|
|
@ -17,7 +17,7 @@ RUN chmod g+rwX /opt/bitnami
|
||||||
COPY rootfs /
|
COPY rootfs /
|
||||||
RUN /opt/bitnami/scripts/wavefront-proxy/postunpack.sh
|
RUN /opt/bitnami/scripts/wavefront-proxy/postunpack.sh
|
||||||
ENV BITNAMI_APP_NAME="wavefront-proxy" \
|
ENV BITNAMI_APP_NAME="wavefront-proxy" \
|
||||||
BITNAMI_IMAGE_VERSION="10.7.0-debian-10-r56" \
|
BITNAMI_IMAGE_VERSION="10.7.0-debian-10-r57" \
|
||||||
PATH="/opt/bitnami/java/bin:/opt/bitnami/common/bin:$PATH"
|
PATH="/opt/bitnami/java/bin:/opt/bitnami/common/bin:$PATH"
|
||||||
|
|
||||||
EXPOSE 2878
|
EXPOSE 2878
|
||||||
|
|
|
||||||
|
|
@ -137,6 +137,19 @@ generate_cron_conf() {
|
||||||
fi
|
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
|
# Generate a monit configuration file for a given service
|
||||||
# Arguments:
|
# Arguments:
|
||||||
|
|
@ -183,6 +196,19 @@ check process ${service_name}
|
||||||
EOF
|
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
|
# Generate a logrotate configuration file
|
||||||
# Arguments:
|
# Arguments:
|
||||||
|
|
@ -233,3 +259,16 @@ $(indent "$extra" 2)
|
||||||
}
|
}
|
||||||
EOF
|
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}"
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@ $ docker run --name wavefront-proxy bitnami/wavefront-proxy:latest
|
||||||
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/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/).
|
||||||
|
|
||||||
|
|
||||||
* [`10`, `10-debian-10`, `10.7.0`, `10.7.0-debian-10-r56`, `latest` (10/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-wavefront-proxy/blob/10.7.0-debian-10-r56/10/debian-10/Dockerfile)
|
* [`10`, `10-debian-10`, `10.7.0`, `10.7.0-debian-10-r57`, `latest` (10/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-wavefront-proxy/blob/10.7.0-debian-10-r57/10/debian-10/Dockerfile)
|
||||||
|
|
||||||
Subscribe to project updates by watching the [bitnami/wavefront-proxy GitHub repo](https://github.com/bitnami/bitnami-docker-wavefront-proxy).
|
Subscribe to project updates by watching the [bitnami/wavefront-proxy GitHub repo](https://github.com/bitnami/bitnami-docker-wavefront-proxy).
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue