├── README.md └── docker ├── centos6 ├── Dockerfile └── dockerd-entrypoint.sh ├── centos7 ├── Dockerfile └── dockerd-entrypoint.sh ├── rockylinux9 ├── Dockerfile ├── dockerd-entrypoint.sh └── repro.sh └── windows ├── build ├── Dockerfile └── build.ps1 └── devel ├── Dockerfile └── build.ps1 /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoundationDB/fdb-build-support/HEAD/README.md -------------------------------------------------------------------------------- /docker/centos6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoundationDB/fdb-build-support/HEAD/docker/centos6/Dockerfile -------------------------------------------------------------------------------- /docker/centos6/dockerd-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoundationDB/fdb-build-support/HEAD/docker/centos6/dockerd-entrypoint.sh -------------------------------------------------------------------------------- /docker/centos7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoundationDB/fdb-build-support/HEAD/docker/centos7/Dockerfile -------------------------------------------------------------------------------- /docker/centos7/dockerd-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoundationDB/fdb-build-support/HEAD/docker/centos7/dockerd-entrypoint.sh -------------------------------------------------------------------------------- /docker/rockylinux9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoundationDB/fdb-build-support/HEAD/docker/rockylinux9/Dockerfile -------------------------------------------------------------------------------- /docker/rockylinux9/dockerd-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoundationDB/fdb-build-support/HEAD/docker/rockylinux9/dockerd-entrypoint.sh -------------------------------------------------------------------------------- /docker/rockylinux9/repro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoundationDB/fdb-build-support/HEAD/docker/rockylinux9/repro.sh -------------------------------------------------------------------------------- /docker/windows/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoundationDB/fdb-build-support/HEAD/docker/windows/build/Dockerfile -------------------------------------------------------------------------------- /docker/windows/build/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoundationDB/fdb-build-support/HEAD/docker/windows/build/build.ps1 -------------------------------------------------------------------------------- /docker/windows/devel/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoundationDB/fdb-build-support/HEAD/docker/windows/devel/Dockerfile -------------------------------------------------------------------------------- /docker/windows/devel/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoundationDB/fdb-build-support/HEAD/docker/windows/devel/build.ps1 --------------------------------------------------------------------------------