diff --git a/README.md b/README.md index 389b55bda..b3119ccd9 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ ## Changelog * 04/10/2019 * fixed some scripts. added php7.2 tag for `websites`. + * added zabbix containers. why not. * 04/08/2019 * added fixed (for us) `nextcloud` script. its a `nextcloud:latest` fork. * 04/01/2019 diff --git a/zabbix/server/.docker-repository.yml b/zabbix/server/.docker-repository.yml new file mode 100644 index 000000000..8d29a202d --- /dev/null +++ b/zabbix/server/.docker-repository.yml @@ -0,0 +1 @@ +repository: epicmorg/zabbix-server-mysql diff --git a/zabbix/server/.dockerignore b/zabbix/server/.dockerignore new file mode 100644 index 000000000..f5523d40c --- /dev/null +++ b/zabbix/server/.dockerignore @@ -0,0 +1,3 @@ +.git +scripts +.idea diff --git a/zabbix/server/Dockerfile b/zabbix/server/Dockerfile new file mode 100644 index 000000000..2d76013d3 --- /dev/null +++ b/zabbix/server/Dockerfile @@ -0,0 +1,3 @@ +FROM zabbix/zabbix-server-mysql:ubuntu-latest +ENV DEBIAN_FRONTEND noninteractive +RUN apt update -y && apt install -y --allow-unauthenticated ca-certificates gnupg sudo apt-transport-https lsb-release apt-utils locales console-cyrillic wget curl htop mc tmux iftop cmatrix iputils-ping cmatrix-xfont lsof lynx fontconfig smbclient nano diff --git a/zabbix/server/Makefile b/zabbix/server/Makefile new file mode 100644 index 000000000..cead628af --- /dev/null +++ b/zabbix/server/Makefile @@ -0,0 +1,4 @@ +all: nc +nc: + docker build --no-cache -t epicmorg/zabbix-server-mysql . + diff --git a/zabbix/web/.docker-repository.yml b/zabbix/web/.docker-repository.yml new file mode 100644 index 000000000..aaefbbe3d --- /dev/null +++ b/zabbix/web/.docker-repository.yml @@ -0,0 +1 @@ +repository: epicmorg/zabbix-web-apache-mysql diff --git a/zabbix/web/.dockerignore b/zabbix/web/.dockerignore new file mode 100644 index 000000000..f5523d40c --- /dev/null +++ b/zabbix/web/.dockerignore @@ -0,0 +1,3 @@ +.git +scripts +.idea diff --git a/zabbix/web/Dockerfile b/zabbix/web/Dockerfile new file mode 100644 index 000000000..77469cdf3 --- /dev/null +++ b/zabbix/web/Dockerfile @@ -0,0 +1,3 @@ +FROM zabbix/zabbix-web-apache-mysql:ubuntu-latest +ENV DEBIAN_FRONTEND noninteractive +RUN apt update -y && apt install -y --allow-unauthenticated ca-certificates gnupg sudo apt-transport-https lsb-release apt-utils locales console-cyrillic wget curl htop mc tmux iftop cmatrix iputils-ping cmatrix-xfont lsof lynx fontconfig smbclient nano diff --git a/zabbix/web/Makefile b/zabbix/web/Makefile new file mode 100644 index 000000000..5bb020f84 --- /dev/null +++ b/zabbix/web/Makefile @@ -0,0 +1,4 @@ +all: nc +nc: + docker build --no-cache -t epicmorg/zabbix-web-apache-mysql . +