├── .gitignore ├── LICENSE ├── README.md ├── alpine ├── 3.11 │ ├── Dockerfile │ └── README.md ├── 3.7 │ ├── Dockerfile │ └── README.md ├── 3.8 │ ├── Dockerfile │ └── README.md ├── 3.9 │ ├── Dockerfile │ └── README.md └── edge │ └── Dockerfile ├── cassandra └── v12 │ └── Dockerfile ├── centos ├── 6 │ └── Dockerfile └── 7 │ └── Dockerfile ├── cerebro ├── 0.8.1 │ ├── Dockerfile │ └── run.sh └── 0.8.3 │ ├── Dockerfile │ └── run.sh ├── elasticstack └── elasticsearch │ └── 6.6.1 │ ├── Dockerfile │ └── run.sh ├── etcd └── 3.2.18 │ ├── Dockerfile │ └── run.sh ├── go └── 1.10 │ └── Dockerfile ├── grafana ├── 4.6.3 │ ├── Dockerfile │ ├── conf │ │ ├── custom.ini │ │ └── defaults.ini │ └── run.sh ├── 5.2.0 │ ├── Dockerfile │ └── run.sh ├── 5.2.2 │ ├── Dockerfile │ └── run.sh └── 5.4.2 │ ├── Dockerfile │ └── run.sh ├── jdk ├── 8u151 │ └── Dockerfile ├── 8u181 │ └── Dockerfile └── 8u212 │ └── Dockerfile ├── jre ├── 1105 │ └── Dockerfile ├── 8u151 │ └── Dockerfile ├── 8u181 │ └── Dockerfile └── 8u232 │ └── Dockerfile ├── kafka └── 2.1.0 │ ├── Dockerfile │ └── log4j.properties ├── maven └── 3.5.2 │ └── Dockerfile ├── mysql ├── 5.6.35 │ ├── Dockerfile │ ├── init-db.sh │ └── run.sh ├── 5.7.21 │ ├── Dockerfile │ ├── init.password.sql │ ├── my.cnf │ └── run.sh ├── 5.7.23 │ ├── Dockerfile │ ├── init.password.sql │ ├── my.cnf │ └── run.sh ├── 5.7.24 │ ├── Dockerfile │ ├── init.password.sql │ ├── my.cnf │ └── run.sh └── 5.7.30 │ ├── Dockerfile │ ├── init.sql │ ├── my.cnf │ └── run.sh ├── nginx ├── 1.12.2 │ ├── Dockerfile │ └── files │ │ ├── etc │ │ └── nginx │ │ │ ├── nginx.conf │ │ │ └── vhosts │ │ │ └── default.conf │ │ └── run.sh └── 1.14.0 │ ├── Dockerfile │ └── files │ ├── etc │ └── nginx │ │ ├── nginx.conf │ │ └── vhosts │ │ └── default.conf │ └── run.sh ├── nodejs ├── 8.11.4 │ └── Dockerfile ├── 8.12.0 │ └── Dockerfile ├── 8.9.3 │ ├── Dockerfile │ └── job.sh └── 9.11.1 │ └── Dockerfile ├── php └── 7.1.17 │ ├── Dockerfile │ └── files │ └── etc │ └── php7 │ ├── php-fpm.conf │ ├── php-fpm.d │ └── www.conf │ └── php.ini ├── postgres └── 10.4-alpine │ └── Dockerfile ├── python ├── 2.7.14 │ ├── Dockerfile │ └── job.sh ├── 3.6.3 │ ├── Dockerfile │ └── job.sh └── 3.6.5-centos │ ├── Dockerfile │ └── job.sh ├── redis ├── 4.0.10 │ ├── Dockerfile │ └── run.sh ├── 4.0.11 │ ├── Dockerfile │ └── run.sh ├── 4.0.12 │ ├── Dockerfile │ ├── redis-sentinel.conf │ └── run.sh ├── 4.0.6 │ ├── Dockerfile │ └── run.sh └── 5.0.7 │ ├── Dockerfile │ ├── init-cluster.sh │ ├── redis-sentinel.conf │ └── run.sh ├── sonarqube ├── 7.0 │ ├── Dockerfile │ └── run.sh └── 7.1 │ ├── Dockerfile │ └── run.sh ├── tensorflow └── 1.11.0 │ └── Dockerfile ├── zipkin └── 2.5.1 │ ├── Dockerfile │ ├── README.md │ └── run.sh └── zookeeper ├── 3.4.10 ├── Dockerfile ├── init-dir.sh ├── user-zookeeper-chown-dir ├── zkGenConfig.sh ├── zkMetrics.sh └── zkOk.sh ├── 3.4.13 ├── Dockerfile ├── init-dir.sh ├── user-zookeeper-chown-dir ├── zkGenConfig.sh ├── zkMetrics.sh └── zkOk.sh └── 3.6.0 ├── Dockerfile ├── run.sh ├── zkMetrics.sh └── zkOk.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .git 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/README.md -------------------------------------------------------------------------------- /alpine/3.11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/alpine/3.11/Dockerfile -------------------------------------------------------------------------------- /alpine/3.11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/alpine/3.11/README.md -------------------------------------------------------------------------------- /alpine/3.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/alpine/3.7/Dockerfile -------------------------------------------------------------------------------- /alpine/3.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/alpine/3.7/README.md -------------------------------------------------------------------------------- /alpine/3.8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/alpine/3.8/Dockerfile -------------------------------------------------------------------------------- /alpine/3.8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/alpine/3.8/README.md -------------------------------------------------------------------------------- /alpine/3.9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/alpine/3.9/Dockerfile -------------------------------------------------------------------------------- /alpine/3.9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/alpine/3.9/README.md -------------------------------------------------------------------------------- /alpine/edge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/alpine/edge/Dockerfile -------------------------------------------------------------------------------- /cassandra/v12/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM gcr.io/google-samples/cassandra:v12 -------------------------------------------------------------------------------- /centos/6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/centos/6/Dockerfile -------------------------------------------------------------------------------- /centos/7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/centos/7/Dockerfile -------------------------------------------------------------------------------- /cerebro/0.8.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/cerebro/0.8.1/Dockerfile -------------------------------------------------------------------------------- /cerebro/0.8.1/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/cerebro/0.8.1/run.sh -------------------------------------------------------------------------------- /cerebro/0.8.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/cerebro/0.8.3/Dockerfile -------------------------------------------------------------------------------- /cerebro/0.8.3/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/cerebro/0.8.3/run.sh -------------------------------------------------------------------------------- /elasticstack/elasticsearch/6.6.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/elasticstack/elasticsearch/6.6.1/Dockerfile -------------------------------------------------------------------------------- /elasticstack/elasticsearch/6.6.1/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/elasticstack/elasticsearch/6.6.1/run.sh -------------------------------------------------------------------------------- /etcd/3.2.18/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/etcd/3.2.18/Dockerfile -------------------------------------------------------------------------------- /etcd/3.2.18/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/etcd/3.2.18/run.sh -------------------------------------------------------------------------------- /go/1.10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/go/1.10/Dockerfile -------------------------------------------------------------------------------- /grafana/4.6.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/grafana/4.6.3/Dockerfile -------------------------------------------------------------------------------- /grafana/4.6.3/conf/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/grafana/4.6.3/conf/custom.ini -------------------------------------------------------------------------------- /grafana/4.6.3/conf/defaults.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/grafana/4.6.3/conf/defaults.ini -------------------------------------------------------------------------------- /grafana/4.6.3/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/grafana/4.6.3/run.sh -------------------------------------------------------------------------------- /grafana/5.2.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/grafana/5.2.0/Dockerfile -------------------------------------------------------------------------------- /grafana/5.2.0/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/grafana/5.2.0/run.sh -------------------------------------------------------------------------------- /grafana/5.2.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/grafana/5.2.2/Dockerfile -------------------------------------------------------------------------------- /grafana/5.2.2/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/grafana/5.2.2/run.sh -------------------------------------------------------------------------------- /grafana/5.4.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/grafana/5.4.2/Dockerfile -------------------------------------------------------------------------------- /grafana/5.4.2/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/grafana/5.4.2/run.sh -------------------------------------------------------------------------------- /jdk/8u151/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/jdk/8u151/Dockerfile -------------------------------------------------------------------------------- /jdk/8u181/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/jdk/8u181/Dockerfile -------------------------------------------------------------------------------- /jdk/8u212/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/jdk/8u212/Dockerfile -------------------------------------------------------------------------------- /jre/1105/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/jre/1105/Dockerfile -------------------------------------------------------------------------------- /jre/8u151/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/jre/8u151/Dockerfile -------------------------------------------------------------------------------- /jre/8u181/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/jre/8u181/Dockerfile -------------------------------------------------------------------------------- /jre/8u232/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/jre/8u232/Dockerfile -------------------------------------------------------------------------------- /kafka/2.1.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/kafka/2.1.0/Dockerfile -------------------------------------------------------------------------------- /kafka/2.1.0/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/kafka/2.1.0/log4j.properties -------------------------------------------------------------------------------- /maven/3.5.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/maven/3.5.2/Dockerfile -------------------------------------------------------------------------------- /mysql/5.6.35/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/mysql/5.6.35/Dockerfile -------------------------------------------------------------------------------- /mysql/5.6.35/init-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/mysql/5.6.35/init-db.sh -------------------------------------------------------------------------------- /mysql/5.6.35/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/mysql/5.6.35/run.sh -------------------------------------------------------------------------------- /mysql/5.7.21/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/mysql/5.7.21/Dockerfile -------------------------------------------------------------------------------- /mysql/5.7.21/init.password.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/mysql/5.7.21/init.password.sql -------------------------------------------------------------------------------- /mysql/5.7.21/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/mysql/5.7.21/my.cnf -------------------------------------------------------------------------------- /mysql/5.7.21/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/mysql/5.7.21/run.sh -------------------------------------------------------------------------------- /mysql/5.7.23/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/mysql/5.7.23/Dockerfile -------------------------------------------------------------------------------- /mysql/5.7.23/init.password.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/mysql/5.7.23/init.password.sql -------------------------------------------------------------------------------- /mysql/5.7.23/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/mysql/5.7.23/my.cnf -------------------------------------------------------------------------------- /mysql/5.7.23/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/mysql/5.7.23/run.sh -------------------------------------------------------------------------------- /mysql/5.7.24/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/mysql/5.7.24/Dockerfile -------------------------------------------------------------------------------- /mysql/5.7.24/init.password.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/mysql/5.7.24/init.password.sql -------------------------------------------------------------------------------- /mysql/5.7.24/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/mysql/5.7.24/my.cnf -------------------------------------------------------------------------------- /mysql/5.7.24/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/mysql/5.7.24/run.sh -------------------------------------------------------------------------------- /mysql/5.7.30/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/mysql/5.7.30/Dockerfile -------------------------------------------------------------------------------- /mysql/5.7.30/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/mysql/5.7.30/init.sql -------------------------------------------------------------------------------- /mysql/5.7.30/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/mysql/5.7.30/my.cnf -------------------------------------------------------------------------------- /mysql/5.7.30/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/mysql/5.7.30/run.sh -------------------------------------------------------------------------------- /nginx/1.12.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/nginx/1.12.2/Dockerfile -------------------------------------------------------------------------------- /nginx/1.12.2/files/etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/nginx/1.12.2/files/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /nginx/1.12.2/files/etc/nginx/vhosts/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/nginx/1.12.2/files/etc/nginx/vhosts/default.conf -------------------------------------------------------------------------------- /nginx/1.12.2/files/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/nginx/1.12.2/files/run.sh -------------------------------------------------------------------------------- /nginx/1.14.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/nginx/1.14.0/Dockerfile -------------------------------------------------------------------------------- /nginx/1.14.0/files/etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/nginx/1.14.0/files/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /nginx/1.14.0/files/etc/nginx/vhosts/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/nginx/1.14.0/files/etc/nginx/vhosts/default.conf -------------------------------------------------------------------------------- /nginx/1.14.0/files/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/nginx/1.14.0/files/run.sh -------------------------------------------------------------------------------- /nodejs/8.11.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/nodejs/8.11.4/Dockerfile -------------------------------------------------------------------------------- /nodejs/8.12.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/nodejs/8.12.0/Dockerfile -------------------------------------------------------------------------------- /nodejs/8.9.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/nodejs/8.9.3/Dockerfile -------------------------------------------------------------------------------- /nodejs/8.9.3/job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/nodejs/8.9.3/job.sh -------------------------------------------------------------------------------- /nodejs/9.11.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/nodejs/9.11.1/Dockerfile -------------------------------------------------------------------------------- /php/7.1.17/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/php/7.1.17/Dockerfile -------------------------------------------------------------------------------- /php/7.1.17/files/etc/php7/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/php/7.1.17/files/etc/php7/php-fpm.conf -------------------------------------------------------------------------------- /php/7.1.17/files/etc/php7/php-fpm.d/www.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/php/7.1.17/files/etc/php7/php-fpm.d/www.conf -------------------------------------------------------------------------------- /php/7.1.17/files/etc/php7/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/php/7.1.17/files/etc/php7/php.ini -------------------------------------------------------------------------------- /postgres/10.4-alpine/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM postgres:10.4-alpine -------------------------------------------------------------------------------- /python/2.7.14/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/python/2.7.14/Dockerfile -------------------------------------------------------------------------------- /python/2.7.14/job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/python/2.7.14/job.sh -------------------------------------------------------------------------------- /python/3.6.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/python/3.6.3/Dockerfile -------------------------------------------------------------------------------- /python/3.6.3/job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/python/3.6.3/job.sh -------------------------------------------------------------------------------- /python/3.6.5-centos/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/python/3.6.5-centos/Dockerfile -------------------------------------------------------------------------------- /python/3.6.5-centos/job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/python/3.6.5-centos/job.sh -------------------------------------------------------------------------------- /redis/4.0.10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/redis/4.0.10/Dockerfile -------------------------------------------------------------------------------- /redis/4.0.10/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/redis/4.0.10/run.sh -------------------------------------------------------------------------------- /redis/4.0.11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/redis/4.0.11/Dockerfile -------------------------------------------------------------------------------- /redis/4.0.11/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/redis/4.0.11/run.sh -------------------------------------------------------------------------------- /redis/4.0.12/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/redis/4.0.12/Dockerfile -------------------------------------------------------------------------------- /redis/4.0.12/redis-sentinel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/redis/4.0.12/redis-sentinel.conf -------------------------------------------------------------------------------- /redis/4.0.12/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/redis/4.0.12/run.sh -------------------------------------------------------------------------------- /redis/4.0.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/redis/4.0.6/Dockerfile -------------------------------------------------------------------------------- /redis/4.0.6/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/redis/4.0.6/run.sh -------------------------------------------------------------------------------- /redis/5.0.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/redis/5.0.7/Dockerfile -------------------------------------------------------------------------------- /redis/5.0.7/init-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/redis/5.0.7/init-cluster.sh -------------------------------------------------------------------------------- /redis/5.0.7/redis-sentinel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/redis/5.0.7/redis-sentinel.conf -------------------------------------------------------------------------------- /redis/5.0.7/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/redis/5.0.7/run.sh -------------------------------------------------------------------------------- /sonarqube/7.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/sonarqube/7.0/Dockerfile -------------------------------------------------------------------------------- /sonarqube/7.0/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/sonarqube/7.0/run.sh -------------------------------------------------------------------------------- /sonarqube/7.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/sonarqube/7.1/Dockerfile -------------------------------------------------------------------------------- /sonarqube/7.1/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/sonarqube/7.1/run.sh -------------------------------------------------------------------------------- /tensorflow/1.11.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/tensorflow/1.11.0/Dockerfile -------------------------------------------------------------------------------- /zipkin/2.5.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/zipkin/2.5.1/Dockerfile -------------------------------------------------------------------------------- /zipkin/2.5.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/zipkin/2.5.1/README.md -------------------------------------------------------------------------------- /zipkin/2.5.1/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/zipkin/2.5.1/run.sh -------------------------------------------------------------------------------- /zookeeper/3.4.10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/zookeeper/3.4.10/Dockerfile -------------------------------------------------------------------------------- /zookeeper/3.4.10/init-dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/zookeeper/3.4.10/init-dir.sh -------------------------------------------------------------------------------- /zookeeper/3.4.10/user-zookeeper-chown-dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/zookeeper/3.4.10/user-zookeeper-chown-dir -------------------------------------------------------------------------------- /zookeeper/3.4.10/zkGenConfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/zookeeper/3.4.10/zkGenConfig.sh -------------------------------------------------------------------------------- /zookeeper/3.4.10/zkMetrics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/zookeeper/3.4.10/zkMetrics.sh -------------------------------------------------------------------------------- /zookeeper/3.4.10/zkOk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/zookeeper/3.4.10/zkOk.sh -------------------------------------------------------------------------------- /zookeeper/3.4.13/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/zookeeper/3.4.13/Dockerfile -------------------------------------------------------------------------------- /zookeeper/3.4.13/init-dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/zookeeper/3.4.13/init-dir.sh -------------------------------------------------------------------------------- /zookeeper/3.4.13/user-zookeeper-chown-dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/zookeeper/3.4.13/user-zookeeper-chown-dir -------------------------------------------------------------------------------- /zookeeper/3.4.13/zkGenConfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/zookeeper/3.4.13/zkGenConfig.sh -------------------------------------------------------------------------------- /zookeeper/3.4.13/zkMetrics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/zookeeper/3.4.13/zkMetrics.sh -------------------------------------------------------------------------------- /zookeeper/3.4.13/zkOk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/zookeeper/3.4.13/zkOk.sh -------------------------------------------------------------------------------- /zookeeper/3.6.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/zookeeper/3.6.0/Dockerfile -------------------------------------------------------------------------------- /zookeeper/3.6.0/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/zookeeper/3.6.0/run.sh -------------------------------------------------------------------------------- /zookeeper/3.6.0/zkMetrics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/zookeeper/3.6.0/zkMetrics.sh -------------------------------------------------------------------------------- /zookeeper/3.6.0/zkOk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Statemood/dockerfiles/HEAD/zookeeper/3.6.0/zkOk.sh --------------------------------------------------------------------------------