├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── new-arch.yml │ ├── new-image.yml │ └── new-package.yml └── workflows │ ├── almalinux.yaml │ ├── alpine.yaml │ ├── amazonlinux.yaml │ ├── build-push-images.yaml │ ├── centos.yaml │ ├── debian.yaml │ ├── opensuse.yaml │ ├── rockylinux.yaml │ └── wolfi.yaml ├── COPYING ├── README.md ├── almalinux ├── 8 │ ├── Containerfile │ ├── extra-packages │ └── missing-docs ├── 9 │ ├── Containerfile │ ├── extra-packages │ └── missing-docs └── 10 │ ├── Containerfile │ ├── extra-packages │ └── missing-docs ├── alpine ├── 3.20 │ ├── Containerfile │ └── extra-packages ├── 3.21 │ ├── Containerfile │ └── extra-packages ├── 3.22 │ ├── Containerfile │ └── extra-packages └── edge │ ├── Containerfile │ └── extra-packages ├── amazonlinux ├── 2 │ ├── Containerfile │ ├── extra-packages │ ├── missing-docs │ └── packages └── 2023 │ ├── Containerfile │ ├── extra-packages │ └── missing-docs ├── centos ├── stream10 │ ├── Containerfile │ ├── extra-packages │ └── missing-docs ├── stream8 │ ├── Containerfile │ ├── extra-packages │ └── missing-docs └── stream9 │ ├── Containerfile │ ├── extra-packages │ └── missing-docs ├── debian ├── 10 │ ├── Containerfile │ └── extra-packages ├── 11 │ ├── Containerfile │ └── extra-packages ├── 12 │ ├── Containerfile │ └── extra-packages ├── 13 │ ├── Containerfile │ └── extra-packages ├── testing │ ├── Containerfile │ └── extra-packages └── unstable │ ├── Containerfile │ └── extra-packages ├── opensuse └── tumbleweed │ ├── Containerfile │ └── extra-packages ├── quay.io-toolbx-images.pub ├── rockylinux ├── 8 │ ├── Containerfile │ ├── extra-packages │ └── missing-docs └── 9 │ ├── Containerfile │ ├── extra-packages │ └── missing-docs └── wolfi └── latest ├── Containerfile └── extra-packages /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-arch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/.github/ISSUE_TEMPLATE/new-arch.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/.github/ISSUE_TEMPLATE/new-image.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/.github/ISSUE_TEMPLATE/new-package.yml -------------------------------------------------------------------------------- /.github/workflows/almalinux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/.github/workflows/almalinux.yaml -------------------------------------------------------------------------------- /.github/workflows/alpine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/.github/workflows/alpine.yaml -------------------------------------------------------------------------------- /.github/workflows/amazonlinux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/.github/workflows/amazonlinux.yaml -------------------------------------------------------------------------------- /.github/workflows/build-push-images.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/.github/workflows/build-push-images.yaml -------------------------------------------------------------------------------- /.github/workflows/centos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/.github/workflows/centos.yaml -------------------------------------------------------------------------------- /.github/workflows/debian.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/.github/workflows/debian.yaml -------------------------------------------------------------------------------- /.github/workflows/opensuse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/.github/workflows/opensuse.yaml -------------------------------------------------------------------------------- /.github/workflows/rockylinux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/.github/workflows/rockylinux.yaml -------------------------------------------------------------------------------- /.github/workflows/wolfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/.github/workflows/wolfi.yaml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/README.md -------------------------------------------------------------------------------- /almalinux/10/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/almalinux/10/Containerfile -------------------------------------------------------------------------------- /almalinux/10/extra-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/almalinux/10/extra-packages -------------------------------------------------------------------------------- /almalinux/10/missing-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/almalinux/10/missing-docs -------------------------------------------------------------------------------- /almalinux/8/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/almalinux/8/Containerfile -------------------------------------------------------------------------------- /almalinux/8/extra-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/almalinux/8/extra-packages -------------------------------------------------------------------------------- /almalinux/8/missing-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/almalinux/8/missing-docs -------------------------------------------------------------------------------- /almalinux/9/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/almalinux/9/Containerfile -------------------------------------------------------------------------------- /almalinux/9/extra-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/almalinux/9/extra-packages -------------------------------------------------------------------------------- /almalinux/9/missing-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/almalinux/9/missing-docs -------------------------------------------------------------------------------- /alpine/3.20/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/alpine/3.20/Containerfile -------------------------------------------------------------------------------- /alpine/3.20/extra-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/alpine/3.20/extra-packages -------------------------------------------------------------------------------- /alpine/3.21/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/alpine/3.21/Containerfile -------------------------------------------------------------------------------- /alpine/3.21/extra-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/alpine/3.21/extra-packages -------------------------------------------------------------------------------- /alpine/3.22/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/alpine/3.22/Containerfile -------------------------------------------------------------------------------- /alpine/3.22/extra-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/alpine/3.22/extra-packages -------------------------------------------------------------------------------- /alpine/edge/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/alpine/edge/Containerfile -------------------------------------------------------------------------------- /alpine/edge/extra-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/alpine/edge/extra-packages -------------------------------------------------------------------------------- /amazonlinux/2/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/amazonlinux/2/Containerfile -------------------------------------------------------------------------------- /amazonlinux/2/extra-packages: -------------------------------------------------------------------------------- 1 | epel 2 | vim 3 | python3.8 4 | -------------------------------------------------------------------------------- /amazonlinux/2/missing-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/amazonlinux/2/missing-docs -------------------------------------------------------------------------------- /amazonlinux/2/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/amazonlinux/2/packages -------------------------------------------------------------------------------- /amazonlinux/2023/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/amazonlinux/2023/Containerfile -------------------------------------------------------------------------------- /amazonlinux/2023/extra-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/amazonlinux/2023/extra-packages -------------------------------------------------------------------------------- /amazonlinux/2023/missing-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/amazonlinux/2023/missing-docs -------------------------------------------------------------------------------- /centos/stream10/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/centos/stream10/Containerfile -------------------------------------------------------------------------------- /centos/stream10/extra-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/centos/stream10/extra-packages -------------------------------------------------------------------------------- /centos/stream10/missing-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/centos/stream10/missing-docs -------------------------------------------------------------------------------- /centos/stream8/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/centos/stream8/Containerfile -------------------------------------------------------------------------------- /centos/stream8/extra-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/centos/stream8/extra-packages -------------------------------------------------------------------------------- /centos/stream8/missing-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/centos/stream8/missing-docs -------------------------------------------------------------------------------- /centos/stream9/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/centos/stream9/Containerfile -------------------------------------------------------------------------------- /centos/stream9/extra-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/centos/stream9/extra-packages -------------------------------------------------------------------------------- /centos/stream9/missing-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/centos/stream9/missing-docs -------------------------------------------------------------------------------- /debian/10/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/debian/10/Containerfile -------------------------------------------------------------------------------- /debian/10/extra-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/debian/10/extra-packages -------------------------------------------------------------------------------- /debian/11/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/debian/11/Containerfile -------------------------------------------------------------------------------- /debian/11/extra-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/debian/11/extra-packages -------------------------------------------------------------------------------- /debian/12/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/debian/12/Containerfile -------------------------------------------------------------------------------- /debian/12/extra-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/debian/12/extra-packages -------------------------------------------------------------------------------- /debian/13/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/debian/13/Containerfile -------------------------------------------------------------------------------- /debian/13/extra-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/debian/13/extra-packages -------------------------------------------------------------------------------- /debian/testing/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/debian/testing/Containerfile -------------------------------------------------------------------------------- /debian/testing/extra-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/debian/testing/extra-packages -------------------------------------------------------------------------------- /debian/unstable/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/debian/unstable/Containerfile -------------------------------------------------------------------------------- /debian/unstable/extra-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/debian/unstable/extra-packages -------------------------------------------------------------------------------- /opensuse/tumbleweed/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/opensuse/tumbleweed/Containerfile -------------------------------------------------------------------------------- /opensuse/tumbleweed/extra-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/opensuse/tumbleweed/extra-packages -------------------------------------------------------------------------------- /quay.io-toolbx-images.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/quay.io-toolbx-images.pub -------------------------------------------------------------------------------- /rockylinux/8/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/rockylinux/8/Containerfile -------------------------------------------------------------------------------- /rockylinux/8/extra-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/rockylinux/8/extra-packages -------------------------------------------------------------------------------- /rockylinux/8/missing-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/rockylinux/8/missing-docs -------------------------------------------------------------------------------- /rockylinux/9/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/rockylinux/9/Containerfile -------------------------------------------------------------------------------- /rockylinux/9/extra-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/rockylinux/9/extra-packages -------------------------------------------------------------------------------- /rockylinux/9/missing-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/rockylinux/9/missing-docs -------------------------------------------------------------------------------- /wolfi/latest/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/wolfi/latest/Containerfile -------------------------------------------------------------------------------- /wolfi/latest/extra-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolbx-images/images/HEAD/wolfi/latest/extra-packages --------------------------------------------------------------------------------