04/10/2019

This commit is contained in:
Mr Bot 2019-04-10 12:46:47 +03:00
parent d8b3d83858
commit e0c97f33f3
9 changed files with 23 additions and 0 deletions

View File

@ -17,6 +17,7 @@
## Changelog ## Changelog
* 04/10/2019 * 04/10/2019
* fixed some scripts. added php7.2 tag for `websites`. * fixed some scripts. added php7.2 tag for `websites`.
* added zabbix containers. why not.
* 04/08/2019 * 04/08/2019
* added fixed (for us) `nextcloud` script. its a `nextcloud:latest` fork. * added fixed (for us) `nextcloud` script. its a `nextcloud:latest` fork.
* 04/01/2019 * 04/01/2019

View File

@ -0,0 +1 @@
repository: epicmorg/zabbix-server-mysql

View File

@ -0,0 +1,3 @@
.git
scripts
.idea

3
zabbix/server/Dockerfile Normal file
View File

@ -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

4
zabbix/server/Makefile Normal file
View File

@ -0,0 +1,4 @@
all: nc
nc:
docker build --no-cache -t epicmorg/zabbix-server-mysql .

View File

@ -0,0 +1 @@
repository: epicmorg/zabbix-web-apache-mysql

3
zabbix/web/.dockerignore Normal file
View File

@ -0,0 +1,3 @@
.git
scripts
.idea

3
zabbix/web/Dockerfile Normal file
View File

@ -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

4
zabbix/web/Makefile Normal file
View File

@ -0,0 +1,4 @@
all: nc
nc:
docker build --no-cache -t epicmorg/zabbix-web-apache-mysql .