├── AntLR └── Dockerfile ├── ApacheCassandra ├── 4.x │ ├── Dockerfile │ └── docker-entrypoint.sh ├── 5.x │ ├── Dockerfile │ └── docker-entrypoint.sh ├── Dockerfile └── docker-entrypoint.sh ├── ApacheGeode └── Dockerfile ├── ApacheKafka └── Dockerfile ├── ApacheSolr ├── Dockerfile └── scripts │ ├── docker-entrypoint.sh │ ├── init-var-solr │ ├── oom_solr.sh │ ├── precreate-core │ ├── run-initdb │ ├── solr-create │ ├── solr-demo │ ├── solr-fg │ ├── solr-foreground │ ├── solr-precreate │ ├── start-local-solr │ ├── stop-local-solr │ ├── wait-for-solr.sh │ └── wait-for-zookeeper.sh ├── ApacheSpark ├── Dockerfile └── entrypoint.sh ├── ApacheStorm ├── Dockerfile └── docker-entrypoint.sh ├── ApacheZeppelin ├── Dockerfile ├── log4j.properties └── log4j_docker.properties ├── ApacheZooKeeper ├── Dockerfile └── docker-entrypoint.sh ├── Bazel ├── Dockerfile ├── install_bazel.sh └── install_packages.sh ├── Beats ├── Dockerfile_Auditbeat ├── Dockerfile_Filebeat ├── Dockerfile_Heartbeat ├── Dockerfile_Metricbeat ├── Dockerfile_Packetbeat └── docker-entrypoint ├── CockroachDB └── Dockerfile ├── Consul └── Dockerfile ├── CouchDB ├── 10-docker-default.ini ├── Dockerfile ├── docker-entrypoint.sh └── vm.args ├── Couchbase ├── Dockerfile ├── couchbase-6.0.4.patch ├── flatbuffers.patch └── scripts │ ├── dummy.sh │ ├── entrypoint.sh │ └── run ├── Envoy └── Dockerfile ├── Grafana ├── Dockerfile └── run.sh ├── Heketi ├── Dockerfile ├── heketi-start.sh └── heketi.json ├── InfluxDB ├── Dockerfile ├── entrypoint.sh └── fetch-python-standalone.bash ├── Kibana ├── Dockerfile ├── bin │ └── kibana-docker └── config │ └── kibana.yml ├── Kong ├── Dockerfile └── docker-entrypoint.sh ├── Logstash ├── Dockerfile ├── bin │ └── docker-entrypoint ├── config │ ├── log4j2.file.properties │ ├── log4j2.properties │ ├── logstash-full.yml │ ├── logstash-oss.yml │ └── pipelines.yml ├── dockerfile_netty_tcnative ├── dockerfile_openssl_dynamic ├── env2yaml │ └── env2yaml.go └── pipeline │ └── default.conf ├── MesosphereMarathon └── Dockerfile ├── Minio └── Dockerfile ├── MySQL ├── 8.0.x │ ├── Dockerfile │ ├── config │ │ ├── conf.d │ │ │ └── docker.cnf │ │ └── my.cnf │ ├── docker-entrypoint.sh │ └── healthcheck.sh ├── 8.x │ ├── Dockerfile │ ├── config │ │ ├── conf.d │ │ │ └── docker.cnf │ │ └── my.cnf │ ├── docker-entrypoint.sh │ └── healthcheck.sh └── 9.x │ ├── Dockerfile │ └── docker-entrypoint.sh ├── Neo4j ├── Dockerfile ├── docker-entrypoint.sh ├── neo4j-5.10.0.patch ├── neo4j-5.14.0.patch ├── neo4j-5.16.0.patch ├── neo4j-5.17.0.patch ├── neo4j-5.18.0.patch ├── neo4j-5.20.0.patch ├── neo4j-5.23.0.patch ├── neo4j-5.24.0.patch ├── neo4j-5.25.1.patch ├── neo4j-5.26.0.patch ├── neo4j-5.26.5.patch ├── neo4j.patch └── neo4jlabs-plugins.json ├── OpenResty └── Dockerfile ├── PM2 └── Dockerfile ├── Puppet ├── Agent │ └── Dockerfile ├── Master │ └── Dockerfile └── Server │ └── Dockerfile ├── README.md ├── RabbitMQ └── Dockerfile ├── RethinkDB └── Dockerfile ├── SaltStack ├── Dockerfile └── conf │ ├── master │ └── minion ├── ScyllaDB └── Dockerfile ├── SonarQube ├── Dockerfile └── entrypoint.sh ├── Spire └── Dockerfile ├── StatsD └── Dockerfile ├── Sysdig ├── Dockerfile └── docker-entrypoint.sh ├── TensorFlow ├── Dockerfile └── bashrc ├── TensorFlowServing └── Dockerfile ├── Terraform └── Dockerfile ├── WildFly └── Dockerfile ├── cAdvisor └── Dockerfile └── pgvector └── Dockerfile /AntLR/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/AntLR/Dockerfile -------------------------------------------------------------------------------- /ApacheCassandra/4.x/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheCassandra/4.x/Dockerfile -------------------------------------------------------------------------------- /ApacheCassandra/4.x/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheCassandra/4.x/docker-entrypoint.sh -------------------------------------------------------------------------------- /ApacheCassandra/5.x/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheCassandra/5.x/Dockerfile -------------------------------------------------------------------------------- /ApacheCassandra/5.x/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheCassandra/5.x/docker-entrypoint.sh -------------------------------------------------------------------------------- /ApacheCassandra/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheCassandra/Dockerfile -------------------------------------------------------------------------------- /ApacheCassandra/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheCassandra/docker-entrypoint.sh -------------------------------------------------------------------------------- /ApacheGeode/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheGeode/Dockerfile -------------------------------------------------------------------------------- /ApacheKafka/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheKafka/Dockerfile -------------------------------------------------------------------------------- /ApacheSolr/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheSolr/Dockerfile -------------------------------------------------------------------------------- /ApacheSolr/scripts/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheSolr/scripts/docker-entrypoint.sh -------------------------------------------------------------------------------- /ApacheSolr/scripts/init-var-solr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheSolr/scripts/init-var-solr -------------------------------------------------------------------------------- /ApacheSolr/scripts/oom_solr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheSolr/scripts/oom_solr.sh -------------------------------------------------------------------------------- /ApacheSolr/scripts/precreate-core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheSolr/scripts/precreate-core -------------------------------------------------------------------------------- /ApacheSolr/scripts/run-initdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheSolr/scripts/run-initdb -------------------------------------------------------------------------------- /ApacheSolr/scripts/solr-create: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheSolr/scripts/solr-create -------------------------------------------------------------------------------- /ApacheSolr/scripts/solr-demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheSolr/scripts/solr-demo -------------------------------------------------------------------------------- /ApacheSolr/scripts/solr-fg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheSolr/scripts/solr-fg -------------------------------------------------------------------------------- /ApacheSolr/scripts/solr-foreground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheSolr/scripts/solr-foreground -------------------------------------------------------------------------------- /ApacheSolr/scripts/solr-precreate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheSolr/scripts/solr-precreate -------------------------------------------------------------------------------- /ApacheSolr/scripts/start-local-solr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheSolr/scripts/start-local-solr -------------------------------------------------------------------------------- /ApacheSolr/scripts/stop-local-solr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheSolr/scripts/stop-local-solr -------------------------------------------------------------------------------- /ApacheSolr/scripts/wait-for-solr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheSolr/scripts/wait-for-solr.sh -------------------------------------------------------------------------------- /ApacheSolr/scripts/wait-for-zookeeper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheSolr/scripts/wait-for-zookeeper.sh -------------------------------------------------------------------------------- /ApacheSpark/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheSpark/Dockerfile -------------------------------------------------------------------------------- /ApacheSpark/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheSpark/entrypoint.sh -------------------------------------------------------------------------------- /ApacheStorm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheStorm/Dockerfile -------------------------------------------------------------------------------- /ApacheStorm/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheStorm/docker-entrypoint.sh -------------------------------------------------------------------------------- /ApacheZeppelin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheZeppelin/Dockerfile -------------------------------------------------------------------------------- /ApacheZeppelin/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheZeppelin/log4j.properties -------------------------------------------------------------------------------- /ApacheZeppelin/log4j_docker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheZeppelin/log4j_docker.properties -------------------------------------------------------------------------------- /ApacheZooKeeper/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheZooKeeper/Dockerfile -------------------------------------------------------------------------------- /ApacheZooKeeper/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ApacheZooKeeper/docker-entrypoint.sh -------------------------------------------------------------------------------- /Bazel/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Bazel/Dockerfile -------------------------------------------------------------------------------- /Bazel/install_bazel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Bazel/install_bazel.sh -------------------------------------------------------------------------------- /Bazel/install_packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Bazel/install_packages.sh -------------------------------------------------------------------------------- /Beats/Dockerfile_Auditbeat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Beats/Dockerfile_Auditbeat -------------------------------------------------------------------------------- /Beats/Dockerfile_Filebeat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Beats/Dockerfile_Filebeat -------------------------------------------------------------------------------- /Beats/Dockerfile_Heartbeat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Beats/Dockerfile_Heartbeat -------------------------------------------------------------------------------- /Beats/Dockerfile_Metricbeat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Beats/Dockerfile_Metricbeat -------------------------------------------------------------------------------- /Beats/Dockerfile_Packetbeat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Beats/Dockerfile_Packetbeat -------------------------------------------------------------------------------- /Beats/docker-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Beats/docker-entrypoint -------------------------------------------------------------------------------- /CockroachDB/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/CockroachDB/Dockerfile -------------------------------------------------------------------------------- /Consul/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Consul/Dockerfile -------------------------------------------------------------------------------- /CouchDB/10-docker-default.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/CouchDB/10-docker-default.ini -------------------------------------------------------------------------------- /CouchDB/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/CouchDB/Dockerfile -------------------------------------------------------------------------------- /CouchDB/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/CouchDB/docker-entrypoint.sh -------------------------------------------------------------------------------- /CouchDB/vm.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/CouchDB/vm.args -------------------------------------------------------------------------------- /Couchbase/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Couchbase/Dockerfile -------------------------------------------------------------------------------- /Couchbase/couchbase-6.0.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Couchbase/couchbase-6.0.4.patch -------------------------------------------------------------------------------- /Couchbase/flatbuffers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Couchbase/flatbuffers.patch -------------------------------------------------------------------------------- /Couchbase/scripts/dummy.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "Running in Docker container - $0 not available" 4 | 5 | -------------------------------------------------------------------------------- /Couchbase/scripts/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Couchbase/scripts/entrypoint.sh -------------------------------------------------------------------------------- /Couchbase/scripts/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Couchbase/scripts/run -------------------------------------------------------------------------------- /Envoy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Envoy/Dockerfile -------------------------------------------------------------------------------- /Grafana/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Grafana/Dockerfile -------------------------------------------------------------------------------- /Grafana/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Grafana/run.sh -------------------------------------------------------------------------------- /Heketi/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Heketi/Dockerfile -------------------------------------------------------------------------------- /Heketi/heketi-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Heketi/heketi-start.sh -------------------------------------------------------------------------------- /Heketi/heketi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Heketi/heketi.json -------------------------------------------------------------------------------- /InfluxDB/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/InfluxDB/Dockerfile -------------------------------------------------------------------------------- /InfluxDB/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/InfluxDB/entrypoint.sh -------------------------------------------------------------------------------- /InfluxDB/fetch-python-standalone.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/InfluxDB/fetch-python-standalone.bash -------------------------------------------------------------------------------- /Kibana/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Kibana/Dockerfile -------------------------------------------------------------------------------- /Kibana/bin/kibana-docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Kibana/bin/kibana-docker -------------------------------------------------------------------------------- /Kibana/config/kibana.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Kibana/config/kibana.yml -------------------------------------------------------------------------------- /Kong/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Kong/Dockerfile -------------------------------------------------------------------------------- /Kong/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Kong/docker-entrypoint.sh -------------------------------------------------------------------------------- /Logstash/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Logstash/Dockerfile -------------------------------------------------------------------------------- /Logstash/bin/docker-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Logstash/bin/docker-entrypoint -------------------------------------------------------------------------------- /Logstash/config/log4j2.file.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Logstash/config/log4j2.file.properties -------------------------------------------------------------------------------- /Logstash/config/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Logstash/config/log4j2.properties -------------------------------------------------------------------------------- /Logstash/config/logstash-full.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Logstash/config/logstash-full.yml -------------------------------------------------------------------------------- /Logstash/config/logstash-oss.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Logstash/config/logstash-oss.yml -------------------------------------------------------------------------------- /Logstash/config/pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Logstash/config/pipelines.yml -------------------------------------------------------------------------------- /Logstash/dockerfile_netty_tcnative: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Logstash/dockerfile_netty_tcnative -------------------------------------------------------------------------------- /Logstash/dockerfile_openssl_dynamic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Logstash/dockerfile_openssl_dynamic -------------------------------------------------------------------------------- /Logstash/env2yaml/env2yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Logstash/env2yaml/env2yaml.go -------------------------------------------------------------------------------- /Logstash/pipeline/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Logstash/pipeline/default.conf -------------------------------------------------------------------------------- /MesosphereMarathon/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/MesosphereMarathon/Dockerfile -------------------------------------------------------------------------------- /Minio/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Minio/Dockerfile -------------------------------------------------------------------------------- /MySQL/8.0.x/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/MySQL/8.0.x/Dockerfile -------------------------------------------------------------------------------- /MySQL/8.0.x/config/conf.d/docker.cnf: -------------------------------------------------------------------------------- 1 | [mysqld] 2 | host_cache_size=0 3 | skip-name-resolve -------------------------------------------------------------------------------- /MySQL/8.0.x/config/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/MySQL/8.0.x/config/my.cnf -------------------------------------------------------------------------------- /MySQL/8.0.x/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/MySQL/8.0.x/docker-entrypoint.sh -------------------------------------------------------------------------------- /MySQL/8.0.x/healthcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/MySQL/8.0.x/healthcheck.sh -------------------------------------------------------------------------------- /MySQL/8.x/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/MySQL/8.x/Dockerfile -------------------------------------------------------------------------------- /MySQL/8.x/config/conf.d/docker.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/MySQL/8.x/config/conf.d/docker.cnf -------------------------------------------------------------------------------- /MySQL/8.x/config/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/MySQL/8.x/config/my.cnf -------------------------------------------------------------------------------- /MySQL/8.x/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/MySQL/8.x/docker-entrypoint.sh -------------------------------------------------------------------------------- /MySQL/8.x/healthcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/MySQL/8.x/healthcheck.sh -------------------------------------------------------------------------------- /MySQL/9.x/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/MySQL/9.x/Dockerfile -------------------------------------------------------------------------------- /MySQL/9.x/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/MySQL/9.x/docker-entrypoint.sh -------------------------------------------------------------------------------- /Neo4j/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Neo4j/Dockerfile -------------------------------------------------------------------------------- /Neo4j/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Neo4j/docker-entrypoint.sh -------------------------------------------------------------------------------- /Neo4j/neo4j-5.10.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Neo4j/neo4j-5.10.0.patch -------------------------------------------------------------------------------- /Neo4j/neo4j-5.14.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Neo4j/neo4j-5.14.0.patch -------------------------------------------------------------------------------- /Neo4j/neo4j-5.16.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Neo4j/neo4j-5.16.0.patch -------------------------------------------------------------------------------- /Neo4j/neo4j-5.17.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Neo4j/neo4j-5.17.0.patch -------------------------------------------------------------------------------- /Neo4j/neo4j-5.18.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Neo4j/neo4j-5.18.0.patch -------------------------------------------------------------------------------- /Neo4j/neo4j-5.20.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Neo4j/neo4j-5.20.0.patch -------------------------------------------------------------------------------- /Neo4j/neo4j-5.23.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Neo4j/neo4j-5.23.0.patch -------------------------------------------------------------------------------- /Neo4j/neo4j-5.24.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Neo4j/neo4j-5.24.0.patch -------------------------------------------------------------------------------- /Neo4j/neo4j-5.25.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Neo4j/neo4j-5.25.1.patch -------------------------------------------------------------------------------- /Neo4j/neo4j-5.26.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Neo4j/neo4j-5.26.0.patch -------------------------------------------------------------------------------- /Neo4j/neo4j-5.26.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Neo4j/neo4j-5.26.5.patch -------------------------------------------------------------------------------- /Neo4j/neo4j.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Neo4j/neo4j.patch -------------------------------------------------------------------------------- /Neo4j/neo4jlabs-plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Neo4j/neo4jlabs-plugins.json -------------------------------------------------------------------------------- /OpenResty/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/OpenResty/Dockerfile -------------------------------------------------------------------------------- /PM2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/PM2/Dockerfile -------------------------------------------------------------------------------- /Puppet/Agent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Puppet/Agent/Dockerfile -------------------------------------------------------------------------------- /Puppet/Master/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Puppet/Master/Dockerfile -------------------------------------------------------------------------------- /Puppet/Server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Puppet/Server/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/README.md -------------------------------------------------------------------------------- /RabbitMQ/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/RabbitMQ/Dockerfile -------------------------------------------------------------------------------- /RethinkDB/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/RethinkDB/Dockerfile -------------------------------------------------------------------------------- /SaltStack/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/SaltStack/Dockerfile -------------------------------------------------------------------------------- /SaltStack/conf/master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/SaltStack/conf/master -------------------------------------------------------------------------------- /SaltStack/conf/minion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/SaltStack/conf/minion -------------------------------------------------------------------------------- /ScyllaDB/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/ScyllaDB/Dockerfile -------------------------------------------------------------------------------- /SonarQube/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/SonarQube/Dockerfile -------------------------------------------------------------------------------- /SonarQube/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/SonarQube/entrypoint.sh -------------------------------------------------------------------------------- /Spire/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Spire/Dockerfile -------------------------------------------------------------------------------- /StatsD/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/StatsD/Dockerfile -------------------------------------------------------------------------------- /Sysdig/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Sysdig/Dockerfile -------------------------------------------------------------------------------- /Sysdig/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Sysdig/docker-entrypoint.sh -------------------------------------------------------------------------------- /TensorFlow/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/TensorFlow/Dockerfile -------------------------------------------------------------------------------- /TensorFlow/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/TensorFlow/bashrc -------------------------------------------------------------------------------- /TensorFlowServing/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/TensorFlowServing/Dockerfile -------------------------------------------------------------------------------- /Terraform/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/Terraform/Dockerfile -------------------------------------------------------------------------------- /WildFly/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/WildFly/Dockerfile -------------------------------------------------------------------------------- /cAdvisor/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/cAdvisor/Dockerfile -------------------------------------------------------------------------------- /pgvector/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-on-ibm-z/dockerfile-examples/HEAD/pgvector/Dockerfile --------------------------------------------------------------------------------