├── .bin ├── bashbrew-buildkit-env-setup.sh └── docker-buildx-ensure.sh ├── .buildkit-build-contexts.sh ├── .dockerignore ├── .external-pins ├── docker │ └── scout-sbom-indexer___1 ├── file.sh ├── list.sh ├── mcr.microsoft.com │ └── windows │ │ ├── nanoserver___ltsc2022 │ │ ├── nanoserver___ltsc2025 │ │ ├── servercore___ltsc2022 │ │ └── servercore___ltsc2025 ├── redhat │ ├── ubi10-minimal___latest │ ├── ubi10___latest │ ├── ubi8-minimal___latest │ ├── ubi8___latest │ ├── ubi9-minimal___latest │ └── ubi9___latest ├── tag.sh ├── tianon │ └── buildkit___0.16 └── update.sh ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md └── workflows │ ├── .bashbrew │ └── action.yml │ ├── generate.sh │ ├── munge-pr.yml │ ├── naughty.sh │ └── test-pr.yml ├── .gitignore ├── CODE-OF-CONDUCT.md ├── Dockerfile ├── LICENSE ├── MAINTAINERS ├── NEW-IMAGE-CHECKLIST.md ├── README.md ├── SECURITY.md ├── _bashbrew-cat-sorted.sh ├── diff-pr.sh ├── library ├── adminer ├── aerospike ├── almalinux ├── alpine ├── alt ├── amazoncorretto ├── amazonlinux ├── api-firewall ├── arangodb ├── archlinux ├── backdrop ├── bash ├── bonita ├── buildpack-deps ├── busybox ├── caddy ├── cassandra ├── chronograf ├── cirros ├── clearlinux ├── clefos ├── clickhouse ├── clojure ├── composer ├── convertigo ├── couchbase ├── couchdb ├── crate ├── dart ├── debian ├── docker ├── drupal ├── eclipse-mosquitto ├── eclipse-temurin ├── eggdrop ├── elasticsearch ├── elixir ├── emqx ├── erlang ├── fedora ├── flink ├── fluentd ├── friendica ├── gazebo ├── gcc ├── geonetwork ├── ghost ├── golang ├── gradle ├── groovy ├── haproxy ├── haskell ├── haxe ├── hello-world ├── hitch ├── httpd ├── hylang ├── ibm-semeru-runtimes ├── ibmjava ├── influxdb ├── irssi ├── jetty ├── joomla ├── jruby ├── julia ├── kapacitor ├── kibana ├── kong ├── krakend ├── lightstreamer ├── liquibase ├── logstash ├── mageia ├── mariadb ├── matomo ├── maven ├── mediawiki ├── memcached ├── mongo ├── mongo-express ├── monica ├── mysql ├── nats ├── neo4j ├── neurodebian ├── nextcloud ├── nginx ├── node ├── notary ├── odoo ├── open-liberty ├── openjdk ├── oraclelinux ├── orientdb ├── percona ├── perl ├── photon ├── php ├── php-zendserver ├── phpmyadmin ├── plone ├── postfixadmin ├── postgres ├── pypy ├── python ├── r-base ├── rabbitmq ├── rakudo-star ├── redis ├── redmine ├── registry ├── rethinkdb ├── rocket.chat ├── rockylinux ├── ros ├── ruby ├── rust ├── sapmachine ├── satosa ├── silverpeas ├── solr ├── sonarqube ├── spark ├── spiped ├── storm ├── swift ├── swipl ├── teamspeak ├── telegraf ├── tomcat ├── tomee ├── traefik ├── ubuntu ├── unit ├── varnish ├── websphere-liberty ├── wordpress ├── xwiki ├── yourls ├── znc └── zookeeper ├── naughty-commits.sh ├── naughty-constraints.sh ├── naughty-from.sh ├── naughty-sharedtags.sh ├── pr-urls.sh ├── test ├── README.md ├── clean.sh ├── config.sh ├── retry.sh ├── run.sh └── tests │ ├── cassandra-basics │ └── run.sh │ ├── cheeky-retries.sh │ ├── composer │ ├── composer.json │ ├── container.sh │ └── run.sh │ ├── convertigo-hello-world │ └── run.sh │ ├── dart-hello-world │ ├── container.dart │ ├── expected-std-out.txt │ └── run.sh │ ├── debian-apt-get │ ├── container.sh │ ├── expected-std-out.txt │ └── run.sh │ ├── docker-build.sh │ ├── docker-dind │ └── run.sh │ ├── docker-registry-push-pull │ └── run.sh │ ├── eclipse-mosquitto-basics │ ├── mosquitto.conf │ └── run.sh │ ├── elixir-hello-world │ ├── container.exs │ ├── expected-std-out.txt │ └── run.sh │ ├── erlang-hello-world │ ├── container.erl │ ├── expected-std-out.txt │ └── run.sh │ ├── gcc-c-hello-world │ ├── container.c │ ├── expected-std-out.txt │ └── run.sh │ ├── gcc-cpp-hello-world │ ├── container.cpp │ ├── expected-std-out.txt │ └── run.sh │ ├── ghost-basics │ └── run.sh │ ├── golang-hello-world │ ├── container.go │ ├── expected-std-out.txt │ ├── real-run.sh │ └── run.sh │ ├── haproxy-basics │ ├── haproxy.cfg │ └── run.sh │ ├── haskell-cabal │ ├── container.sh │ └── run.sh │ ├── haskell-ghci │ ├── container.sh │ └── run.sh │ ├── haskell-runhaskell │ ├── container.hs │ ├── expected-std-out.txt │ └── run.sh │ ├── haskell-stack │ ├── container.sh │ └── run.sh │ ├── haxe-haxelib-install │ ├── Container.hx │ └── run.sh │ ├── haxe-hello-world │ ├── Container.hx │ ├── expected-std-out.txt │ └── run.sh │ ├── hylang-hello-world │ ├── container.hy │ ├── expected-std-out.txt │ └── run.sh │ ├── hylang-sh │ ├── container.hy │ ├── expected-std-out.txt │ └── run.sh │ ├── image-name.sh │ ├── java-ca-certificates │ ├── container.java │ └── run.sh │ ├── java-hello-world │ ├── container.java │ ├── expected-std-out.txt │ └── run.sh │ ├── java-uimanager-font │ ├── container.java │ └── run.sh │ ├── jetty-hello-web │ ├── index.jsp │ └── run.sh │ ├── julia-downloads │ ├── container.jl │ └── run.sh │ ├── julia-hello-world │ ├── container.jl │ ├── expected-std-out.txt │ └── run.sh │ ├── logstash-basics │ └── run.sh │ ├── matomo-apache-run │ └── run.sh │ ├── matomo-fpm-run │ └── run.sh │ ├── memcached-basics │ └── run.sh │ ├── mongo-auth-basics │ └── run.sh │ ├── mongo-basics │ └── run.sh │ ├── mongo-express-run │ └── run.sh │ ├── mongo-tls-auth │ └── run.sh │ ├── mongo-tls-basics │ └── run.sh │ ├── monica-apache-run │ └── run.sh │ ├── monica-cli-mariadb10 │ └── run.sh │ ├── monica-cli-mysql8 │ └── run.sh │ ├── monica-cli │ └── run.sh │ ├── monica-fpm-run │ └── run.sh │ ├── mysql-basics │ └── run.sh │ ├── mysql-initdb │ ├── initdb.sql │ └── run.sh │ ├── mysql-log-bin │ └── run.sh │ ├── nextcloud-apache-run │ ├── real-run.sh │ └── run.sh │ ├── nextcloud-cli-mysql │ └── run.sh │ ├── nextcloud-cli-postgres │ └── run.sh │ ├── nextcloud-cli-sqlite │ └── run.sh │ ├── nextcloud-cli │ └── run.sh │ ├── nextcloud-fpm-run │ ├── real-run.sh │ └── run.sh │ ├── no-hard-coded-passwords │ └── run.sh │ ├── node-hello-world │ ├── container.js │ ├── expected-std-out.txt │ └── run.sh │ ├── nuxeo-basics │ └── run.sh │ ├── nuxeo-conf │ ├── expected-std-out.txt │ └── run.sh │ ├── open-liberty-hello-world │ └── run.sh │ ├── override-cmd │ └── run.sh │ ├── percona-rocksdb │ └── run.sh │ ├── percona-tokudb │ └── run.sh │ ├── perl-cpanm │ ├── container.sh │ └── run.sh │ ├── perl-hello-world │ ├── container.pl │ ├── expected-std-out.txt │ └── run.sh │ ├── php-apache-hello-web │ ├── index.php │ └── run.sh │ ├── php-argon2 │ ├── container.php │ └── run.sh │ ├── php-ext-install │ ├── container.sh │ └── run.sh │ ├── php-fpm-hello-web │ ├── index.php │ └── run.sh │ ├── php-hello-world │ ├── container.php │ ├── expected-std-out.txt │ └── run.sh │ ├── plone-addons │ ├── expected-std-out.txt │ └── run.sh │ ├── plone-basics │ └── run.sh │ ├── plone-cors │ ├── expected-std-out.txt │ └── run.sh │ ├── plone-versions │ ├── expected-std-out.txt │ └── run.sh │ ├── plone-zeoclient │ └── run.sh │ ├── plone-zeosite │ ├── expected-std-out.txt │ └── run.sh │ ├── postfixadmin-apache-run │ └── run.sh │ ├── postfixadmin-fpm-run │ └── run.sh │ ├── postgres-basics │ └── run.sh │ ├── postgres-initdb │ ├── initdb.sql │ └── run.sh │ ├── python-imports │ ├── container.py │ └── run.sh │ ├── python-no-pyc │ ├── container.cmd │ ├── container.sh │ └── run.sh │ ├── python-pip-requests-ssl │ ├── container.py │ └── run.sh │ ├── python-sqlite3 │ ├── container.py │ └── run.sh │ ├── python-stack-size │ ├── container.py │ └── run.sh │ ├── rabbitmq-basics │ ├── receive.py │ ├── run.sh │ ├── send.py │ └── testconn.py │ ├── rabbitmq-tls │ ├── inet-dist-tls.config │ ├── rabbitmq-env.conf │ ├── rabbitmq.conf │ └── run.sh │ ├── redis-basics-config │ ├── real-run.sh │ └── run.sh │ ├── redis-basics-persistent │ └── run.sh │ ├── redis-basics-tls │ └── run.sh │ ├── redis-basics │ └── run.sh │ ├── redmine-basics │ └── run.sh │ ├── ruby-binstubs │ ├── Gemfile │ ├── container.sh │ └── run.sh │ ├── ruby-bundler │ ├── Gemfile │ ├── container.sh │ └── run.sh │ ├── ruby-gems │ ├── container.sh │ └── run.sh │ ├── ruby-hello-world │ ├── container.rb │ ├── expected-std-out.txt │ └── run.sh │ ├── ruby-native-extension │ ├── expected-std-out.txt │ └── run.sh │ ├── ruby-nonroot │ ├── Gemfile │ ├── container.sh │ ├── real-run.sh │ └── run.sh │ ├── ruby-standard-libs │ ├── container.rb │ ├── expected-std-out.txt │ └── run.sh │ ├── run-bash-in-container.sh │ ├── run-dart-in-container.sh │ ├── run-elixir-in-container.sh │ ├── run-erlang-in-container.sh │ ├── run-g++-in-container.sh │ ├── run-gcc-in-container.sh │ ├── run-go-in-container.sh │ ├── run-haskell-in-container.sh │ ├── run-haxe-in-container.sh │ ├── run-hy-in-container.sh │ ├── run-in-container.sh │ ├── run-java-in-container.sh │ ├── run-julia-in-container.sh │ ├── run-node-in-container.sh │ ├── run-perl-in-container.sh │ ├── run-php-in-container.sh │ ├── run-python-in-container.sh │ ├── run-ruby-in-container.sh │ ├── run-rust-in-container.sh │ ├── run-sh-in-container.sh │ ├── run-swift-in-container.sh │ ├── run-swipl-in-container.sh │ ├── rust-hello-world │ ├── container │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ ├── expected-std-out.txt │ └── run.sh │ ├── silverpeas-basics │ └── run.sh │ ├── spiped-basics │ └── run.sh │ ├── swift-hello-world │ ├── container.swift │ ├── expected-std-out.txt │ └── run.sh │ ├── swipl-modules │ ├── container.pl │ ├── expected-std-out.txt │ └── run.sh │ ├── tomcat-hello-world │ ├── index.jsp │ └── run.sh │ ├── utc │ ├── expected-std-out.txt │ └── run.sh │ ├── varnish │ └── run.sh │ ├── wordpress-apache-run │ └── run.sh │ ├── wordpress-fpm-run │ └── run.sh │ ├── znc-basics │ └── run.sh │ └── zookeeper-basics │ └── run.sh └── toc.sh /.bin/bashbrew-buildkit-env-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/.bin/bashbrew-buildkit-env-setup.sh -------------------------------------------------------------------------------- /.bin/docker-buildx-ensure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/.bin/docker-buildx-ensure.sh -------------------------------------------------------------------------------- /.buildkit-build-contexts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/.buildkit-build-contexts.sh -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .gitignore -------------------------------------------------------------------------------- /.external-pins/docker/scout-sbom-indexer___1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/.external-pins/docker/scout-sbom-indexer___1 -------------------------------------------------------------------------------- /.external-pins/file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/.external-pins/file.sh -------------------------------------------------------------------------------- /.external-pins/list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/.external-pins/list.sh -------------------------------------------------------------------------------- /.external-pins/mcr.microsoft.com/windows/nanoserver___ltsc2022: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/.external-pins/mcr.microsoft.com/windows/nanoserver___ltsc2022 -------------------------------------------------------------------------------- /.external-pins/mcr.microsoft.com/windows/nanoserver___ltsc2025: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/.external-pins/mcr.microsoft.com/windows/nanoserver___ltsc2025 -------------------------------------------------------------------------------- /.external-pins/mcr.microsoft.com/windows/servercore___ltsc2022: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/.external-pins/mcr.microsoft.com/windows/servercore___ltsc2022 -------------------------------------------------------------------------------- /.external-pins/mcr.microsoft.com/windows/servercore___ltsc2025: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/.external-pins/mcr.microsoft.com/windows/servercore___ltsc2025 -------------------------------------------------------------------------------- /.external-pins/redhat/ubi10-minimal___latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/.external-pins/redhat/ubi10-minimal___latest -------------------------------------------------------------------------------- /.external-pins/redhat/ubi10___latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/.external-pins/redhat/ubi10___latest -------------------------------------------------------------------------------- /.external-pins/redhat/ubi8-minimal___latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/.external-pins/redhat/ubi8-minimal___latest -------------------------------------------------------------------------------- /.external-pins/redhat/ubi8___latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/.external-pins/redhat/ubi8___latest -------------------------------------------------------------------------------- /.external-pins/redhat/ubi9-minimal___latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/.external-pins/redhat/ubi9-minimal___latest -------------------------------------------------------------------------------- /.external-pins/redhat/ubi9___latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/.external-pins/redhat/ubi9___latest -------------------------------------------------------------------------------- /.external-pins/tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/.external-pins/tag.sh -------------------------------------------------------------------------------- /.external-pins/tianon/buildkit___0.16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/.external-pins/tianon/buildkit___0.16 -------------------------------------------------------------------------------- /.external-pins/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/.external-pins/update.sh -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/.bashbrew/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/.github/workflows/.bashbrew/action.yml -------------------------------------------------------------------------------- /.github/workflows/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/.github/workflows/generate.sh -------------------------------------------------------------------------------- /.github/workflows/munge-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/.github/workflows/munge-pr.yml -------------------------------------------------------------------------------- /.github/workflows/naughty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/.github/workflows/naughty.sh -------------------------------------------------------------------------------- /.github/workflows/test-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/.github/workflows/test-pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /NEW-IMAGE-CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/NEW-IMAGE-CHECKLIST.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/SECURITY.md -------------------------------------------------------------------------------- /_bashbrew-cat-sorted.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/_bashbrew-cat-sorted.sh -------------------------------------------------------------------------------- /diff-pr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/diff-pr.sh -------------------------------------------------------------------------------- /library/adminer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/adminer -------------------------------------------------------------------------------- /library/aerospike: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/aerospike -------------------------------------------------------------------------------- /library/almalinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/almalinux -------------------------------------------------------------------------------- /library/alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/alpine -------------------------------------------------------------------------------- /library/alt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/alt -------------------------------------------------------------------------------- /library/amazoncorretto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/amazoncorretto -------------------------------------------------------------------------------- /library/amazonlinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/amazonlinux -------------------------------------------------------------------------------- /library/api-firewall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/api-firewall -------------------------------------------------------------------------------- /library/arangodb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/arangodb -------------------------------------------------------------------------------- /library/archlinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/archlinux -------------------------------------------------------------------------------- /library/backdrop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/backdrop -------------------------------------------------------------------------------- /library/bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/bash -------------------------------------------------------------------------------- /library/bonita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/bonita -------------------------------------------------------------------------------- /library/buildpack-deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/buildpack-deps -------------------------------------------------------------------------------- /library/busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/busybox -------------------------------------------------------------------------------- /library/caddy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/caddy -------------------------------------------------------------------------------- /library/cassandra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/cassandra -------------------------------------------------------------------------------- /library/chronograf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/chronograf -------------------------------------------------------------------------------- /library/cirros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/cirros -------------------------------------------------------------------------------- /library/clearlinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/clearlinux -------------------------------------------------------------------------------- /library/clefos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/clefos -------------------------------------------------------------------------------- /library/clickhouse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/clickhouse -------------------------------------------------------------------------------- /library/clojure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/clojure -------------------------------------------------------------------------------- /library/composer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/composer -------------------------------------------------------------------------------- /library/convertigo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/convertigo -------------------------------------------------------------------------------- /library/couchbase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/couchbase -------------------------------------------------------------------------------- /library/couchdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/couchdb -------------------------------------------------------------------------------- /library/crate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/crate -------------------------------------------------------------------------------- /library/dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/dart -------------------------------------------------------------------------------- /library/debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/debian -------------------------------------------------------------------------------- /library/docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/docker -------------------------------------------------------------------------------- /library/drupal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/drupal -------------------------------------------------------------------------------- /library/eclipse-mosquitto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/eclipse-mosquitto -------------------------------------------------------------------------------- /library/eclipse-temurin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/eclipse-temurin -------------------------------------------------------------------------------- /library/eggdrop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/eggdrop -------------------------------------------------------------------------------- /library/elasticsearch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/elasticsearch -------------------------------------------------------------------------------- /library/elixir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/elixir -------------------------------------------------------------------------------- /library/emqx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/emqx -------------------------------------------------------------------------------- /library/erlang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/erlang -------------------------------------------------------------------------------- /library/fedora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/fedora -------------------------------------------------------------------------------- /library/flink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/flink -------------------------------------------------------------------------------- /library/fluentd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/fluentd -------------------------------------------------------------------------------- /library/friendica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/friendica -------------------------------------------------------------------------------- /library/gazebo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/gazebo -------------------------------------------------------------------------------- /library/gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/gcc -------------------------------------------------------------------------------- /library/geonetwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/geonetwork -------------------------------------------------------------------------------- /library/ghost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/ghost -------------------------------------------------------------------------------- /library/golang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/golang -------------------------------------------------------------------------------- /library/gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/gradle -------------------------------------------------------------------------------- /library/groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/groovy -------------------------------------------------------------------------------- /library/haproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/haproxy -------------------------------------------------------------------------------- /library/haskell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/haskell -------------------------------------------------------------------------------- /library/haxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/haxe -------------------------------------------------------------------------------- /library/hello-world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/hello-world -------------------------------------------------------------------------------- /library/hitch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/hitch -------------------------------------------------------------------------------- /library/httpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/httpd -------------------------------------------------------------------------------- /library/hylang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/hylang -------------------------------------------------------------------------------- /library/ibm-semeru-runtimes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/ibm-semeru-runtimes -------------------------------------------------------------------------------- /library/ibmjava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/ibmjava -------------------------------------------------------------------------------- /library/influxdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/influxdb -------------------------------------------------------------------------------- /library/irssi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/irssi -------------------------------------------------------------------------------- /library/jetty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/jetty -------------------------------------------------------------------------------- /library/joomla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/joomla -------------------------------------------------------------------------------- /library/jruby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/jruby -------------------------------------------------------------------------------- /library/julia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/julia -------------------------------------------------------------------------------- /library/kapacitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/kapacitor -------------------------------------------------------------------------------- /library/kibana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/kibana -------------------------------------------------------------------------------- /library/kong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/kong -------------------------------------------------------------------------------- /library/krakend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/krakend -------------------------------------------------------------------------------- /library/lightstreamer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/lightstreamer -------------------------------------------------------------------------------- /library/liquibase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/liquibase -------------------------------------------------------------------------------- /library/logstash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/logstash -------------------------------------------------------------------------------- /library/mageia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/mageia -------------------------------------------------------------------------------- /library/mariadb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/mariadb -------------------------------------------------------------------------------- /library/matomo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/matomo -------------------------------------------------------------------------------- /library/maven: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/maven -------------------------------------------------------------------------------- /library/mediawiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/mediawiki -------------------------------------------------------------------------------- /library/memcached: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/memcached -------------------------------------------------------------------------------- /library/mongo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/mongo -------------------------------------------------------------------------------- /library/mongo-express: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/mongo-express -------------------------------------------------------------------------------- /library/monica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/monica -------------------------------------------------------------------------------- /library/mysql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/mysql -------------------------------------------------------------------------------- /library/nats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/nats -------------------------------------------------------------------------------- /library/neo4j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/neo4j -------------------------------------------------------------------------------- /library/neurodebian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/neurodebian -------------------------------------------------------------------------------- /library/nextcloud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/nextcloud -------------------------------------------------------------------------------- /library/nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/nginx -------------------------------------------------------------------------------- /library/node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/node -------------------------------------------------------------------------------- /library/notary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/notary -------------------------------------------------------------------------------- /library/odoo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/odoo -------------------------------------------------------------------------------- /library/open-liberty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/open-liberty -------------------------------------------------------------------------------- /library/openjdk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/openjdk -------------------------------------------------------------------------------- /library/oraclelinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/oraclelinux -------------------------------------------------------------------------------- /library/orientdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/orientdb -------------------------------------------------------------------------------- /library/percona: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/percona -------------------------------------------------------------------------------- /library/perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/perl -------------------------------------------------------------------------------- /library/photon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/photon -------------------------------------------------------------------------------- /library/php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/php -------------------------------------------------------------------------------- /library/php-zendserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/php-zendserver -------------------------------------------------------------------------------- /library/phpmyadmin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/phpmyadmin -------------------------------------------------------------------------------- /library/plone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/plone -------------------------------------------------------------------------------- /library/postfixadmin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/postfixadmin -------------------------------------------------------------------------------- /library/postgres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/postgres -------------------------------------------------------------------------------- /library/pypy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/pypy -------------------------------------------------------------------------------- /library/python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/python -------------------------------------------------------------------------------- /library/r-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/r-base -------------------------------------------------------------------------------- /library/rabbitmq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/rabbitmq -------------------------------------------------------------------------------- /library/rakudo-star: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/rakudo-star -------------------------------------------------------------------------------- /library/redis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/redis -------------------------------------------------------------------------------- /library/redmine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/redmine -------------------------------------------------------------------------------- /library/registry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/registry -------------------------------------------------------------------------------- /library/rethinkdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/rethinkdb -------------------------------------------------------------------------------- /library/rocket.chat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/rocket.chat -------------------------------------------------------------------------------- /library/rockylinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/rockylinux -------------------------------------------------------------------------------- /library/ros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/ros -------------------------------------------------------------------------------- /library/ruby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/ruby -------------------------------------------------------------------------------- /library/rust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/rust -------------------------------------------------------------------------------- /library/sapmachine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/sapmachine -------------------------------------------------------------------------------- /library/satosa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/satosa -------------------------------------------------------------------------------- /library/silverpeas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/silverpeas -------------------------------------------------------------------------------- /library/solr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/solr -------------------------------------------------------------------------------- /library/sonarqube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/sonarqube -------------------------------------------------------------------------------- /library/spark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/spark -------------------------------------------------------------------------------- /library/spiped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/spiped -------------------------------------------------------------------------------- /library/storm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/storm -------------------------------------------------------------------------------- /library/swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/swift -------------------------------------------------------------------------------- /library/swipl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/swipl -------------------------------------------------------------------------------- /library/teamspeak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/teamspeak -------------------------------------------------------------------------------- /library/telegraf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/telegraf -------------------------------------------------------------------------------- /library/tomcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/tomcat -------------------------------------------------------------------------------- /library/tomee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/tomee -------------------------------------------------------------------------------- /library/traefik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/traefik -------------------------------------------------------------------------------- /library/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/ubuntu -------------------------------------------------------------------------------- /library/unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/unit -------------------------------------------------------------------------------- /library/varnish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/varnish -------------------------------------------------------------------------------- /library/websphere-liberty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/websphere-liberty -------------------------------------------------------------------------------- /library/wordpress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/wordpress -------------------------------------------------------------------------------- /library/xwiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/xwiki -------------------------------------------------------------------------------- /library/yourls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/yourls -------------------------------------------------------------------------------- /library/znc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/znc -------------------------------------------------------------------------------- /library/zookeeper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/library/zookeeper -------------------------------------------------------------------------------- /naughty-commits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/naughty-commits.sh -------------------------------------------------------------------------------- /naughty-constraints.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/naughty-constraints.sh -------------------------------------------------------------------------------- /naughty-from.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/naughty-from.sh -------------------------------------------------------------------------------- /naughty-sharedtags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/naughty-sharedtags.sh -------------------------------------------------------------------------------- /pr-urls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/pr-urls.sh -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/README.md -------------------------------------------------------------------------------- /test/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/clean.sh -------------------------------------------------------------------------------- /test/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/config.sh -------------------------------------------------------------------------------- /test/retry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/retry.sh -------------------------------------------------------------------------------- /test/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/run.sh -------------------------------------------------------------------------------- /test/tests/cassandra-basics/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/cassandra-basics/run.sh -------------------------------------------------------------------------------- /test/tests/cheeky-retries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/cheeky-retries.sh -------------------------------------------------------------------------------- /test/tests/composer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/composer/composer.json -------------------------------------------------------------------------------- /test/tests/composer/container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/composer/container.sh -------------------------------------------------------------------------------- /test/tests/composer/run.sh: -------------------------------------------------------------------------------- 1 | ../run-sh-in-container.sh -------------------------------------------------------------------------------- /test/tests/convertigo-hello-world/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/convertigo-hello-world/run.sh -------------------------------------------------------------------------------- /test/tests/dart-hello-world/container.dart: -------------------------------------------------------------------------------- 1 | void main() { 2 | print('Hello World!'); 3 | } 4 | -------------------------------------------------------------------------------- /test/tests/dart-hello-world/expected-std-out.txt: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /test/tests/dart-hello-world/run.sh: -------------------------------------------------------------------------------- 1 | ../run-dart-in-container.sh -------------------------------------------------------------------------------- /test/tests/debian-apt-get/container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/debian-apt-get/container.sh -------------------------------------------------------------------------------- /test/tests/debian-apt-get/expected-std-out.txt: -------------------------------------------------------------------------------- 1 | Hello, world! 2 | -------------------------------------------------------------------------------- /test/tests/debian-apt-get/run.sh: -------------------------------------------------------------------------------- 1 | ../run-bash-in-container.sh -------------------------------------------------------------------------------- /test/tests/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/docker-build.sh -------------------------------------------------------------------------------- /test/tests/docker-dind/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/docker-dind/run.sh -------------------------------------------------------------------------------- /test/tests/docker-registry-push-pull/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/docker-registry-push-pull/run.sh -------------------------------------------------------------------------------- /test/tests/eclipse-mosquitto-basics/mosquitto.conf: -------------------------------------------------------------------------------- 1 | listener 1883 2 | allow_anonymous true 3 | -------------------------------------------------------------------------------- /test/tests/eclipse-mosquitto-basics/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/eclipse-mosquitto-basics/run.sh -------------------------------------------------------------------------------- /test/tests/elixir-hello-world/container.exs: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env elixir 2 | 3 | IO.puts "Hello World!" -------------------------------------------------------------------------------- /test/tests/elixir-hello-world/expected-std-out.txt: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /test/tests/elixir-hello-world/run.sh: -------------------------------------------------------------------------------- 1 | ../run-elixir-in-container.sh -------------------------------------------------------------------------------- /test/tests/erlang-hello-world/container.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/erlang-hello-world/container.erl -------------------------------------------------------------------------------- /test/tests/erlang-hello-world/expected-std-out.txt: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /test/tests/erlang-hello-world/run.sh: -------------------------------------------------------------------------------- 1 | ../run-erlang-in-container.sh -------------------------------------------------------------------------------- /test/tests/gcc-c-hello-world/container.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { 4 | printf("Hello World!\n"); 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /test/tests/gcc-c-hello-world/expected-std-out.txt: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /test/tests/gcc-c-hello-world/run.sh: -------------------------------------------------------------------------------- 1 | ../run-gcc-in-container.sh -------------------------------------------------------------------------------- /test/tests/gcc-cpp-hello-world/container.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { 4 | std::cout << "Hello World!\n"; 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /test/tests/gcc-cpp-hello-world/expected-std-out.txt: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /test/tests/gcc-cpp-hello-world/run.sh: -------------------------------------------------------------------------------- 1 | ../run-g++-in-container.sh -------------------------------------------------------------------------------- /test/tests/ghost-basics/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/ghost-basics/run.sh -------------------------------------------------------------------------------- /test/tests/golang-hello-world/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/golang-hello-world/container.go -------------------------------------------------------------------------------- /test/tests/golang-hello-world/expected-std-out.txt: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /test/tests/golang-hello-world/real-run.sh: -------------------------------------------------------------------------------- 1 | ../run-go-in-container.sh -------------------------------------------------------------------------------- /test/tests/golang-hello-world/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/golang-hello-world/run.sh -------------------------------------------------------------------------------- /test/tests/haproxy-basics/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/haproxy-basics/haproxy.cfg -------------------------------------------------------------------------------- /test/tests/haproxy-basics/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/haproxy-basics/run.sh -------------------------------------------------------------------------------- /test/tests/haskell-cabal/container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/haskell-cabal/container.sh -------------------------------------------------------------------------------- /test/tests/haskell-cabal/run.sh: -------------------------------------------------------------------------------- 1 | ../run-bash-in-container.sh -------------------------------------------------------------------------------- /test/tests/haskell-ghci/container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/haskell-ghci/container.sh -------------------------------------------------------------------------------- /test/tests/haskell-ghci/run.sh: -------------------------------------------------------------------------------- 1 | ../run-bash-in-container.sh -------------------------------------------------------------------------------- /test/tests/haskell-runhaskell/container.hs: -------------------------------------------------------------------------------- 1 | main = putStrLn "Hello, World" 2 | -------------------------------------------------------------------------------- /test/tests/haskell-runhaskell/expected-std-out.txt: -------------------------------------------------------------------------------- 1 | Hello, World 2 | -------------------------------------------------------------------------------- /test/tests/haskell-runhaskell/run.sh: -------------------------------------------------------------------------------- 1 | ../run-haskell-in-container.sh -------------------------------------------------------------------------------- /test/tests/haskell-stack/container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/haskell-stack/container.sh -------------------------------------------------------------------------------- /test/tests/haskell-stack/run.sh: -------------------------------------------------------------------------------- 1 | ../run-bash-in-container.sh -------------------------------------------------------------------------------- /test/tests/haxe-haxelib-install/Container.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/haxe-haxelib-install/Container.hx -------------------------------------------------------------------------------- /test/tests/haxe-haxelib-install/run.sh: -------------------------------------------------------------------------------- 1 | ../run-haxe-in-container.sh -------------------------------------------------------------------------------- /test/tests/haxe-hello-world/Container.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/haxe-hello-world/Container.hx -------------------------------------------------------------------------------- /test/tests/haxe-hello-world/expected-std-out.txt: -------------------------------------------------------------------------------- 1 | Container.hx:3: Hello World! 2 | -------------------------------------------------------------------------------- /test/tests/haxe-hello-world/run.sh: -------------------------------------------------------------------------------- 1 | ../run-haxe-in-container.sh -------------------------------------------------------------------------------- /test/tests/hylang-hello-world/container.hy: -------------------------------------------------------------------------------- 1 | (print "Hello World!") 2 | -------------------------------------------------------------------------------- /test/tests/hylang-hello-world/expected-std-out.txt: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /test/tests/hylang-hello-world/run.sh: -------------------------------------------------------------------------------- 1 | ../run-hy-in-container.sh -------------------------------------------------------------------------------- /test/tests/hylang-sh/container.hy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/hylang-sh/container.hy -------------------------------------------------------------------------------- /test/tests/hylang-sh/expected-std-out.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 42 3 | -------------------------------------------------------------------------------- /test/tests/hylang-sh/run.sh: -------------------------------------------------------------------------------- 1 | ../run-hy-in-container.sh -------------------------------------------------------------------------------- /test/tests/image-name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/image-name.sh -------------------------------------------------------------------------------- /test/tests/java-ca-certificates/container.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/java-ca-certificates/container.java -------------------------------------------------------------------------------- /test/tests/java-ca-certificates/run.sh: -------------------------------------------------------------------------------- 1 | ../run-java-in-container.sh -------------------------------------------------------------------------------- /test/tests/java-hello-world/container.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/java-hello-world/container.java -------------------------------------------------------------------------------- /test/tests/java-hello-world/expected-std-out.txt: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /test/tests/java-hello-world/run.sh: -------------------------------------------------------------------------------- 1 | ../run-java-in-container.sh -------------------------------------------------------------------------------- /test/tests/java-uimanager-font/container.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/java-uimanager-font/container.java -------------------------------------------------------------------------------- /test/tests/java-uimanager-font/run.sh: -------------------------------------------------------------------------------- 1 | ../run-java-in-container.sh -------------------------------------------------------------------------------- /test/tests/jetty-hello-web/index.jsp: -------------------------------------------------------------------------------- 1 | <%= request.getParameter("hello") %> 2 | -------------------------------------------------------------------------------- /test/tests/jetty-hello-web/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/jetty-hello-web/run.sh -------------------------------------------------------------------------------- /test/tests/julia-downloads/container.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/julia-downloads/container.jl -------------------------------------------------------------------------------- /test/tests/julia-downloads/run.sh: -------------------------------------------------------------------------------- 1 | ../run-julia-in-container.sh -------------------------------------------------------------------------------- /test/tests/julia-hello-world/container.jl: -------------------------------------------------------------------------------- 1 | println("Hello World!") 2 | -------------------------------------------------------------------------------- /test/tests/julia-hello-world/expected-std-out.txt: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /test/tests/julia-hello-world/run.sh: -------------------------------------------------------------------------------- 1 | ../run-julia-in-container.sh -------------------------------------------------------------------------------- /test/tests/logstash-basics/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/logstash-basics/run.sh -------------------------------------------------------------------------------- /test/tests/matomo-apache-run/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/matomo-apache-run/run.sh -------------------------------------------------------------------------------- /test/tests/matomo-fpm-run/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/matomo-fpm-run/run.sh -------------------------------------------------------------------------------- /test/tests/memcached-basics/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/memcached-basics/run.sh -------------------------------------------------------------------------------- /test/tests/mongo-auth-basics/run.sh: -------------------------------------------------------------------------------- 1 | ../mongo-basics/run.sh -------------------------------------------------------------------------------- /test/tests/mongo-basics/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/mongo-basics/run.sh -------------------------------------------------------------------------------- /test/tests/mongo-express-run/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/mongo-express-run/run.sh -------------------------------------------------------------------------------- /test/tests/mongo-tls-auth/run.sh: -------------------------------------------------------------------------------- 1 | ../mongo-basics/run.sh -------------------------------------------------------------------------------- /test/tests/mongo-tls-basics/run.sh: -------------------------------------------------------------------------------- 1 | ../mongo-basics/run.sh -------------------------------------------------------------------------------- /test/tests/monica-apache-run/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/monica-apache-run/run.sh -------------------------------------------------------------------------------- /test/tests/monica-cli-mariadb10/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/monica-cli-mariadb10/run.sh -------------------------------------------------------------------------------- /test/tests/monica-cli-mysql8/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/monica-cli-mysql8/run.sh -------------------------------------------------------------------------------- /test/tests/monica-cli/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/monica-cli/run.sh -------------------------------------------------------------------------------- /test/tests/monica-fpm-run/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/monica-fpm-run/run.sh -------------------------------------------------------------------------------- /test/tests/mysql-basics/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/mysql-basics/run.sh -------------------------------------------------------------------------------- /test/tests/mysql-initdb/initdb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/mysql-initdb/initdb.sql -------------------------------------------------------------------------------- /test/tests/mysql-initdb/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/mysql-initdb/run.sh -------------------------------------------------------------------------------- /test/tests/mysql-log-bin/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/mysql-log-bin/run.sh -------------------------------------------------------------------------------- /test/tests/nextcloud-apache-run/real-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/nextcloud-apache-run/real-run.sh -------------------------------------------------------------------------------- /test/tests/nextcloud-apache-run/run.sh: -------------------------------------------------------------------------------- 1 | ../cheeky-retries.sh -------------------------------------------------------------------------------- /test/tests/nextcloud-cli-mysql/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/nextcloud-cli-mysql/run.sh -------------------------------------------------------------------------------- /test/tests/nextcloud-cli-postgres/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/nextcloud-cli-postgres/run.sh -------------------------------------------------------------------------------- /test/tests/nextcloud-cli-sqlite/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/nextcloud-cli-sqlite/run.sh -------------------------------------------------------------------------------- /test/tests/nextcloud-cli/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/nextcloud-cli/run.sh -------------------------------------------------------------------------------- /test/tests/nextcloud-fpm-run/real-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/nextcloud-fpm-run/real-run.sh -------------------------------------------------------------------------------- /test/tests/nextcloud-fpm-run/run.sh: -------------------------------------------------------------------------------- 1 | ../cheeky-retries.sh -------------------------------------------------------------------------------- /test/tests/no-hard-coded-passwords/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/no-hard-coded-passwords/run.sh -------------------------------------------------------------------------------- /test/tests/node-hello-world/container.js: -------------------------------------------------------------------------------- 1 | console.log("Hello World!"); 2 | -------------------------------------------------------------------------------- /test/tests/node-hello-world/expected-std-out.txt: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /test/tests/node-hello-world/run.sh: -------------------------------------------------------------------------------- 1 | ../run-node-in-container.sh -------------------------------------------------------------------------------- /test/tests/nuxeo-basics/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/nuxeo-basics/run.sh -------------------------------------------------------------------------------- /test/tests/nuxeo-conf/expected-std-out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/nuxeo-conf/expected-std-out.txt -------------------------------------------------------------------------------- /test/tests/nuxeo-conf/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/nuxeo-conf/run.sh -------------------------------------------------------------------------------- /test/tests/open-liberty-hello-world/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/open-liberty-hello-world/run.sh -------------------------------------------------------------------------------- /test/tests/override-cmd/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/override-cmd/run.sh -------------------------------------------------------------------------------- /test/tests/percona-rocksdb/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/percona-rocksdb/run.sh -------------------------------------------------------------------------------- /test/tests/percona-tokudb/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/percona-tokudb/run.sh -------------------------------------------------------------------------------- /test/tests/perl-cpanm/container.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -eux 3 | 4 | cpanm --notest Mojolicious 5 | -------------------------------------------------------------------------------- /test/tests/perl-cpanm/run.sh: -------------------------------------------------------------------------------- 1 | ../run-sh-in-container.sh -------------------------------------------------------------------------------- /test/tests/perl-hello-world/container.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | print "Hello World!\n"; 3 | -------------------------------------------------------------------------------- /test/tests/perl-hello-world/expected-std-out.txt: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /test/tests/perl-hello-world/run.sh: -------------------------------------------------------------------------------- 1 | ../run-perl-in-container.sh -------------------------------------------------------------------------------- /test/tests/php-apache-hello-web/index.php: -------------------------------------------------------------------------------- 1 | ../php-fpm-hello-web/index.php -------------------------------------------------------------------------------- /test/tests/php-apache-hello-web/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/php-apache-hello-web/run.sh -------------------------------------------------------------------------------- /test/tests/php-argon2/container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/php-argon2/container.php -------------------------------------------------------------------------------- /test/tests/php-argon2/run.sh: -------------------------------------------------------------------------------- 1 | ../run-php-in-container.sh -------------------------------------------------------------------------------- /test/tests/php-ext-install/container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/php-ext-install/container.sh -------------------------------------------------------------------------------- /test/tests/php-ext-install/run.sh: -------------------------------------------------------------------------------- 1 | ../run-sh-in-container.sh -------------------------------------------------------------------------------- /test/tests/php-fpm-hello-web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/php-fpm-hello-web/index.php -------------------------------------------------------------------------------- /test/tests/php-fpm-hello-web/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/official-images/HEAD/test/tests/php-fpm-hello-web/run.sh -------------------------------------------------------------------------------- /test/tests/php-hello-world/container.php: -------------------------------------------------------------------------------- 1 |