gitextract_zs_h73wn/ ├── .buildkit-build-contexts.sh ├── .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 │ ├── azul-zulu │ ├── 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 │ ├── convertigo-hello-world/ │ │ └── run.sh │ ├── dart-hello-world/ │ │ ├── container.dart │ │ └── expected-std-out.txt │ ├── debian-apt-get/ │ │ ├── container.sh │ │ └── expected-std-out.txt │ ├── 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 │ ├── erlang-hello-world/ │ │ ├── container.erl │ │ └── expected-std-out.txt │ ├── gcc-c-hello-world/ │ │ ├── container.c │ │ └── expected-std-out.txt │ ├── gcc-cpp-hello-world/ │ │ ├── container.cpp │ │ └── expected-std-out.txt │ ├── ghost-basics/ │ │ └── run.sh │ ├── golang-hello-world/ │ │ ├── container.go │ │ ├── expected-std-out.txt │ │ └── run.sh │ ├── haproxy-basics/ │ │ ├── haproxy.cfg │ │ └── run.sh │ ├── haskell-cabal/ │ │ └── container.sh │ ├── haskell-ghci/ │ │ └── container.sh │ ├── haskell-runhaskell/ │ │ ├── container.hs │ │ └── expected-std-out.txt │ ├── haskell-stack/ │ │ └── container.sh │ ├── haxe-haxelib-install/ │ │ └── Container.hx │ ├── haxe-hello-world/ │ │ ├── Container.hx │ │ └── expected-std-out.txt │ ├── hylang-hello-world/ │ │ ├── container.hy │ │ └── expected-std-out.txt │ ├── hylang-sh/ │ │ ├── container.hy │ │ └── expected-std-out.txt │ ├── image-name.sh │ ├── java-ca-certificates/ │ │ └── container.java │ ├── java-hello-world/ │ │ ├── container.java │ │ └── expected-std-out.txt │ ├── java-uimanager-font/ │ │ └── container.java │ ├── jetty-hello-web/ │ │ ├── index.jsp │ │ └── run.sh │ ├── julia-downloads/ │ │ └── container.jl │ ├── julia-hello-world/ │ │ ├── container.jl │ │ └── expected-std-out.txt │ ├── logstash-basics/ │ │ └── run.sh │ ├── matomo-apache-run/ │ │ └── run.sh │ ├── matomo-fpm-run/ │ │ └── run.sh │ ├── memcached-basics/ │ │ └── run.sh │ ├── mongo-basics/ │ │ └── run.sh │ ├── mongo-express-run/ │ │ └── run.sh │ ├── monica-apache-run/ │ │ └── run.sh │ ├── monica-cli/ │ │ └── run.sh │ ├── monica-cli-mariadb10/ │ │ └── run.sh │ ├── monica-cli-mysql8/ │ │ └── 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 │ ├── nextcloud-cli/ │ │ └── run.sh │ ├── nextcloud-cli-mysql/ │ │ └── run.sh │ ├── nextcloud-cli-postgres/ │ │ └── run.sh │ ├── nextcloud-cli-sqlite/ │ │ └── run.sh │ ├── nextcloud-fpm-run/ │ │ └── real-run.sh │ ├── no-hard-coded-passwords/ │ │ └── run.sh │ ├── node-hello-world/ │ │ ├── container.js │ │ └── expected-std-out.txt │ ├── 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 │ ├── perl-hello-world/ │ │ ├── container.pl │ │ └── expected-std-out.txt │ ├── php-apache-hello-web/ │ │ └── run.sh │ ├── php-argon2/ │ │ └── container.php │ ├── php-ext-install/ │ │ └── container.sh │ ├── php-fpm-hello-web/ │ │ ├── index.php │ │ └── run.sh │ ├── php-hello-world/ │ │ ├── container.php │ │ └── expected-std-out.txt │ ├── 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 │ ├── python-no-pyc/ │ │ ├── container.cmd │ │ └── container.sh │ ├── python-pip-requests-ssl/ │ │ └── container.py │ ├── python-sqlite3/ │ │ └── container.py │ ├── python-stack-size/ │ │ └── container.py │ ├── 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/ │ │ └── run.sh │ ├── redis-basics-config/ │ │ └── run.sh │ ├── redis-basics-persistent/ │ │ └── run.sh │ ├── redmine-basics/ │ │ └── run.sh │ ├── ruby-binstubs/ │ │ ├── Gemfile │ │ └── container.sh │ ├── ruby-bundler/ │ │ ├── Gemfile │ │ └── container.sh │ ├── ruby-gems/ │ │ └── container.sh │ ├── ruby-hello-world/ │ │ ├── container.rb │ │ └── expected-std-out.txt │ ├── ruby-native-extension/ │ │ ├── expected-std-out.txt │ │ └── run.sh │ ├── ruby-nonroot/ │ │ ├── Gemfile │ │ └── run.sh │ ├── ruby-standard-libs/ │ │ ├── container.rb │ │ └── expected-std-out.txt │ ├── 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 │ ├── silverpeas-basics/ │ │ └── run.sh │ ├── spiped-basics/ │ │ └── run.sh │ ├── swift-hello-world/ │ │ ├── container.swift │ │ └── expected-std-out.txt │ ├── swipl-modules/ │ │ ├── container.pl │ │ └── expected-std-out.txt │ ├── 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