├── LICENSE ├── README.md ├── components ├── generate-stackbrew-library.sh ├── jessie └── include ├── latest ├── mirror ├── mkimage.sh ├── oldstable └── include ├── repo ├── sid ├── include └── merged-usr ├── slim-excludes ├── stable └── include ├── stretch ├── include └── merged-usr ├── testing ├── include └── merged-usr ├── unstable ├── include └── merged-usr ├── update.sh └── wheezy └── include /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-brew-debian/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-brew-debian/HEAD/README.md -------------------------------------------------------------------------------- /components: -------------------------------------------------------------------------------- 1 | main 2 | -------------------------------------------------------------------------------- /generate-stackbrew-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-brew-debian/HEAD/generate-stackbrew-library.sh -------------------------------------------------------------------------------- /jessie/include: -------------------------------------------------------------------------------- 1 | inetutils-ping,iproute2 2 | -------------------------------------------------------------------------------- /latest: -------------------------------------------------------------------------------- 1 | jessie 2 | -------------------------------------------------------------------------------- /mirror: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-brew-debian/HEAD/mirror -------------------------------------------------------------------------------- /mkimage.sh: -------------------------------------------------------------------------------- 1 | /home/tianon/docker/docker/contrib/mkimage.sh -------------------------------------------------------------------------------- /oldstable/include: -------------------------------------------------------------------------------- 1 | inetutils-ping,iproute 2 | -------------------------------------------------------------------------------- /repo: -------------------------------------------------------------------------------- 1 | debian 2 | -------------------------------------------------------------------------------- /sid/include: -------------------------------------------------------------------------------- 1 | inetutils-ping,iproute2 2 | -------------------------------------------------------------------------------- /sid/merged-usr: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /slim-excludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-brew-debian/HEAD/slim-excludes -------------------------------------------------------------------------------- /stable/include: -------------------------------------------------------------------------------- 1 | inetutils-ping,iproute 2 | -------------------------------------------------------------------------------- /stretch/include: -------------------------------------------------------------------------------- 1 | inetutils-ping,iproute2 2 | -------------------------------------------------------------------------------- /stretch/merged-usr: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /testing/include: -------------------------------------------------------------------------------- 1 | inetutils-ping,iproute2 2 | -------------------------------------------------------------------------------- /testing/merged-usr: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /unstable/include: -------------------------------------------------------------------------------- 1 | inetutils-ping,iproute2 2 | -------------------------------------------------------------------------------- /unstable/merged-usr: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianon/docker-brew-debian/HEAD/update.sh -------------------------------------------------------------------------------- /wheezy/include: -------------------------------------------------------------------------------- 1 | inetutils-ping,iproute 2 | --------------------------------------------------------------------------------