├── .dockerignore ├── Dockerfile.alpine ├── Dockerfile.alpine-rpm ├── Dockerfile.ubuntu ├── LICENSE ├── README.md ├── scripts └── build_images.sh └── wrapper.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | scripts/* 2 | -------------------------------------------------------------------------------- /Dockerfile.alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesosphere-backup/dcos-jenkins-dind-agent/HEAD/Dockerfile.alpine -------------------------------------------------------------------------------- /Dockerfile.alpine-rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesosphere-backup/dcos-jenkins-dind-agent/HEAD/Dockerfile.alpine-rpm -------------------------------------------------------------------------------- /Dockerfile.ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesosphere-backup/dcos-jenkins-dind-agent/HEAD/Dockerfile.ubuntu -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesosphere-backup/dcos-jenkins-dind-agent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesosphere-backup/dcos-jenkins-dind-agent/HEAD/README.md -------------------------------------------------------------------------------- /scripts/build_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesosphere-backup/dcos-jenkins-dind-agent/HEAD/scripts/build_images.sh -------------------------------------------------------------------------------- /wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesosphere-backup/dcos-jenkins-dind-agent/HEAD/wrapper.sh --------------------------------------------------------------------------------