├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ ├── generate.sh │ ├── update.yml │ ├── verify-artifacts.yml │ └── version-components.jq ├── .gitignore ├── .gsl-common ├── gsl-latest.sh └── gsl-version-env.sh ├── .libs ├── .gitignore ├── deb-repo.sh ├── git.sh ├── hooks.sh ├── lib.jq ├── pypi.sh └── yq.sh ├── .test ├── config.sh └── tests │ ├── buildkitd │ └── run.sh │ ├── c8dind │ └── run.sh │ └── true │ ├── expected-std-out.txt │ └── run.sh ├── LICENSE ├── README.md ├── adsb ├── acarsdec │ ├── Dockerfile │ ├── Dockerfile.template │ ├── docker-entrypoint.sh │ ├── versions.json │ └── versions.sh ├── gsl.sh └── readsb │ ├── Dockerfile │ ├── Dockerfile.template │ ├── docker-entrypoint.sh │ ├── versions.json │ └── versions.sh ├── apply-templates.sh ├── backblaze-b2 ├── Dockerfile ├── Dockerfile.template ├── gsl.sh ├── versions.json └── versions.sh ├── beets ├── Dockerfile ├── Dockerfile.template ├── README.md ├── gsl.sh ├── versions.json └── versions.sh ├── containerd ├── Dockerfile ├── Dockerfile.1.6 ├── Dockerfile.1.7 ├── Dockerfile.rc ├── Dockerfile.template ├── README.md ├── docker-entrypoint.sh ├── gsl.sh ├── versions.json └── versions.sh ├── coredns ├── Dockerfile ├── Dockerfile.template ├── gsl.sh ├── versions.json └── versions.sh ├── cygwin ├── Dockerfile.1809 ├── Dockerfile.ltsc2022 ├── Dockerfile.ltsc2025 ├── Dockerfile.template ├── build.sh ├── gsl.sh ├── latest.yml ├── versions.json └── versions.sh ├── diffoscope ├── Dockerfile ├── Dockerfile.template ├── git-difftool.sh ├── gsl.sh ├── versions.json └── versions.sh ├── docker-desktop ├── Dockerfile ├── Dockerfile.template ├── gsl.sh ├── versions.json ├── versions.sh ├── virtiofsd-237.patch └── virtiofsd.patch ├── docker-master ├── Dockerfile ├── Dockerfile.containerd ├── Dockerfile.template ├── docker-entrypoint.sh ├── dockerd-entrypoint.sh ├── gsl.sh ├── modprobe.sh ├── versions.json └── versions.sh ├── exim4 ├── Dockerfile ├── README.md ├── docker-entrypoint.sh ├── gsl.sh └── set-exim4-update-conf ├── firefox ├── Dockerfile ├── Dockerfile.template ├── firefox.png ├── gsl.sh ├── versions.json └── versions.sh ├── gitlab ├── Jenkinsfile ├── README.md └── retag.sh ├── gsl-libs.sh ├── handbrake ├── Dockerfile ├── Dockerfile.template ├── gsl.sh ├── versions.json └── versions.sh ├── hell-win ├── Jenkinsfile └── mirror.sh ├── infosiftr-moby ├── Dockerfile ├── Dockerfile.bookworm ├── Dockerfile.template ├── docker-entrypoint.sh ├── dockerd-entrypoint.sh ├── gsl.sh ├── modprobe.sh ├── versions.json └── versions.sh ├── jenkins ├── Dockerfile.lts ├── Dockerfile.template ├── Dockerfile.weekly ├── gsl.sh ├── lts │ ├── Dockerfile │ └── docker-entrypoint.sh ├── versions.json ├── versions.sh └── weekly │ ├── Dockerfile │ └── docker-entrypoint.sh ├── lutris ├── Dockerfile ├── Dockerfile.template ├── gsl.sh ├── versions.json └── versions.sh ├── makemkv ├── Dockerfile ├── Dockerfile.template ├── gsl.sh ├── versions.json └── versions.sh ├── microsoft-edge ├── Dockerfile.template ├── beta │ ├── Dockerfile │ ├── logo.png │ ├── versions.json │ └── versions.sh ├── dev │ ├── Dockerfile │ ├── logo.png │ ├── versions.json │ └── versions.sh ├── gsl.sh ├── stable │ ├── Dockerfile │ ├── logo.png │ ├── versions.json │ └── versions.sh └── versions.sh ├── mojo ├── Dockerfile └── gsl.sh ├── mutt-gmail ├── Dockerfile ├── README.md ├── entrypoint.sh ├── gsl.sh ├── muttrc └── vimrc ├── network-toolbox ├── alpine │ └── Dockerfile ├── debian │ └── Dockerfile └── gsl.sh ├── nolibc ├── Dockerfile ├── Dockerfile.template ├── gsl.sh ├── versions.json └── versions.sh ├── parallel.sh ├── perl ├── Dockerfile └── gsl.sh ├── plex ├── gsl.sh └── media-server │ ├── Dockerfile │ ├── Dockerfile.template │ ├── docker-entrypoint.sh │ ├── run.sh │ ├── versions.json │ └── versions.sh ├── prometheus ├── Dockerfile ├── Dockerfile.template ├── alertmanager │ ├── Dockerfile │ ├── Dockerfile.template │ ├── docker-entrypoint.sh │ ├── versions.json │ └── versions.sh ├── blackbox-exporter │ ├── Dockerfile │ ├── Dockerfile.template │ ├── versions.json │ └── versions.sh ├── docker-entrypoint.sh ├── gsl.sh ├── hooks.sh ├── node-exporter │ ├── Dockerfile │ ├── Dockerfile.template │ ├── versions.json │ └── versions.sh ├── versions.json └── versions.sh ├── rtl-433 ├── Dockerfile ├── Dockerfile.template ├── gsl.sh ├── versions.json └── versions.sh ├── rtorrent ├── Dockerfile ├── Dockerfile.template ├── README.md ├── gsl.sh ├── rtorrent.rc ├── run.sh ├── versions.json └── versions.sh ├── scratch ├── multiarch.jq └── multiarch.sh ├── signal-desktop ├── Dockerfile ├── Dockerfile.template ├── gsl.sh ├── versions.json └── versions.sh ├── slack ├── Dockerfile ├── Dockerfile.template ├── browser.sh ├── gsl.sh ├── slack.svg ├── versions.json └── versions.sh ├── sleeping-beauty ├── Dockerfile ├── Dockerfile.nolibc ├── Makefile ├── gsl.sh ├── sleeping-beauty ├── sleeping-beauty.asm └── sleeping-beauty.c ├── speedtest ├── Dockerfile ├── Dockerfile.template ├── README.md ├── docker-entrypoint.sh ├── gsl.sh ├── versions.json └── versions.sh ├── steam ├── Dockerfile ├── Dockerfile.template ├── gsl.sh ├── versions.json └── versions.sh ├── tailscale ├── Dockerfile ├── Dockerfile.template ├── versions.json └── versions.sh ├── tinygo ├── Dockerfile ├── Dockerfile.template ├── gsl.sh ├── versions.json └── versions.sh ├── toybox ├── Dockerfile ├── Dockerfile.template ├── gsl.sh ├── versions.json └── versions.sh ├── true ├── .gitignore ├── Dockerfile ├── Dockerfile.all ├── Dockerfile.yolo ├── Makefile ├── build-all.sh ├── gsl.sh ├── oci.sh ├── oci │ ├── blobs │ │ └── sha256 │ │ │ ├── 1c51fc286aa95d9413226599576bafa38490b1e292375c90de095855b64caea6 │ │ │ ├── 25be82253336f0b8c4347bc4ecbbcdc85d0e0f118ccf8dc2e119c0a47a0a486e │ │ │ └── 9ef42f1d602fb423fad935aac1caa0cfdbce1ad7edce64d080a4eb7b13f7cd9d │ ├── config.json │ ├── image-manifest.json │ ├── index.json │ ├── oci-layout │ ├── rootfs.tar │ └── rootfs.tar.gz ├── true-asm ├── true-yolo ├── true-yolo.asm ├── true.asm ├── true.c ├── true.go ├── true.rs └── yoloci │ ├── blobs │ └── sha256 │ │ ├── 9640fb911d45e3070a35d8eb018380e2efa879acad3b0c74d0c91ed53369177f │ │ ├── d80756958759f24eb147154bb1ffeabaf2aeb88b659c64dcaa906c97b4da0cbc │ │ └── e759af11fe110511ea6b3f02512de70861e9fccd669a14a33a2bb6a04b70aadf │ ├── config.json │ ├── image-manifest.json │ ├── index.json │ ├── oci-layout │ ├── rootfs.tar │ └── rootfs.tar.gz ├── update.sh ├── versions.sh ├── vultr-cli ├── Dockerfile ├── Dockerfile.template ├── gsl.sh ├── versions.json └── versions.sh ├── weechat ├── Dockerfile ├── Dockerfile.template ├── gsl.sh ├── versions.json └── versions.sh ├── wine ├── Dockerfile ├── Dockerfile.template ├── gsl.sh ├── versions.json └── versions.sh ├── ymlfmt ├── Dockerfile ├── Dockerfile.template ├── gsl.sh ├── test-in.yml ├── test-out.yml ├── versions.json ├── versions.sh └── ymlfmt └── zoom ├── Dockerfile ├── Dockerfile.template ├── browser.sh ├── gsl.sh ├── versions.json ├── versions.sh └── zoom.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/.github/workflows/generate.sh -------------------------------------------------------------------------------- /.github/workflows/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/.github/workflows/update.yml -------------------------------------------------------------------------------- /.github/workflows/verify-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/.github/workflows/verify-artifacts.yml -------------------------------------------------------------------------------- /.github/workflows/version-components.jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/.github/workflows/version-components.jq -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.jq-template.awk 2 | -------------------------------------------------------------------------------- /.gsl-common/gsl-latest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/.gsl-common/gsl-latest.sh -------------------------------------------------------------------------------- /.gsl-common/gsl-version-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/.gsl-common/gsl-version-env.sh -------------------------------------------------------------------------------- /.libs/.gitignore: -------------------------------------------------------------------------------- 1 | .yq 2 | -------------------------------------------------------------------------------- /.libs/deb-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/.libs/deb-repo.sh -------------------------------------------------------------------------------- /.libs/git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/.libs/git.sh -------------------------------------------------------------------------------- /.libs/hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/.libs/hooks.sh -------------------------------------------------------------------------------- /.libs/lib.jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/.libs/lib.jq -------------------------------------------------------------------------------- /.libs/pypi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/.libs/pypi.sh -------------------------------------------------------------------------------- /.libs/yq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/.libs/yq.sh -------------------------------------------------------------------------------- /.test/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/.test/config.sh -------------------------------------------------------------------------------- /.test/tests/buildkitd/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/.test/tests/buildkitd/run.sh -------------------------------------------------------------------------------- /.test/tests/c8dind/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/.test/tests/c8dind/run.sh -------------------------------------------------------------------------------- /.test/tests/true/expected-std-out.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.test/tests/true/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/.test/tests/true/run.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/README.md -------------------------------------------------------------------------------- /adsb/acarsdec/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/adsb/acarsdec/Dockerfile -------------------------------------------------------------------------------- /adsb/acarsdec/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/adsb/acarsdec/Dockerfile.template -------------------------------------------------------------------------------- /adsb/acarsdec/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/adsb/acarsdec/docker-entrypoint.sh -------------------------------------------------------------------------------- /adsb/acarsdec/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/adsb/acarsdec/versions.json -------------------------------------------------------------------------------- /adsb/acarsdec/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/adsb/acarsdec/versions.sh -------------------------------------------------------------------------------- /adsb/gsl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/adsb/gsl.sh -------------------------------------------------------------------------------- /adsb/readsb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/adsb/readsb/Dockerfile -------------------------------------------------------------------------------- /adsb/readsb/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/adsb/readsb/Dockerfile.template -------------------------------------------------------------------------------- /adsb/readsb/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/adsb/readsb/docker-entrypoint.sh -------------------------------------------------------------------------------- /adsb/readsb/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/adsb/readsb/versions.json -------------------------------------------------------------------------------- /adsb/readsb/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/adsb/readsb/versions.sh -------------------------------------------------------------------------------- /apply-templates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/apply-templates.sh -------------------------------------------------------------------------------- /backblaze-b2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/backblaze-b2/Dockerfile -------------------------------------------------------------------------------- /backblaze-b2/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/backblaze-b2/Dockerfile.template -------------------------------------------------------------------------------- /backblaze-b2/gsl.sh: -------------------------------------------------------------------------------- 1 | ../.gsl-common/gsl-version-env.sh -------------------------------------------------------------------------------- /backblaze-b2/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/backblaze-b2/versions.json -------------------------------------------------------------------------------- /backblaze-b2/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/backblaze-b2/versions.sh -------------------------------------------------------------------------------- /beets/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/beets/Dockerfile -------------------------------------------------------------------------------- /beets/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/beets/Dockerfile.template -------------------------------------------------------------------------------- /beets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/beets/README.md -------------------------------------------------------------------------------- /beets/gsl.sh: -------------------------------------------------------------------------------- 1 | ../.gsl-common/gsl-version-env.sh -------------------------------------------------------------------------------- /beets/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/beets/versions.json -------------------------------------------------------------------------------- /beets/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/beets/versions.sh -------------------------------------------------------------------------------- /containerd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/containerd/Dockerfile -------------------------------------------------------------------------------- /containerd/Dockerfile.1.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/containerd/Dockerfile.1.6 -------------------------------------------------------------------------------- /containerd/Dockerfile.1.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/containerd/Dockerfile.1.7 -------------------------------------------------------------------------------- /containerd/Dockerfile.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/containerd/Dockerfile.rc -------------------------------------------------------------------------------- /containerd/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/containerd/Dockerfile.template -------------------------------------------------------------------------------- /containerd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/containerd/README.md -------------------------------------------------------------------------------- /containerd/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/containerd/docker-entrypoint.sh -------------------------------------------------------------------------------- /containerd/gsl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/containerd/gsl.sh -------------------------------------------------------------------------------- /containerd/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/containerd/versions.json -------------------------------------------------------------------------------- /containerd/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/containerd/versions.sh -------------------------------------------------------------------------------- /coredns/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/coredns/Dockerfile -------------------------------------------------------------------------------- /coredns/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/coredns/Dockerfile.template -------------------------------------------------------------------------------- /coredns/gsl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/coredns/gsl.sh -------------------------------------------------------------------------------- /coredns/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/coredns/versions.json -------------------------------------------------------------------------------- /coredns/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/coredns/versions.sh -------------------------------------------------------------------------------- /cygwin/Dockerfile.1809: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/cygwin/Dockerfile.1809 -------------------------------------------------------------------------------- /cygwin/Dockerfile.ltsc2022: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/cygwin/Dockerfile.ltsc2022 -------------------------------------------------------------------------------- /cygwin/Dockerfile.ltsc2025: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/cygwin/Dockerfile.ltsc2025 -------------------------------------------------------------------------------- /cygwin/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/cygwin/Dockerfile.template -------------------------------------------------------------------------------- /cygwin/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/cygwin/build.sh -------------------------------------------------------------------------------- /cygwin/gsl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/cygwin/gsl.sh -------------------------------------------------------------------------------- /cygwin/latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/cygwin/latest.yml -------------------------------------------------------------------------------- /cygwin/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/cygwin/versions.json -------------------------------------------------------------------------------- /cygwin/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/cygwin/versions.sh -------------------------------------------------------------------------------- /diffoscope/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/diffoscope/Dockerfile -------------------------------------------------------------------------------- /diffoscope/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/diffoscope/Dockerfile.template -------------------------------------------------------------------------------- /diffoscope/git-difftool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/diffoscope/git-difftool.sh -------------------------------------------------------------------------------- /diffoscope/gsl.sh: -------------------------------------------------------------------------------- 1 | ../.gsl-common/gsl-version-env.sh -------------------------------------------------------------------------------- /diffoscope/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/diffoscope/versions.json -------------------------------------------------------------------------------- /diffoscope/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/diffoscope/versions.sh -------------------------------------------------------------------------------- /docker-desktop/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/docker-desktop/Dockerfile -------------------------------------------------------------------------------- /docker-desktop/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/docker-desktop/Dockerfile.template -------------------------------------------------------------------------------- /docker-desktop/gsl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/docker-desktop/gsl.sh -------------------------------------------------------------------------------- /docker-desktop/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/docker-desktop/versions.json -------------------------------------------------------------------------------- /docker-desktop/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/docker-desktop/versions.sh -------------------------------------------------------------------------------- /docker-desktop/virtiofsd-237.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/docker-desktop/virtiofsd-237.patch -------------------------------------------------------------------------------- /docker-desktop/virtiofsd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/docker-desktop/virtiofsd.patch -------------------------------------------------------------------------------- /docker-master/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/docker-master/Dockerfile -------------------------------------------------------------------------------- /docker-master/Dockerfile.containerd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/docker-master/Dockerfile.containerd -------------------------------------------------------------------------------- /docker-master/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/docker-master/Dockerfile.template -------------------------------------------------------------------------------- /docker-master/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/docker-master/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker-master/dockerd-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/docker-master/dockerd-entrypoint.sh -------------------------------------------------------------------------------- /docker-master/gsl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/docker-master/gsl.sh -------------------------------------------------------------------------------- /docker-master/modprobe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/docker-master/modprobe.sh -------------------------------------------------------------------------------- /docker-master/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/docker-master/versions.json -------------------------------------------------------------------------------- /docker-master/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/docker-master/versions.sh -------------------------------------------------------------------------------- /exim4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/exim4/Dockerfile -------------------------------------------------------------------------------- /exim4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/exim4/README.md -------------------------------------------------------------------------------- /exim4/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/exim4/docker-entrypoint.sh -------------------------------------------------------------------------------- /exim4/gsl.sh: -------------------------------------------------------------------------------- 1 | ../.gsl-common/gsl-latest.sh -------------------------------------------------------------------------------- /exim4/set-exim4-update-conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/exim4/set-exim4-update-conf -------------------------------------------------------------------------------- /firefox/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/firefox/Dockerfile -------------------------------------------------------------------------------- /firefox/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/firefox/Dockerfile.template -------------------------------------------------------------------------------- /firefox/firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/firefox/firefox.png -------------------------------------------------------------------------------- /firefox/gsl.sh: -------------------------------------------------------------------------------- 1 | ../.gsl-common/gsl-version-env.sh -------------------------------------------------------------------------------- /firefox/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/firefox/versions.json -------------------------------------------------------------------------------- /firefox/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/firefox/versions.sh -------------------------------------------------------------------------------- /gitlab/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/gitlab/Jenkinsfile -------------------------------------------------------------------------------- /gitlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/gitlab/README.md -------------------------------------------------------------------------------- /gitlab/retag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/gitlab/retag.sh -------------------------------------------------------------------------------- /gsl-libs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/gsl-libs.sh -------------------------------------------------------------------------------- /handbrake/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/handbrake/Dockerfile -------------------------------------------------------------------------------- /handbrake/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/handbrake/Dockerfile.template -------------------------------------------------------------------------------- /handbrake/gsl.sh: -------------------------------------------------------------------------------- 1 | ../.gsl-common/gsl-version-env.sh -------------------------------------------------------------------------------- /handbrake/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/handbrake/versions.json -------------------------------------------------------------------------------- /handbrake/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/handbrake/versions.sh -------------------------------------------------------------------------------- /hell-win/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/hell-win/Jenkinsfile -------------------------------------------------------------------------------- /hell-win/mirror.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/hell-win/mirror.sh -------------------------------------------------------------------------------- /infosiftr-moby/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/infosiftr-moby/Dockerfile -------------------------------------------------------------------------------- /infosiftr-moby/Dockerfile.bookworm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/infosiftr-moby/Dockerfile.bookworm -------------------------------------------------------------------------------- /infosiftr-moby/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/infosiftr-moby/Dockerfile.template -------------------------------------------------------------------------------- /infosiftr-moby/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/infosiftr-moby/docker-entrypoint.sh -------------------------------------------------------------------------------- /infosiftr-moby/dockerd-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/infosiftr-moby/dockerd-entrypoint.sh -------------------------------------------------------------------------------- /infosiftr-moby/gsl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/infosiftr-moby/gsl.sh -------------------------------------------------------------------------------- /infosiftr-moby/modprobe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/infosiftr-moby/modprobe.sh -------------------------------------------------------------------------------- /infosiftr-moby/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/infosiftr-moby/versions.json -------------------------------------------------------------------------------- /infosiftr-moby/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/infosiftr-moby/versions.sh -------------------------------------------------------------------------------- /jenkins/Dockerfile.lts: -------------------------------------------------------------------------------- 1 | lts/Dockerfile -------------------------------------------------------------------------------- /jenkins/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/jenkins/Dockerfile.template -------------------------------------------------------------------------------- /jenkins/Dockerfile.weekly: -------------------------------------------------------------------------------- 1 | weekly/Dockerfile -------------------------------------------------------------------------------- /jenkins/gsl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/jenkins/gsl.sh -------------------------------------------------------------------------------- /jenkins/lts/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/jenkins/lts/Dockerfile -------------------------------------------------------------------------------- /jenkins/lts/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/jenkins/lts/docker-entrypoint.sh -------------------------------------------------------------------------------- /jenkins/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/jenkins/versions.json -------------------------------------------------------------------------------- /jenkins/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/jenkins/versions.sh -------------------------------------------------------------------------------- /jenkins/weekly/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/jenkins/weekly/Dockerfile -------------------------------------------------------------------------------- /jenkins/weekly/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/jenkins/weekly/docker-entrypoint.sh -------------------------------------------------------------------------------- /lutris/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/lutris/Dockerfile -------------------------------------------------------------------------------- /lutris/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/lutris/Dockerfile.template -------------------------------------------------------------------------------- /lutris/gsl.sh: -------------------------------------------------------------------------------- 1 | ../.gsl-common/gsl-version-env.sh -------------------------------------------------------------------------------- /lutris/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/lutris/versions.json -------------------------------------------------------------------------------- /lutris/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/lutris/versions.sh -------------------------------------------------------------------------------- /makemkv/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/makemkv/Dockerfile -------------------------------------------------------------------------------- /makemkv/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/makemkv/Dockerfile.template -------------------------------------------------------------------------------- /makemkv/gsl.sh: -------------------------------------------------------------------------------- 1 | ../.gsl-common/gsl-version-env.sh -------------------------------------------------------------------------------- /makemkv/versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.18.2" 3 | } 4 | -------------------------------------------------------------------------------- /makemkv/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/makemkv/versions.sh -------------------------------------------------------------------------------- /microsoft-edge/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/microsoft-edge/Dockerfile.template -------------------------------------------------------------------------------- /microsoft-edge/beta/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/microsoft-edge/beta/Dockerfile -------------------------------------------------------------------------------- /microsoft-edge/beta/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/microsoft-edge/beta/logo.png -------------------------------------------------------------------------------- /microsoft-edge/beta/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/microsoft-edge/beta/versions.json -------------------------------------------------------------------------------- /microsoft-edge/beta/versions.sh: -------------------------------------------------------------------------------- 1 | ../versions.sh -------------------------------------------------------------------------------- /microsoft-edge/dev/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/microsoft-edge/dev/Dockerfile -------------------------------------------------------------------------------- /microsoft-edge/dev/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/microsoft-edge/dev/logo.png -------------------------------------------------------------------------------- /microsoft-edge/dev/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/microsoft-edge/dev/versions.json -------------------------------------------------------------------------------- /microsoft-edge/dev/versions.sh: -------------------------------------------------------------------------------- 1 | ../versions.sh -------------------------------------------------------------------------------- /microsoft-edge/gsl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/microsoft-edge/gsl.sh -------------------------------------------------------------------------------- /microsoft-edge/stable/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/microsoft-edge/stable/Dockerfile -------------------------------------------------------------------------------- /microsoft-edge/stable/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/microsoft-edge/stable/logo.png -------------------------------------------------------------------------------- /microsoft-edge/stable/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/microsoft-edge/stable/versions.json -------------------------------------------------------------------------------- /microsoft-edge/stable/versions.sh: -------------------------------------------------------------------------------- 1 | ../versions.sh -------------------------------------------------------------------------------- /microsoft-edge/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/microsoft-edge/versions.sh -------------------------------------------------------------------------------- /mojo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/mojo/Dockerfile -------------------------------------------------------------------------------- /mojo/gsl.sh: -------------------------------------------------------------------------------- 1 | ../.gsl-common/gsl-latest.sh -------------------------------------------------------------------------------- /mutt-gmail/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/mutt-gmail/Dockerfile -------------------------------------------------------------------------------- /mutt-gmail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/mutt-gmail/README.md -------------------------------------------------------------------------------- /mutt-gmail/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/mutt-gmail/entrypoint.sh -------------------------------------------------------------------------------- /mutt-gmail/gsl.sh: -------------------------------------------------------------------------------- 1 | ../.gsl-common/gsl-latest.sh -------------------------------------------------------------------------------- /mutt-gmail/muttrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/mutt-gmail/muttrc -------------------------------------------------------------------------------- /mutt-gmail/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/mutt-gmail/vimrc -------------------------------------------------------------------------------- /network-toolbox/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/network-toolbox/alpine/Dockerfile -------------------------------------------------------------------------------- /network-toolbox/debian/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/network-toolbox/debian/Dockerfile -------------------------------------------------------------------------------- /network-toolbox/gsl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/network-toolbox/gsl.sh -------------------------------------------------------------------------------- /nolibc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/nolibc/Dockerfile -------------------------------------------------------------------------------- /nolibc/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/nolibc/Dockerfile.template -------------------------------------------------------------------------------- /nolibc/gsl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/nolibc/gsl.sh -------------------------------------------------------------------------------- /nolibc/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/nolibc/versions.json -------------------------------------------------------------------------------- /nolibc/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/nolibc/versions.sh -------------------------------------------------------------------------------- /parallel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/parallel.sh -------------------------------------------------------------------------------- /perl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/perl/Dockerfile -------------------------------------------------------------------------------- /perl/gsl.sh: -------------------------------------------------------------------------------- 1 | ../.gsl-common/gsl-latest.sh -------------------------------------------------------------------------------- /plex/gsl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/plex/gsl.sh -------------------------------------------------------------------------------- /plex/media-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/plex/media-server/Dockerfile -------------------------------------------------------------------------------- /plex/media-server/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/plex/media-server/Dockerfile.template -------------------------------------------------------------------------------- /plex/media-server/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/plex/media-server/docker-entrypoint.sh -------------------------------------------------------------------------------- /plex/media-server/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/plex/media-server/run.sh -------------------------------------------------------------------------------- /plex/media-server/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/plex/media-server/versions.json -------------------------------------------------------------------------------- /plex/media-server/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/plex/media-server/versions.sh -------------------------------------------------------------------------------- /prometheus/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/prometheus/Dockerfile -------------------------------------------------------------------------------- /prometheus/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/prometheus/Dockerfile.template -------------------------------------------------------------------------------- /prometheus/alertmanager/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/prometheus/alertmanager/Dockerfile -------------------------------------------------------------------------------- /prometheus/alertmanager/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/prometheus/alertmanager/Dockerfile.template -------------------------------------------------------------------------------- /prometheus/alertmanager/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/prometheus/alertmanager/docker-entrypoint.sh -------------------------------------------------------------------------------- /prometheus/alertmanager/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/prometheus/alertmanager/versions.json -------------------------------------------------------------------------------- /prometheus/alertmanager/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/prometheus/alertmanager/versions.sh -------------------------------------------------------------------------------- /prometheus/blackbox-exporter/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/prometheus/blackbox-exporter/Dockerfile -------------------------------------------------------------------------------- /prometheus/blackbox-exporter/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/prometheus/blackbox-exporter/Dockerfile.template -------------------------------------------------------------------------------- /prometheus/blackbox-exporter/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/prometheus/blackbox-exporter/versions.json -------------------------------------------------------------------------------- /prometheus/blackbox-exporter/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/prometheus/blackbox-exporter/versions.sh -------------------------------------------------------------------------------- /prometheus/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/prometheus/docker-entrypoint.sh -------------------------------------------------------------------------------- /prometheus/gsl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/prometheus/gsl.sh -------------------------------------------------------------------------------- /prometheus/hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/prometheus/hooks.sh -------------------------------------------------------------------------------- /prometheus/node-exporter/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/prometheus/node-exporter/Dockerfile -------------------------------------------------------------------------------- /prometheus/node-exporter/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/prometheus/node-exporter/Dockerfile.template -------------------------------------------------------------------------------- /prometheus/node-exporter/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/prometheus/node-exporter/versions.json -------------------------------------------------------------------------------- /prometheus/node-exporter/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/prometheus/node-exporter/versions.sh -------------------------------------------------------------------------------- /prometheus/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/prometheus/versions.json -------------------------------------------------------------------------------- /prometheus/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/prometheus/versions.sh -------------------------------------------------------------------------------- /rtl-433/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/rtl-433/Dockerfile -------------------------------------------------------------------------------- /rtl-433/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/rtl-433/Dockerfile.template -------------------------------------------------------------------------------- /rtl-433/gsl.sh: -------------------------------------------------------------------------------- 1 | ../.gsl-common/gsl-version-env.sh -------------------------------------------------------------------------------- /rtl-433/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/rtl-433/versions.json -------------------------------------------------------------------------------- /rtl-433/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/rtl-433/versions.sh -------------------------------------------------------------------------------- /rtorrent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/rtorrent/Dockerfile -------------------------------------------------------------------------------- /rtorrent/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/rtorrent/Dockerfile.template -------------------------------------------------------------------------------- /rtorrent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/rtorrent/README.md -------------------------------------------------------------------------------- /rtorrent/gsl.sh: -------------------------------------------------------------------------------- 1 | ../.gsl-common/gsl-version-env.sh -------------------------------------------------------------------------------- /rtorrent/rtorrent.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/rtorrent/rtorrent.rc -------------------------------------------------------------------------------- /rtorrent/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/rtorrent/run.sh -------------------------------------------------------------------------------- /rtorrent/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/rtorrent/versions.json -------------------------------------------------------------------------------- /rtorrent/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/rtorrent/versions.sh -------------------------------------------------------------------------------- /scratch/multiarch.jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/scratch/multiarch.jq -------------------------------------------------------------------------------- /scratch/multiarch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/scratch/multiarch.sh -------------------------------------------------------------------------------- /signal-desktop/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/signal-desktop/Dockerfile -------------------------------------------------------------------------------- /signal-desktop/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/signal-desktop/Dockerfile.template -------------------------------------------------------------------------------- /signal-desktop/gsl.sh: -------------------------------------------------------------------------------- 1 | ../.gsl-common/gsl-version-env.sh -------------------------------------------------------------------------------- /signal-desktop/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/signal-desktop/versions.json -------------------------------------------------------------------------------- /signal-desktop/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/signal-desktop/versions.sh -------------------------------------------------------------------------------- /slack/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/slack/Dockerfile -------------------------------------------------------------------------------- /slack/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/slack/Dockerfile.template -------------------------------------------------------------------------------- /slack/browser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/slack/browser.sh -------------------------------------------------------------------------------- /slack/gsl.sh: -------------------------------------------------------------------------------- 1 | ../.gsl-common/gsl-version-env.sh -------------------------------------------------------------------------------- /slack/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/slack/slack.svg -------------------------------------------------------------------------------- /slack/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/slack/versions.json -------------------------------------------------------------------------------- /slack/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/slack/versions.sh -------------------------------------------------------------------------------- /sleeping-beauty/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/sleeping-beauty/Dockerfile -------------------------------------------------------------------------------- /sleeping-beauty/Dockerfile.nolibc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/sleeping-beauty/Dockerfile.nolibc -------------------------------------------------------------------------------- /sleeping-beauty/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/sleeping-beauty/Makefile -------------------------------------------------------------------------------- /sleeping-beauty/gsl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/sleeping-beauty/gsl.sh -------------------------------------------------------------------------------- /sleeping-beauty/sleeping-beauty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/sleeping-beauty/sleeping-beauty -------------------------------------------------------------------------------- /sleeping-beauty/sleeping-beauty.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/sleeping-beauty/sleeping-beauty.asm -------------------------------------------------------------------------------- /sleeping-beauty/sleeping-beauty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/sleeping-beauty/sleeping-beauty.c -------------------------------------------------------------------------------- /speedtest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/speedtest/Dockerfile -------------------------------------------------------------------------------- /speedtest/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/speedtest/Dockerfile.template -------------------------------------------------------------------------------- /speedtest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/speedtest/README.md -------------------------------------------------------------------------------- /speedtest/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/speedtest/docker-entrypoint.sh -------------------------------------------------------------------------------- /speedtest/gsl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/speedtest/gsl.sh -------------------------------------------------------------------------------- /speedtest/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/speedtest/versions.json -------------------------------------------------------------------------------- /speedtest/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/speedtest/versions.sh -------------------------------------------------------------------------------- /steam/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/steam/Dockerfile -------------------------------------------------------------------------------- /steam/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/steam/Dockerfile.template -------------------------------------------------------------------------------- /steam/gsl.sh: -------------------------------------------------------------------------------- 1 | ../.gsl-common/gsl-version-env.sh -------------------------------------------------------------------------------- /steam/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/steam/versions.json -------------------------------------------------------------------------------- /steam/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/steam/versions.sh -------------------------------------------------------------------------------- /tailscale/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/tailscale/Dockerfile -------------------------------------------------------------------------------- /tailscale/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/tailscale/Dockerfile.template -------------------------------------------------------------------------------- /tailscale/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/tailscale/versions.json -------------------------------------------------------------------------------- /tailscale/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/tailscale/versions.sh -------------------------------------------------------------------------------- /tinygo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/tinygo/Dockerfile -------------------------------------------------------------------------------- /tinygo/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/tinygo/Dockerfile.template -------------------------------------------------------------------------------- /tinygo/gsl.sh: -------------------------------------------------------------------------------- 1 | ../.gsl-common/gsl-version-env.sh -------------------------------------------------------------------------------- /tinygo/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/tinygo/versions.json -------------------------------------------------------------------------------- /tinygo/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/tinygo/versions.sh -------------------------------------------------------------------------------- /toybox/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/toybox/Dockerfile -------------------------------------------------------------------------------- /toybox/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/toybox/Dockerfile.template -------------------------------------------------------------------------------- /toybox/gsl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/toybox/gsl.sh -------------------------------------------------------------------------------- /toybox/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/toybox/versions.json -------------------------------------------------------------------------------- /toybox/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/toybox/versions.sh -------------------------------------------------------------------------------- /true/.gitignore: -------------------------------------------------------------------------------- 1 | true-*.meta 2 | -------------------------------------------------------------------------------- /true/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/true/Dockerfile -------------------------------------------------------------------------------- /true/Dockerfile.all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/true/Dockerfile.all -------------------------------------------------------------------------------- /true/Dockerfile.yolo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/true/Dockerfile.yolo -------------------------------------------------------------------------------- /true/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/true/Makefile -------------------------------------------------------------------------------- /true/build-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/true/build-all.sh -------------------------------------------------------------------------------- /true/gsl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/true/gsl.sh -------------------------------------------------------------------------------- /true/oci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/true/oci.sh -------------------------------------------------------------------------------- /true/oci/blobs/sha256/1c51fc286aa95d9413226599576bafa38490b1e292375c90de095855b64caea6: -------------------------------------------------------------------------------- 1 | ../../rootfs.tar.gz -------------------------------------------------------------------------------- /true/oci/blobs/sha256/25be82253336f0b8c4347bc4ecbbcdc85d0e0f118ccf8dc2e119c0a47a0a486e: -------------------------------------------------------------------------------- 1 | ../../config.json -------------------------------------------------------------------------------- /true/oci/blobs/sha256/9ef42f1d602fb423fad935aac1caa0cfdbce1ad7edce64d080a4eb7b13f7cd9d: -------------------------------------------------------------------------------- 1 | ../../image-manifest.json -------------------------------------------------------------------------------- /true/oci/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/true/oci/config.json -------------------------------------------------------------------------------- /true/oci/image-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/true/oci/image-manifest.json -------------------------------------------------------------------------------- /true/oci/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/true/oci/index.json -------------------------------------------------------------------------------- /true/oci/oci-layout: -------------------------------------------------------------------------------- 1 | {"imageLayoutVersion":"1.0.0"} 2 | -------------------------------------------------------------------------------- /true/oci/rootfs.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/true/oci/rootfs.tar -------------------------------------------------------------------------------- /true/oci/rootfs.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/true/oci/rootfs.tar.gz -------------------------------------------------------------------------------- /true/true-asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/true/true-asm -------------------------------------------------------------------------------- /true/true-yolo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/true/true-yolo -------------------------------------------------------------------------------- /true/true-yolo.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/true/true-yolo.asm -------------------------------------------------------------------------------- /true/true.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/true/true.asm -------------------------------------------------------------------------------- /true/true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/true/true.c -------------------------------------------------------------------------------- /true/true.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/true/true.go -------------------------------------------------------------------------------- /true/true.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | } 3 | -------------------------------------------------------------------------------- /true/yoloci/blobs/sha256/9640fb911d45e3070a35d8eb018380e2efa879acad3b0c74d0c91ed53369177f: -------------------------------------------------------------------------------- 1 | ../../rootfs.tar.gz -------------------------------------------------------------------------------- /true/yoloci/blobs/sha256/d80756958759f24eb147154bb1ffeabaf2aeb88b659c64dcaa906c97b4da0cbc: -------------------------------------------------------------------------------- 1 | ../../image-manifest.json -------------------------------------------------------------------------------- /true/yoloci/blobs/sha256/e759af11fe110511ea6b3f02512de70861e9fccd669a14a33a2bb6a04b70aadf: -------------------------------------------------------------------------------- 1 | ../../config.json -------------------------------------------------------------------------------- /true/yoloci/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/true/yoloci/config.json -------------------------------------------------------------------------------- /true/yoloci/image-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/true/yoloci/image-manifest.json -------------------------------------------------------------------------------- /true/yoloci/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/true/yoloci/index.json -------------------------------------------------------------------------------- /true/yoloci/oci-layout: -------------------------------------------------------------------------------- 1 | {"imageLayoutVersion":"1.0.0"} 2 | -------------------------------------------------------------------------------- /true/yoloci/rootfs.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/true/yoloci/rootfs.tar -------------------------------------------------------------------------------- /true/yoloci/rootfs.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/true/yoloci/rootfs.tar.gz -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/update.sh -------------------------------------------------------------------------------- /versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/versions.sh -------------------------------------------------------------------------------- /vultr-cli/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/vultr-cli/Dockerfile -------------------------------------------------------------------------------- /vultr-cli/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/vultr-cli/Dockerfile.template -------------------------------------------------------------------------------- /vultr-cli/gsl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/vultr-cli/gsl.sh -------------------------------------------------------------------------------- /vultr-cli/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/vultr-cli/versions.json -------------------------------------------------------------------------------- /vultr-cli/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/vultr-cli/versions.sh -------------------------------------------------------------------------------- /weechat/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/weechat/Dockerfile -------------------------------------------------------------------------------- /weechat/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/weechat/Dockerfile.template -------------------------------------------------------------------------------- /weechat/gsl.sh: -------------------------------------------------------------------------------- 1 | ../.gsl-common/gsl-version-env.sh -------------------------------------------------------------------------------- /weechat/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/weechat/versions.json -------------------------------------------------------------------------------- /weechat/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/weechat/versions.sh -------------------------------------------------------------------------------- /wine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/wine/Dockerfile -------------------------------------------------------------------------------- /wine/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/wine/Dockerfile.template -------------------------------------------------------------------------------- /wine/gsl.sh: -------------------------------------------------------------------------------- 1 | ../.gsl-common/gsl-version-env.sh -------------------------------------------------------------------------------- /wine/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/wine/versions.json -------------------------------------------------------------------------------- /wine/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/wine/versions.sh -------------------------------------------------------------------------------- /ymlfmt/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/ymlfmt/Dockerfile -------------------------------------------------------------------------------- /ymlfmt/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/ymlfmt/Dockerfile.template -------------------------------------------------------------------------------- /ymlfmt/gsl.sh: -------------------------------------------------------------------------------- 1 | ../.gsl-common/gsl-latest.sh -------------------------------------------------------------------------------- /ymlfmt/test-in.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/ymlfmt/test-in.yml -------------------------------------------------------------------------------- /ymlfmt/test-out.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/ymlfmt/test-out.yml -------------------------------------------------------------------------------- /ymlfmt/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/ymlfmt/versions.json -------------------------------------------------------------------------------- /ymlfmt/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/ymlfmt/versions.sh -------------------------------------------------------------------------------- /ymlfmt/ymlfmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/ymlfmt/ymlfmt -------------------------------------------------------------------------------- /zoom/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/zoom/Dockerfile -------------------------------------------------------------------------------- /zoom/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/zoom/Dockerfile.template -------------------------------------------------------------------------------- /zoom/browser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/zoom/browser.sh -------------------------------------------------------------------------------- /zoom/gsl.sh: -------------------------------------------------------------------------------- 1 | ../.gsl-common/gsl-version-env.sh -------------------------------------------------------------------------------- /zoom/versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "6.6.11.6052" 3 | } 4 | -------------------------------------------------------------------------------- /zoom/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/zoom/versions.sh -------------------------------------------------------------------------------- /zoom/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/dockerfiles/HEAD/zoom/zoom.png --------------------------------------------------------------------------------