├── LICENSE ├── README.md ├── alpine-base ├── Dockerfile ├── Dockerfile-aliyun ├── Dockerfile-mini ├── Dockerfile-mini-aliyun ├── README.md └── root │ └── etc │ ├── cont-init.d │ ├── 01-permissions │ ├── 02-zabbix │ ├── 03-cron │ ├── 04-smtp │ └── 99-container-init │ ├── fix-attrs.d │ ├── 02-zabbix │ └── 03-logrotate │ ├── s6 │ └── services │ │ ├── 02-zabbix │ │ └── run │ │ ├── 03-cron │ │ └── run │ │ └── 04-smtp │ │ └── run │ └── zabbix │ ├── zabbix_agentd.conf │ └── zabbix_agentd.conf.d │ ├── .hidden │ ├── container_os.conf │ └── updated_packages.conf ├── bind ├── Dockerfile ├── README.md └── root │ └── etc │ ├── bind │ ├── README │ ├── default-zones │ │ ├── db.0 │ │ ├── db.127 │ │ ├── db.255 │ │ ├── db.empty │ │ ├── db.local │ │ └── db.root │ ├── example-configs │ │ ├── README │ │ ├── authoritative │ │ │ └── named.conf.options │ │ └── recursive-resolver │ │ │ └── named.conf.options │ ├── named.conf │ ├── named.conf.default-zones │ ├── named.conf.local │ ├── named.conf.options │ └── named.conf.rfc1918 │ └── s6 │ └── services │ └── 33-bind │ └── run ├── dnsmasq ├── Dockerfile ├── README.md └── root │ └── etc │ ├── dnsmasq.conf │ └── s6 │ └── services │ └── 31-webproc │ └── run ├── glibc ├── Dockerfile └── Dockerfile-mini ├── mariadb ├── Dockerfile └── root │ ├── etc │ ├── mysql │ │ └── my.cnf │ ├── s6 │ │ └── services │ │ │ └── 10-mariadb │ │ │ └── run │ └── zabbix │ │ ├── .my.cnf │ │ └── zabbix_agentd.conf.d │ │ └── mysql.conf │ └── tmp │ └── install.sh ├── memcached ├── Dockerfile └── root │ └── etc │ ├── s6 │ └── services │ │ └── 10-memcached │ │ └── run │ └── zabbix │ └── zabbix_agentd.conf.d │ └── memcached.conf ├── nginx-php ├── 5.6 │ ├── Dockerfile │ └── root │ │ ├── assets │ │ └── maintenance │ │ │ └── maintenance.html │ │ ├── etc │ │ ├── cont-init.d │ │ │ ├── 09-nginx │ │ │ └── 20-php-fpm │ │ ├── logrotate.d │ │ │ ├── nginx │ │ │ └── php-fpm7 │ │ ├── nginx │ │ │ ├── conf.d │ │ │ │ ├── default.conf │ │ │ │ ├── default.llng │ │ │ │ └── maintenance.conf.maint │ │ │ └── nginx.conf │ │ ├── php5 │ │ │ ├── conf.d │ │ │ │ ├── apcu.ini │ │ │ │ └── opcache.ini │ │ │ ├── php-fpm.conf │ │ │ └── php.ini │ │ ├── s6 │ │ │ └── services │ │ │ │ ├── 10-nginx │ │ │ │ └── run │ │ │ │ └── 20-php-fpm │ │ │ │ └── run │ │ └── zabbix │ │ │ └── zabbix_agentd.conf.d │ │ │ ├── nginx-status.conf │ │ │ ├── php-fpm-params.conf │ │ │ ├── php-opcache-check.conf │ │ │ ├── php │ │ │ └── php-opcache-check.php │ │ │ └── scripts │ │ │ ├── nginx-status.sh │ │ │ └── php-fpm-check.sh │ │ ├── tmp │ │ └── install.sh │ │ └── usr │ │ └── sbin │ │ └── maintenance └── 7.1 │ ├── Dockerfile │ └── root │ ├── assets │ └── maintenance │ │ └── maintenance.html │ ├── etc │ ├── cont-init.d │ │ ├── 08-hosts │ │ ├── 09-nginx │ │ └── 20-php-fpm │ ├── logrotate.d │ │ ├── nginx │ │ └── php-fpm7 │ ├── nginx │ │ ├── conf.d │ │ │ ├── default.conf │ │ │ ├── default.llng │ │ │ └── maintenance.conf.maint │ │ └── nginx.conf │ ├── php7 │ │ ├── conf.d │ │ │ ├── 00_opcache.ini │ │ │ └── apcu.ini │ │ ├── php-fpm.conf │ │ └── php.ini │ ├── s6 │ │ └── services │ │ │ ├── 10-nginx │ │ │ └── run │ │ │ └── 20-php-fpm │ │ │ └── run │ └── zabbix │ │ └── zabbix_agentd.conf.d │ │ ├── nginx-status.conf │ │ ├── php-fpm-params.conf │ │ ├── php-opcache-check.conf │ │ ├── php │ │ └── php-opcache-check.php │ │ └── scripts │ │ ├── nginx-status.sh │ │ └── php-fpm-check.sh │ └── usr │ └── sbin │ └── maintenance ├── nginx ├── Dockerfile └── root │ ├── assets │ └── maintenance │ │ └── maintenance.html │ ├── etc │ ├── cont-init.d │ │ └── 09-nginx │ ├── logrotate.d │ │ └── nginx │ ├── nginx │ │ ├── conf.d │ │ │ ├── default.conf │ │ │ ├── default.llng │ │ │ └── maintenance.conf.maint │ │ └── nginx.conf │ ├── s6 │ │ └── services │ │ │ └── 10-nginx │ │ │ └── run │ └── zabbix │ │ └── zabbix_agentd.conf.d │ │ ├── nginx-status.conf │ │ └── scripts │ │ └── nginx-status.sh │ └── usr │ └── sbin │ └── maintenance ├── openjdk ├── 7 │ └── Dockerfile └── 8 │ └── Dockerfile ├── openssh ├── Dockerfile ├── README.md └── root │ └── etc │ └── s6 │ └── services │ └── 30-sshd │ └── run ├── oraclejdk └── 8 │ ├── Dockerfile │ └── Dockerfile-test ├── php ├── 5.6 │ ├── Dockerfile │ └── root │ │ ├── assets │ │ └── maintenance │ │ │ └── maintenance.html │ │ ├── etc │ │ ├── cont-init.d │ │ │ ├── 09-nginx │ │ │ └── 20-php-fpm │ │ ├── logrotate.d │ │ │ ├── nginx │ │ │ └── php-fpm7 │ │ ├── nginx │ │ │ ├── conf.d │ │ │ │ ├── default.conf │ │ │ │ ├── default.llng │ │ │ │ └── maintenance.conf.maint │ │ │ └── nginx.conf │ │ ├── php5 │ │ │ ├── conf.d │ │ │ │ ├── apcu.ini │ │ │ │ └── opcache.ini │ │ │ ├── php-fpm.conf │ │ │ └── php.ini │ │ ├── s6 │ │ │ └── services │ │ │ │ ├── 10-nginx │ │ │ │ └── run │ │ │ │ └── 20-php-fpm │ │ │ │ └── run │ │ └── zabbix │ │ │ └── zabbix_agentd.conf.d │ │ │ ├── nginx-status.conf │ │ │ ├── php-fpm-params.conf │ │ │ ├── php-opcache-check.conf │ │ │ ├── php │ │ │ └── php-opcache-check.php │ │ │ └── scripts │ │ │ ├── nginx-status.sh │ │ │ └── php-fpm-check.sh │ │ ├── tmp │ │ └── install.sh │ │ └── usr │ │ └── sbin │ │ └── maintenance └── 7.1 │ ├── Dockerfile │ └── root │ ├── assets │ └── maintenance │ │ └── maintenance.html │ ├── etc │ ├── cont-init.d │ │ └── 20-php-fpm │ ├── logrotate.d │ │ └── php-fpm7 │ ├── php7 │ │ ├── conf.d │ │ │ ├── 00_opcache.ini │ │ │ └── apcu.ini │ │ ├── php-fpm.conf │ │ └── php.ini │ ├── s6 │ │ └── services │ │ │ └── 20-php-fpm │ │ │ └── run │ └── zabbix │ │ └── zabbix_agentd.conf.d │ │ ├── php-fpm-params.conf │ │ ├── php-opcache-check.conf │ │ ├── php │ │ └── php-opcache-check.php │ │ └── scripts │ │ ├── nginx-status.sh │ │ └── php-fpm-check.sh │ └── usr │ └── sbin │ └── maintenance ├── redis ├── 3 │ ├── Dockerfile │ └── root │ │ └── etc │ │ ├── s6 │ │ └── services │ │ │ └── 10-redis │ │ │ └── run │ │ └── zabbix │ │ └── zabbix_agentd.conf.d │ │ ├── redis.conf │ │ └── scripts │ │ └── redis-discovery.sh └── 4 │ ├── Dockerfile │ └── root │ └── etc │ ├── s6 │ └── services │ │ └── 10-redis │ │ └── run │ └── zabbix │ └── zabbix_agentd.conf.d │ ├── redis.conf │ └── scripts │ └── redis-discovery.sh ├── tomcat ├── 7 │ ├── Dockerfile │ └── root │ │ └── etc │ │ ├── cont-init.d │ │ └── 10-tomcat │ │ └── s6 │ │ └── services │ │ └── 10-tomcat │ │ └── run ├── 8 │ ├── Dockerfile │ └── root │ │ └── etc │ │ ├── cont-init.d │ │ └── 10-tomcat │ │ └── s6 │ │ └── services │ │ └── 10-tomcat │ │ └── run └── 9 │ ├── Dockerfile │ └── root │ └── etc │ ├── cont-init.d │ └── 10-tomcat │ └── s6 │ └── services │ └── 10-tomcat │ └── run ├── unbound ├── Dockerfile └── root │ └── etc │ ├── cont-init.d │ └── 10-unbound │ ├── s6 │ └── services │ │ └── 10-unbound │ │ └── run │ └── unbound │ └── unbound.conf ├── varnish ├── Dockerfile ├── README.md └── root │ └── etc │ ├── s6 │ └── services │ │ └── 35-varnish │ │ └── run │ └── varnish │ └── default.vcl └── zabbix ├── agentd ├── Dockerfile ├── Dockerfile-aliyun ├── agent-install.sh └── root │ └── etc │ ├── cont-init.d │ ├── 01-permissions │ ├── 02-zabbix │ ├── 03-cron │ ├── 04-smtp │ └── 99-container-init │ ├── fix-attrs.d │ ├── 02-zabbix │ └── 03-logrotate │ ├── s6 │ └── services │ │ ├── 02-zabbix │ │ └── run │ │ ├── 03-cron │ │ └── run │ │ └── 04-smtp │ │ └── run │ └── zabbix │ ├── zabbix_agentd.conf │ └── zabbix_agentd.conf.d │ ├── .hidden │ ├── container_os.conf │ └── updated_packages.conf ├── mysql ├── Dockerfile └── root │ ├── etc │ ├── mysql │ │ └── my.cnf │ └── zabbix │ │ ├── .my.cnf │ │ └── zabbix_agentd.conf.d │ │ ├── .hidden │ │ └── mysql.conf │ └── mysql │ ├── startup.sh │ └── zabbix.sql └── server ├── Dockerfile ├── Dockerfile-mini └── root ├── etc └── zabbix │ ├── .my.cnf │ └── zabbix_server.conf └── zabbix ├── install.sh ├── msyh.ttf ├── startup.sh └── zabbix.conf.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/README.md -------------------------------------------------------------------------------- /alpine-base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/alpine-base/Dockerfile -------------------------------------------------------------------------------- /alpine-base/Dockerfile-aliyun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/alpine-base/Dockerfile-aliyun -------------------------------------------------------------------------------- /alpine-base/Dockerfile-mini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/alpine-base/Dockerfile-mini -------------------------------------------------------------------------------- /alpine-base/Dockerfile-mini-aliyun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/alpine-base/Dockerfile-mini-aliyun -------------------------------------------------------------------------------- /alpine-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/alpine-base/README.md -------------------------------------------------------------------------------- /alpine-base/root/etc/cont-init.d/01-permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/alpine-base/root/etc/cont-init.d/01-permissions -------------------------------------------------------------------------------- /alpine-base/root/etc/cont-init.d/02-zabbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/alpine-base/root/etc/cont-init.d/02-zabbix -------------------------------------------------------------------------------- /alpine-base/root/etc/cont-init.d/03-cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/alpine-base/root/etc/cont-init.d/03-cron -------------------------------------------------------------------------------- /alpine-base/root/etc/cont-init.d/04-smtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/alpine-base/root/etc/cont-init.d/04-smtp -------------------------------------------------------------------------------- /alpine-base/root/etc/cont-init.d/99-container-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/alpine-base/root/etc/cont-init.d/99-container-init -------------------------------------------------------------------------------- /alpine-base/root/etc/fix-attrs.d/02-zabbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/alpine-base/root/etc/fix-attrs.d/02-zabbix -------------------------------------------------------------------------------- /alpine-base/root/etc/fix-attrs.d/03-logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/alpine-base/root/etc/fix-attrs.d/03-logrotate -------------------------------------------------------------------------------- /alpine-base/root/etc/s6/services/02-zabbix/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/alpine-base/root/etc/s6/services/02-zabbix/run -------------------------------------------------------------------------------- /alpine-base/root/etc/s6/services/03-cron/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/alpine-base/root/etc/s6/services/03-cron/run -------------------------------------------------------------------------------- /alpine-base/root/etc/s6/services/04-smtp/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/alpine-base/root/etc/s6/services/04-smtp/run -------------------------------------------------------------------------------- /alpine-base/root/etc/zabbix/zabbix_agentd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/alpine-base/root/etc/zabbix/zabbix_agentd.conf -------------------------------------------------------------------------------- /alpine-base/root/etc/zabbix/zabbix_agentd.conf.d/.hidden: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /alpine-base/root/etc/zabbix/zabbix_agentd.conf.d/container_os.conf: -------------------------------------------------------------------------------- 1 | UserParameter=agent.os,grep "PRETTY_NAME" /etc/os-release | cut -d '"' -f2 2 | -------------------------------------------------------------------------------- /alpine-base/root/etc/zabbix/zabbix_agentd.conf.d/updated_packages.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/alpine-base/root/etc/zabbix/zabbix_agentd.conf.d/updated_packages.conf -------------------------------------------------------------------------------- /bind/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/bind/Dockerfile -------------------------------------------------------------------------------- /bind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/bind/README.md -------------------------------------------------------------------------------- /bind/root/etc/bind/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/bind/root/etc/bind/README -------------------------------------------------------------------------------- /bind/root/etc/bind/default-zones/db.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/bind/root/etc/bind/default-zones/db.0 -------------------------------------------------------------------------------- /bind/root/etc/bind/default-zones/db.127: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/bind/root/etc/bind/default-zones/db.127 -------------------------------------------------------------------------------- /bind/root/etc/bind/default-zones/db.255: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/bind/root/etc/bind/default-zones/db.255 -------------------------------------------------------------------------------- /bind/root/etc/bind/default-zones/db.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/bind/root/etc/bind/default-zones/db.empty -------------------------------------------------------------------------------- /bind/root/etc/bind/default-zones/db.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/bind/root/etc/bind/default-zones/db.local -------------------------------------------------------------------------------- /bind/root/etc/bind/default-zones/db.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/bind/root/etc/bind/default-zones/db.root -------------------------------------------------------------------------------- /bind/root/etc/bind/example-configs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/bind/root/etc/bind/example-configs/README -------------------------------------------------------------------------------- /bind/root/etc/bind/example-configs/authoritative/named.conf.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/bind/root/etc/bind/example-configs/authoritative/named.conf.options -------------------------------------------------------------------------------- /bind/root/etc/bind/example-configs/recursive-resolver/named.conf.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/bind/root/etc/bind/example-configs/recursive-resolver/named.conf.options -------------------------------------------------------------------------------- /bind/root/etc/bind/named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/bind/root/etc/bind/named.conf -------------------------------------------------------------------------------- /bind/root/etc/bind/named.conf.default-zones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/bind/root/etc/bind/named.conf.default-zones -------------------------------------------------------------------------------- /bind/root/etc/bind/named.conf.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/bind/root/etc/bind/named.conf.local -------------------------------------------------------------------------------- /bind/root/etc/bind/named.conf.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/bind/root/etc/bind/named.conf.options -------------------------------------------------------------------------------- /bind/root/etc/bind/named.conf.rfc1918: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/bind/root/etc/bind/named.conf.rfc1918 -------------------------------------------------------------------------------- /bind/root/etc/s6/services/33-bind/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/bind/root/etc/s6/services/33-bind/run -------------------------------------------------------------------------------- /dnsmasq/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/dnsmasq/Dockerfile -------------------------------------------------------------------------------- /dnsmasq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/dnsmasq/README.md -------------------------------------------------------------------------------- /dnsmasq/root/etc/dnsmasq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/dnsmasq/root/etc/dnsmasq.conf -------------------------------------------------------------------------------- /dnsmasq/root/etc/s6/services/31-webproc/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/dnsmasq/root/etc/s6/services/31-webproc/run -------------------------------------------------------------------------------- /glibc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/glibc/Dockerfile -------------------------------------------------------------------------------- /glibc/Dockerfile-mini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/glibc/Dockerfile-mini -------------------------------------------------------------------------------- /mariadb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/mariadb/Dockerfile -------------------------------------------------------------------------------- /mariadb/root/etc/mysql/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/mariadb/root/etc/mysql/my.cnf -------------------------------------------------------------------------------- /mariadb/root/etc/s6/services/10-mariadb/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/mariadb/root/etc/s6/services/10-mariadb/run -------------------------------------------------------------------------------- /mariadb/root/etc/zabbix/.my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/mariadb/root/etc/zabbix/.my.cnf -------------------------------------------------------------------------------- /mariadb/root/etc/zabbix/zabbix_agentd.conf.d/mysql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/mariadb/root/etc/zabbix/zabbix_agentd.conf.d/mysql.conf -------------------------------------------------------------------------------- /mariadb/root/tmp/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/mariadb/root/tmp/install.sh -------------------------------------------------------------------------------- /memcached/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/memcached/Dockerfile -------------------------------------------------------------------------------- /memcached/root/etc/s6/services/10-memcached/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/memcached/root/etc/s6/services/10-memcached/run -------------------------------------------------------------------------------- /memcached/root/etc/zabbix/zabbix_agentd.conf.d/memcached.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/memcached/root/etc/zabbix/zabbix_agentd.conf.d/memcached.conf -------------------------------------------------------------------------------- /nginx-php/5.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/5.6/Dockerfile -------------------------------------------------------------------------------- /nginx-php/5.6/root/assets/maintenance/maintenance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/5.6/root/assets/maintenance/maintenance.html -------------------------------------------------------------------------------- /nginx-php/5.6/root/etc/cont-init.d/09-nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/5.6/root/etc/cont-init.d/09-nginx -------------------------------------------------------------------------------- /nginx-php/5.6/root/etc/cont-init.d/20-php-fpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/5.6/root/etc/cont-init.d/20-php-fpm -------------------------------------------------------------------------------- /nginx-php/5.6/root/etc/logrotate.d/nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/5.6/root/etc/logrotate.d/nginx -------------------------------------------------------------------------------- /nginx-php/5.6/root/etc/logrotate.d/php-fpm7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/5.6/root/etc/logrotate.d/php-fpm7 -------------------------------------------------------------------------------- /nginx-php/5.6/root/etc/nginx/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/5.6/root/etc/nginx/conf.d/default.conf -------------------------------------------------------------------------------- /nginx-php/5.6/root/etc/nginx/conf.d/default.llng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/5.6/root/etc/nginx/conf.d/default.llng -------------------------------------------------------------------------------- /nginx-php/5.6/root/etc/nginx/conf.d/maintenance.conf.maint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/5.6/root/etc/nginx/conf.d/maintenance.conf.maint -------------------------------------------------------------------------------- /nginx-php/5.6/root/etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/5.6/root/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /nginx-php/5.6/root/etc/php5/conf.d/apcu.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/5.6/root/etc/php5/conf.d/apcu.ini -------------------------------------------------------------------------------- /nginx-php/5.6/root/etc/php5/conf.d/opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/5.6/root/etc/php5/conf.d/opcache.ini -------------------------------------------------------------------------------- /nginx-php/5.6/root/etc/php5/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/5.6/root/etc/php5/php-fpm.conf -------------------------------------------------------------------------------- /nginx-php/5.6/root/etc/php5/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/5.6/root/etc/php5/php.ini -------------------------------------------------------------------------------- /nginx-php/5.6/root/etc/s6/services/10-nginx/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/5.6/root/etc/s6/services/10-nginx/run -------------------------------------------------------------------------------- /nginx-php/5.6/root/etc/s6/services/20-php-fpm/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/5.6/root/etc/s6/services/20-php-fpm/run -------------------------------------------------------------------------------- /nginx-php/5.6/root/etc/zabbix/zabbix_agentd.conf.d/nginx-status.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/5.6/root/etc/zabbix/zabbix_agentd.conf.d/nginx-status.conf -------------------------------------------------------------------------------- /nginx-php/5.6/root/etc/zabbix/zabbix_agentd.conf.d/php-fpm-params.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/5.6/root/etc/zabbix/zabbix_agentd.conf.d/php-fpm-params.conf -------------------------------------------------------------------------------- /nginx-php/5.6/root/etc/zabbix/zabbix_agentd.conf.d/php-opcache-check.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/5.6/root/etc/zabbix/zabbix_agentd.conf.d/php-opcache-check.conf -------------------------------------------------------------------------------- /nginx-php/5.6/root/etc/zabbix/zabbix_agentd.conf.d/php/php-opcache-check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/5.6/root/etc/zabbix/zabbix_agentd.conf.d/php/php-opcache-check.php -------------------------------------------------------------------------------- /nginx-php/5.6/root/etc/zabbix/zabbix_agentd.conf.d/scripts/nginx-status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/5.6/root/etc/zabbix/zabbix_agentd.conf.d/scripts/nginx-status.sh -------------------------------------------------------------------------------- /nginx-php/5.6/root/etc/zabbix/zabbix_agentd.conf.d/scripts/php-fpm-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/5.6/root/etc/zabbix/zabbix_agentd.conf.d/scripts/php-fpm-check.sh -------------------------------------------------------------------------------- /nginx-php/5.6/root/tmp/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/5.6/root/tmp/install.sh -------------------------------------------------------------------------------- /nginx-php/5.6/root/usr/sbin/maintenance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/5.6/root/usr/sbin/maintenance -------------------------------------------------------------------------------- /nginx-php/7.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/7.1/Dockerfile -------------------------------------------------------------------------------- /nginx-php/7.1/root/assets/maintenance/maintenance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/7.1/root/assets/maintenance/maintenance.html -------------------------------------------------------------------------------- /nginx-php/7.1/root/etc/cont-init.d/08-hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/7.1/root/etc/cont-init.d/08-hosts -------------------------------------------------------------------------------- /nginx-php/7.1/root/etc/cont-init.d/09-nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/7.1/root/etc/cont-init.d/09-nginx -------------------------------------------------------------------------------- /nginx-php/7.1/root/etc/cont-init.d/20-php-fpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/7.1/root/etc/cont-init.d/20-php-fpm -------------------------------------------------------------------------------- /nginx-php/7.1/root/etc/logrotate.d/nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/7.1/root/etc/logrotate.d/nginx -------------------------------------------------------------------------------- /nginx-php/7.1/root/etc/logrotate.d/php-fpm7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/7.1/root/etc/logrotate.d/php-fpm7 -------------------------------------------------------------------------------- /nginx-php/7.1/root/etc/nginx/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/7.1/root/etc/nginx/conf.d/default.conf -------------------------------------------------------------------------------- /nginx-php/7.1/root/etc/nginx/conf.d/default.llng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/7.1/root/etc/nginx/conf.d/default.llng -------------------------------------------------------------------------------- /nginx-php/7.1/root/etc/nginx/conf.d/maintenance.conf.maint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/7.1/root/etc/nginx/conf.d/maintenance.conf.maint -------------------------------------------------------------------------------- /nginx-php/7.1/root/etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/7.1/root/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /nginx-php/7.1/root/etc/php7/conf.d/00_opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/7.1/root/etc/php7/conf.d/00_opcache.ini -------------------------------------------------------------------------------- /nginx-php/7.1/root/etc/php7/conf.d/apcu.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/7.1/root/etc/php7/conf.d/apcu.ini -------------------------------------------------------------------------------- /nginx-php/7.1/root/etc/php7/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/7.1/root/etc/php7/php-fpm.conf -------------------------------------------------------------------------------- /nginx-php/7.1/root/etc/php7/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/7.1/root/etc/php7/php.ini -------------------------------------------------------------------------------- /nginx-php/7.1/root/etc/s6/services/10-nginx/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/7.1/root/etc/s6/services/10-nginx/run -------------------------------------------------------------------------------- /nginx-php/7.1/root/etc/s6/services/20-php-fpm/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/7.1/root/etc/s6/services/20-php-fpm/run -------------------------------------------------------------------------------- /nginx-php/7.1/root/etc/zabbix/zabbix_agentd.conf.d/nginx-status.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/7.1/root/etc/zabbix/zabbix_agentd.conf.d/nginx-status.conf -------------------------------------------------------------------------------- /nginx-php/7.1/root/etc/zabbix/zabbix_agentd.conf.d/php-fpm-params.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/7.1/root/etc/zabbix/zabbix_agentd.conf.d/php-fpm-params.conf -------------------------------------------------------------------------------- /nginx-php/7.1/root/etc/zabbix/zabbix_agentd.conf.d/php-opcache-check.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/7.1/root/etc/zabbix/zabbix_agentd.conf.d/php-opcache-check.conf -------------------------------------------------------------------------------- /nginx-php/7.1/root/etc/zabbix/zabbix_agentd.conf.d/php/php-opcache-check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/7.1/root/etc/zabbix/zabbix_agentd.conf.d/php/php-opcache-check.php -------------------------------------------------------------------------------- /nginx-php/7.1/root/etc/zabbix/zabbix_agentd.conf.d/scripts/nginx-status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/7.1/root/etc/zabbix/zabbix_agentd.conf.d/scripts/nginx-status.sh -------------------------------------------------------------------------------- /nginx-php/7.1/root/etc/zabbix/zabbix_agentd.conf.d/scripts/php-fpm-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/7.1/root/etc/zabbix/zabbix_agentd.conf.d/scripts/php-fpm-check.sh -------------------------------------------------------------------------------- /nginx-php/7.1/root/usr/sbin/maintenance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx-php/7.1/root/usr/sbin/maintenance -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/root/assets/maintenance/maintenance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx/root/assets/maintenance/maintenance.html -------------------------------------------------------------------------------- /nginx/root/etc/cont-init.d/09-nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx/root/etc/cont-init.d/09-nginx -------------------------------------------------------------------------------- /nginx/root/etc/logrotate.d/nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx/root/etc/logrotate.d/nginx -------------------------------------------------------------------------------- /nginx/root/etc/nginx/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx/root/etc/nginx/conf.d/default.conf -------------------------------------------------------------------------------- /nginx/root/etc/nginx/conf.d/default.llng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx/root/etc/nginx/conf.d/default.llng -------------------------------------------------------------------------------- /nginx/root/etc/nginx/conf.d/maintenance.conf.maint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx/root/etc/nginx/conf.d/maintenance.conf.maint -------------------------------------------------------------------------------- /nginx/root/etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx/root/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /nginx/root/etc/s6/services/10-nginx/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx/root/etc/s6/services/10-nginx/run -------------------------------------------------------------------------------- /nginx/root/etc/zabbix/zabbix_agentd.conf.d/nginx-status.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx/root/etc/zabbix/zabbix_agentd.conf.d/nginx-status.conf -------------------------------------------------------------------------------- /nginx/root/etc/zabbix/zabbix_agentd.conf.d/scripts/nginx-status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx/root/etc/zabbix/zabbix_agentd.conf.d/scripts/nginx-status.sh -------------------------------------------------------------------------------- /nginx/root/usr/sbin/maintenance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/nginx/root/usr/sbin/maintenance -------------------------------------------------------------------------------- /openjdk/7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/openjdk/7/Dockerfile -------------------------------------------------------------------------------- /openjdk/8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/openjdk/8/Dockerfile -------------------------------------------------------------------------------- /openssh/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/openssh/Dockerfile -------------------------------------------------------------------------------- /openssh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/openssh/README.md -------------------------------------------------------------------------------- /openssh/root/etc/s6/services/30-sshd/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/openssh/root/etc/s6/services/30-sshd/run -------------------------------------------------------------------------------- /oraclejdk/8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/oraclejdk/8/Dockerfile -------------------------------------------------------------------------------- /oraclejdk/8/Dockerfile-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/oraclejdk/8/Dockerfile-test -------------------------------------------------------------------------------- /php/5.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/5.6/Dockerfile -------------------------------------------------------------------------------- /php/5.6/root/assets/maintenance/maintenance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/5.6/root/assets/maintenance/maintenance.html -------------------------------------------------------------------------------- /php/5.6/root/etc/cont-init.d/09-nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/5.6/root/etc/cont-init.d/09-nginx -------------------------------------------------------------------------------- /php/5.6/root/etc/cont-init.d/20-php-fpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/5.6/root/etc/cont-init.d/20-php-fpm -------------------------------------------------------------------------------- /php/5.6/root/etc/logrotate.d/nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/5.6/root/etc/logrotate.d/nginx -------------------------------------------------------------------------------- /php/5.6/root/etc/logrotate.d/php-fpm7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/5.6/root/etc/logrotate.d/php-fpm7 -------------------------------------------------------------------------------- /php/5.6/root/etc/nginx/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/5.6/root/etc/nginx/conf.d/default.conf -------------------------------------------------------------------------------- /php/5.6/root/etc/nginx/conf.d/default.llng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/5.6/root/etc/nginx/conf.d/default.llng -------------------------------------------------------------------------------- /php/5.6/root/etc/nginx/conf.d/maintenance.conf.maint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/5.6/root/etc/nginx/conf.d/maintenance.conf.maint -------------------------------------------------------------------------------- /php/5.6/root/etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/5.6/root/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /php/5.6/root/etc/php5/conf.d/apcu.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/5.6/root/etc/php5/conf.d/apcu.ini -------------------------------------------------------------------------------- /php/5.6/root/etc/php5/conf.d/opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/5.6/root/etc/php5/conf.d/opcache.ini -------------------------------------------------------------------------------- /php/5.6/root/etc/php5/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/5.6/root/etc/php5/php-fpm.conf -------------------------------------------------------------------------------- /php/5.6/root/etc/php5/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/5.6/root/etc/php5/php.ini -------------------------------------------------------------------------------- /php/5.6/root/etc/s6/services/10-nginx/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/5.6/root/etc/s6/services/10-nginx/run -------------------------------------------------------------------------------- /php/5.6/root/etc/s6/services/20-php-fpm/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/5.6/root/etc/s6/services/20-php-fpm/run -------------------------------------------------------------------------------- /php/5.6/root/etc/zabbix/zabbix_agentd.conf.d/nginx-status.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/5.6/root/etc/zabbix/zabbix_agentd.conf.d/nginx-status.conf -------------------------------------------------------------------------------- /php/5.6/root/etc/zabbix/zabbix_agentd.conf.d/php-fpm-params.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/5.6/root/etc/zabbix/zabbix_agentd.conf.d/php-fpm-params.conf -------------------------------------------------------------------------------- /php/5.6/root/etc/zabbix/zabbix_agentd.conf.d/php-opcache-check.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/5.6/root/etc/zabbix/zabbix_agentd.conf.d/php-opcache-check.conf -------------------------------------------------------------------------------- /php/5.6/root/etc/zabbix/zabbix_agentd.conf.d/php/php-opcache-check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/5.6/root/etc/zabbix/zabbix_agentd.conf.d/php/php-opcache-check.php -------------------------------------------------------------------------------- /php/5.6/root/etc/zabbix/zabbix_agentd.conf.d/scripts/nginx-status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/5.6/root/etc/zabbix/zabbix_agentd.conf.d/scripts/nginx-status.sh -------------------------------------------------------------------------------- /php/5.6/root/etc/zabbix/zabbix_agentd.conf.d/scripts/php-fpm-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/5.6/root/etc/zabbix/zabbix_agentd.conf.d/scripts/php-fpm-check.sh -------------------------------------------------------------------------------- /php/5.6/root/tmp/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/5.6/root/tmp/install.sh -------------------------------------------------------------------------------- /php/5.6/root/usr/sbin/maintenance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/5.6/root/usr/sbin/maintenance -------------------------------------------------------------------------------- /php/7.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/7.1/Dockerfile -------------------------------------------------------------------------------- /php/7.1/root/assets/maintenance/maintenance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/7.1/root/assets/maintenance/maintenance.html -------------------------------------------------------------------------------- /php/7.1/root/etc/cont-init.d/20-php-fpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/7.1/root/etc/cont-init.d/20-php-fpm -------------------------------------------------------------------------------- /php/7.1/root/etc/logrotate.d/php-fpm7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/7.1/root/etc/logrotate.d/php-fpm7 -------------------------------------------------------------------------------- /php/7.1/root/etc/php7/conf.d/00_opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/7.1/root/etc/php7/conf.d/00_opcache.ini -------------------------------------------------------------------------------- /php/7.1/root/etc/php7/conf.d/apcu.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/7.1/root/etc/php7/conf.d/apcu.ini -------------------------------------------------------------------------------- /php/7.1/root/etc/php7/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/7.1/root/etc/php7/php-fpm.conf -------------------------------------------------------------------------------- /php/7.1/root/etc/php7/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/7.1/root/etc/php7/php.ini -------------------------------------------------------------------------------- /php/7.1/root/etc/s6/services/20-php-fpm/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/7.1/root/etc/s6/services/20-php-fpm/run -------------------------------------------------------------------------------- /php/7.1/root/etc/zabbix/zabbix_agentd.conf.d/php-fpm-params.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/7.1/root/etc/zabbix/zabbix_agentd.conf.d/php-fpm-params.conf -------------------------------------------------------------------------------- /php/7.1/root/etc/zabbix/zabbix_agentd.conf.d/php-opcache-check.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/7.1/root/etc/zabbix/zabbix_agentd.conf.d/php-opcache-check.conf -------------------------------------------------------------------------------- /php/7.1/root/etc/zabbix/zabbix_agentd.conf.d/php/php-opcache-check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/7.1/root/etc/zabbix/zabbix_agentd.conf.d/php/php-opcache-check.php -------------------------------------------------------------------------------- /php/7.1/root/etc/zabbix/zabbix_agentd.conf.d/scripts/nginx-status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/7.1/root/etc/zabbix/zabbix_agentd.conf.d/scripts/nginx-status.sh -------------------------------------------------------------------------------- /php/7.1/root/etc/zabbix/zabbix_agentd.conf.d/scripts/php-fpm-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/7.1/root/etc/zabbix/zabbix_agentd.conf.d/scripts/php-fpm-check.sh -------------------------------------------------------------------------------- /php/7.1/root/usr/sbin/maintenance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/php/7.1/root/usr/sbin/maintenance -------------------------------------------------------------------------------- /redis/3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/redis/3/Dockerfile -------------------------------------------------------------------------------- /redis/3/root/etc/s6/services/10-redis/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/redis/3/root/etc/s6/services/10-redis/run -------------------------------------------------------------------------------- /redis/3/root/etc/zabbix/zabbix_agentd.conf.d/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/redis/3/root/etc/zabbix/zabbix_agentd.conf.d/redis.conf -------------------------------------------------------------------------------- /redis/3/root/etc/zabbix/zabbix_agentd.conf.d/scripts/redis-discovery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/redis/3/root/etc/zabbix/zabbix_agentd.conf.d/scripts/redis-discovery.sh -------------------------------------------------------------------------------- /redis/4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/redis/4/Dockerfile -------------------------------------------------------------------------------- /redis/4/root/etc/s6/services/10-redis/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/redis/4/root/etc/s6/services/10-redis/run -------------------------------------------------------------------------------- /redis/4/root/etc/zabbix/zabbix_agentd.conf.d/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/redis/4/root/etc/zabbix/zabbix_agentd.conf.d/redis.conf -------------------------------------------------------------------------------- /redis/4/root/etc/zabbix/zabbix_agentd.conf.d/scripts/redis-discovery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/redis/4/root/etc/zabbix/zabbix_agentd.conf.d/scripts/redis-discovery.sh -------------------------------------------------------------------------------- /tomcat/7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/tomcat/7/Dockerfile -------------------------------------------------------------------------------- /tomcat/7/root/etc/cont-init.d/10-tomcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/tomcat/7/root/etc/cont-init.d/10-tomcat -------------------------------------------------------------------------------- /tomcat/7/root/etc/s6/services/10-tomcat/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/tomcat/7/root/etc/s6/services/10-tomcat/run -------------------------------------------------------------------------------- /tomcat/8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/tomcat/8/Dockerfile -------------------------------------------------------------------------------- /tomcat/8/root/etc/cont-init.d/10-tomcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/tomcat/8/root/etc/cont-init.d/10-tomcat -------------------------------------------------------------------------------- /tomcat/8/root/etc/s6/services/10-tomcat/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/tomcat/8/root/etc/s6/services/10-tomcat/run -------------------------------------------------------------------------------- /tomcat/9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/tomcat/9/Dockerfile -------------------------------------------------------------------------------- /tomcat/9/root/etc/cont-init.d/10-tomcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/tomcat/9/root/etc/cont-init.d/10-tomcat -------------------------------------------------------------------------------- /tomcat/9/root/etc/s6/services/10-tomcat/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/tomcat/9/root/etc/s6/services/10-tomcat/run -------------------------------------------------------------------------------- /unbound/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/unbound/Dockerfile -------------------------------------------------------------------------------- /unbound/root/etc/cont-init.d/10-unbound: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/unbound/root/etc/cont-init.d/10-unbound -------------------------------------------------------------------------------- /unbound/root/etc/s6/services/10-unbound/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/unbound/root/etc/s6/services/10-unbound/run -------------------------------------------------------------------------------- /unbound/root/etc/unbound/unbound.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/unbound/root/etc/unbound/unbound.conf -------------------------------------------------------------------------------- /varnish/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/varnish/Dockerfile -------------------------------------------------------------------------------- /varnish/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/varnish/README.md -------------------------------------------------------------------------------- /varnish/root/etc/s6/services/35-varnish/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/varnish/root/etc/s6/services/35-varnish/run -------------------------------------------------------------------------------- /varnish/root/etc/varnish/default.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/varnish/root/etc/varnish/default.vcl -------------------------------------------------------------------------------- /zabbix/agentd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/agentd/Dockerfile -------------------------------------------------------------------------------- /zabbix/agentd/Dockerfile-aliyun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/agentd/Dockerfile-aliyun -------------------------------------------------------------------------------- /zabbix/agentd/agent-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/agentd/agent-install.sh -------------------------------------------------------------------------------- /zabbix/agentd/root/etc/cont-init.d/01-permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/agentd/root/etc/cont-init.d/01-permissions -------------------------------------------------------------------------------- /zabbix/agentd/root/etc/cont-init.d/02-zabbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/agentd/root/etc/cont-init.d/02-zabbix -------------------------------------------------------------------------------- /zabbix/agentd/root/etc/cont-init.d/03-cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/agentd/root/etc/cont-init.d/03-cron -------------------------------------------------------------------------------- /zabbix/agentd/root/etc/cont-init.d/04-smtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/agentd/root/etc/cont-init.d/04-smtp -------------------------------------------------------------------------------- /zabbix/agentd/root/etc/cont-init.d/99-container-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/agentd/root/etc/cont-init.d/99-container-init -------------------------------------------------------------------------------- /zabbix/agentd/root/etc/fix-attrs.d/02-zabbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/agentd/root/etc/fix-attrs.d/02-zabbix -------------------------------------------------------------------------------- /zabbix/agentd/root/etc/fix-attrs.d/03-logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/agentd/root/etc/fix-attrs.d/03-logrotate -------------------------------------------------------------------------------- /zabbix/agentd/root/etc/s6/services/02-zabbix/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/agentd/root/etc/s6/services/02-zabbix/run -------------------------------------------------------------------------------- /zabbix/agentd/root/etc/s6/services/03-cron/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/agentd/root/etc/s6/services/03-cron/run -------------------------------------------------------------------------------- /zabbix/agentd/root/etc/s6/services/04-smtp/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/agentd/root/etc/s6/services/04-smtp/run -------------------------------------------------------------------------------- /zabbix/agentd/root/etc/zabbix/zabbix_agentd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/agentd/root/etc/zabbix/zabbix_agentd.conf -------------------------------------------------------------------------------- /zabbix/agentd/root/etc/zabbix/zabbix_agentd.conf.d/.hidden: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zabbix/agentd/root/etc/zabbix/zabbix_agentd.conf.d/container_os.conf: -------------------------------------------------------------------------------- 1 | UserParameter=agent.os,grep "PRETTY_NAME" /etc/os-release | cut -d '"' -f2 2 | -------------------------------------------------------------------------------- /zabbix/agentd/root/etc/zabbix/zabbix_agentd.conf.d/updated_packages.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/agentd/root/etc/zabbix/zabbix_agentd.conf.d/updated_packages.conf -------------------------------------------------------------------------------- /zabbix/mysql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/mysql/Dockerfile -------------------------------------------------------------------------------- /zabbix/mysql/root/etc/mysql/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/mysql/root/etc/mysql/my.cnf -------------------------------------------------------------------------------- /zabbix/mysql/root/etc/zabbix/.my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/mysql/root/etc/zabbix/.my.cnf -------------------------------------------------------------------------------- /zabbix/mysql/root/etc/zabbix/zabbix_agentd.conf.d/.hidden: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zabbix/mysql/root/etc/zabbix/zabbix_agentd.conf.d/mysql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/mysql/root/etc/zabbix/zabbix_agentd.conf.d/mysql.conf -------------------------------------------------------------------------------- /zabbix/mysql/root/mysql/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/mysql/root/mysql/startup.sh -------------------------------------------------------------------------------- /zabbix/mysql/root/mysql/zabbix.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/mysql/root/mysql/zabbix.sql -------------------------------------------------------------------------------- /zabbix/server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/server/Dockerfile -------------------------------------------------------------------------------- /zabbix/server/Dockerfile-mini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/server/Dockerfile-mini -------------------------------------------------------------------------------- /zabbix/server/root/etc/zabbix/.my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/server/root/etc/zabbix/.my.cnf -------------------------------------------------------------------------------- /zabbix/server/root/etc/zabbix/zabbix_server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/server/root/etc/zabbix/zabbix_server.conf -------------------------------------------------------------------------------- /zabbix/server/root/zabbix/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/server/root/zabbix/install.sh -------------------------------------------------------------------------------- /zabbix/server/root/zabbix/msyh.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/server/root/zabbix/msyh.ttf -------------------------------------------------------------------------------- /zabbix/server/root/zabbix/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/server/root/zabbix/startup.sh -------------------------------------------------------------------------------- /zabbix/server/root/zabbix/zabbix.conf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqzt/docker-alpine/HEAD/zabbix/server/root/zabbix/zabbix.conf.php --------------------------------------------------------------------------------