mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2025-08-09 00:24:58 +02:00
Updated CentOS images
This commit is contained in:
@ -14,7 +14,7 @@ Zabbix web interface is a part of Zabbix software. It is used to manage resource
|
||||
|
||||
# Zabbix web interface images
|
||||
|
||||
These are the only official Zabbix web interface Docker images. They are based on Alpine Linux v3.9, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix web interface are:
|
||||
These are the only official Zabbix web interface Docker images. They are based on Alpine Linux v3.11, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix web interface are:
|
||||
|
||||
Zabbix web interface 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest)
|
||||
Zabbix web interface 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*)
|
||||
|
@ -60,6 +60,10 @@ file_env() {
|
||||
unset "$fileVar"
|
||||
}
|
||||
|
||||
prepare_system() {
|
||||
echo "** Preparing the system"
|
||||
}
|
||||
|
||||
escape_spec_char() {
|
||||
local var_value=$1
|
||||
|
||||
@ -202,6 +206,10 @@ prepare_web_server() {
|
||||
fi
|
||||
}
|
||||
|
||||
clear_deploy() {
|
||||
echo "** Cleaning the system"
|
||||
}
|
||||
|
||||
prepare_zbx_web_config() {
|
||||
local server_name=""
|
||||
|
||||
@ -269,9 +277,9 @@ echo "########################################################"
|
||||
if [ "$1" != "" ]; then
|
||||
echo "** Executing '$@'"
|
||||
exec "$@"
|
||||
elif [ -f "/usr/bin/supervisord" ]; then
|
||||
echo "** Executing supervisord"
|
||||
exec /usr/bin/supervisord -c /etc/supervisor/supervisord.conf
|
||||
elif [ -f "/usr/sbin/httpd" ]; then
|
||||
echo "** Executing HTTPD"
|
||||
exec /usr/sbin/httpd -D FOREGROUND
|
||||
else
|
||||
echo "Unknown instructions. Exiting..."
|
||||
exit 1
|
||||
|
Reference in New Issue
Block a user