├── .gitignore ├── .gitmodules ├── README.md ├── cleanup.sh ├── cloudbreak └── cbd │ └── DockerRun.sh ├── hdf-repo ├── 2.0.1 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile └── 3.1.1 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── hdf ├── 1.0.0.0 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── 1.1.0.0 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── 1.1.1.0 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── 1.1.2.0 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── 1.1.2.1 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── 1.2.0.0 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── 1.2.0.1 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── 2.0.0.0 │ ├── DockerBuild.sh │ ├── agent │ │ ├── DockerBuild.sh │ │ └── Dockerfile │ ├── base │ │ ├── DockerBuild.sh │ │ └── Dockerfile │ └── server │ │ ├── DockerBuild.sh │ │ ├── Dockerfile │ │ └── scripts │ │ ├── bashrc │ │ ├── dev-setup.sh │ │ ├── initialize.sh │ │ ├── internal-hostname.sh │ │ ├── portbind.py │ │ ├── public-hostname.sh │ │ ├── start-server.sh │ │ ├── vimrc │ │ └── wait-for-host-number.sh ├── 2.0.0.1 │ ├── DockerBuild.sh │ ├── agent │ │ ├── DockerBuild.sh │ │ └── Dockerfile │ ├── base │ │ ├── DockerBuild.sh │ │ └── Dockerfile │ └── server │ │ ├── DockerBuild.sh │ │ ├── Dockerfile │ │ └── scripts │ │ ├── bashrc │ │ ├── dev-setup.sh │ │ ├── initialize.sh │ │ ├── internal-hostname.sh │ │ ├── portbind.py │ │ ├── public-hostname.sh │ │ ├── start-server.sh │ │ ├── vimrc │ │ └── wait-for-host-number.sh ├── 3.0.1.1 │ ├── DockerBuild.sh │ ├── agent │ │ ├── DockerBuild.sh │ │ ├── Dockerfile │ │ └── scripts │ │ │ ├── bashrc │ │ │ ├── dev-setup.sh │ │ │ ├── internal-hostname.sh │ │ │ ├── portbind.py │ │ │ ├── public-hostname.sh │ │ │ ├── start-agent.sh │ │ │ ├── vimrc │ │ │ └── wait-for-host-number.sh │ ├── base │ │ ├── DockerBuild.sh │ │ └── Dockerfile │ └── server │ │ ├── DockerBuild.sh │ │ ├── Dockerfile │ │ └── scripts │ │ ├── bashrc │ │ ├── dev-setup.sh │ │ ├── initialize.sh │ │ ├── internal-hostname.sh │ │ ├── portbind.py │ │ ├── public-hostname.sh │ │ ├── start-server.sh │ │ ├── vimrc │ │ └── wait-for-host-number.sh └── 3.1.1 │ ├── DockerBuild.sh │ ├── agent │ ├── DockerBuild.sh │ ├── Dockerfile │ └── scripts │ │ ├── bashrc │ │ ├── dev-setup.sh │ │ ├── internal-hostname.sh │ │ ├── portbind.py │ │ ├── public-hostname.sh │ │ ├── start-agent.sh │ │ ├── vimrc │ │ └── wait-for-host-number.sh │ ├── base │ ├── DockerBuild.sh │ └── Dockerfile │ └── server │ ├── DockerBuild.sh │ ├── Dockerfile │ └── scripts │ ├── bashrc │ ├── dev-setup.sh │ ├── initialize.sh │ ├── internal-hostname.sh │ ├── portbind.py │ ├── public-hostname.sh │ ├── start-server.sh │ ├── vimrc │ └── wait-for-host-number.sh ├── hdp-repo ├── 2.5.0 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── 2.6.2 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile └── 2.6.4 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── hdp ├── 2.3.2 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ ├── Dockerfile │ ├── LICENSE │ ├── repos │ │ ├── ambari.repo │ │ ├── apache-maven.repo │ │ └── hdp232.repo │ └── scripts │ │ ├── bashrc │ │ ├── dev-setup.sh │ │ ├── initialize.sh │ │ ├── internal-hostname.sh │ │ ├── portbind.py │ │ ├── public-hostname.sh │ │ ├── start-server.sh │ │ ├── vimrc │ │ └── wait-for-host-number.sh ├── 2.3.4 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ ├── Dockerfile │ ├── LICENSE │ ├── repos │ │ ├── ambari.repo │ │ ├── apache-maven.repo │ │ └── hdp234.repo │ └── scripts │ │ ├── bashrc │ │ ├── dev-setup.sh │ │ ├── initialize.sh │ │ ├── internal-hostname.sh │ │ ├── portbind.py │ │ ├── public-hostname.sh │ │ ├── start-server.sh │ │ ├── vimrc │ │ └── wait-for-host-number.sh ├── 2.4.0 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ ├── Dockerfile │ ├── LICENSE │ ├── repos │ │ ├── ambari.repo │ │ ├── apache-maven.repo │ │ └── hdp240.repo │ └── scripts │ │ ├── bashrc │ │ ├── dev-setup.sh │ │ ├── initialize.sh │ │ ├── internal-hostname.sh │ │ ├── portbind.py │ │ ├── public-hostname.sh │ │ ├── start-server.sh │ │ ├── vimrc │ │ └── wait-for-host-number.sh ├── 2.4.2 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ ├── Dockerfile │ ├── LICENSE │ ├── repos │ │ ├── ambari.repo │ │ ├── apache-maven.repo │ │ └── hdp242.repo │ └── scripts │ │ ├── bashrc │ │ ├── dev-setup.sh │ │ ├── initialize.sh │ │ ├── internal-hostname.sh │ │ ├── portbind.py │ │ ├── public-hostname.sh │ │ ├── start-server.sh │ │ ├── vimrc │ │ └── wait-for-host-number.sh ├── 2.5.0 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ ├── Dockerfile │ ├── LICENSE │ ├── containers │ │ ├── ambari-server │ │ │ ├── Dockerfile │ │ │ └── scripts │ │ │ │ └── start.sh │ │ ├── node │ │ │ ├── Dockerfile │ │ │ └── scripts │ │ │ │ └── start.sh │ │ └── postgres │ │ │ ├── Dockerfile │ │ │ ├── pg_hba.conf │ │ │ └── scripts │ │ │ ├── 100-ambari.sh │ │ │ ├── 100-hive.sql │ │ │ └── 100-ranger.sql │ ├── docker-compose.yml │ ├── repos │ │ ├── ambari.repo │ │ ├── apache-maven.repo │ │ └── hdp.repo │ └── scripts │ │ ├── bashrc │ │ ├── dev-setup.sh │ │ ├── initialize.sh │ │ ├── internal-hostname.sh │ │ ├── portbind.py │ │ ├── public-hostname.sh │ │ ├── start-server.sh │ │ ├── vimrc │ │ └── wait-for-host-number.sh ├── 2.5.3 │ ├── LICENSE │ ├── containers │ │ ├── ambari-server │ │ │ ├── Dockerfile │ │ │ └── scripts │ │ │ │ └── start.sh │ │ ├── node │ │ │ ├── Dockerfile │ │ │ └── scripts │ │ │ │ └── start.sh │ │ └── postgres │ │ │ ├── Dockerfile │ │ │ ├── pg_hba.conf │ │ │ └── scripts │ │ │ ├── 100-ambari.sh │ │ │ ├── 100-hive.sql │ │ │ └── 100-ranger.sql │ └── docker-compose.yml └── 2.6.5 │ ├── containers │ ├── ambari-server │ │ ├── Dockerfile │ │ └── scripts │ │ │ └── start.sh │ ├── node │ │ ├── Dockerfile │ │ └── scripts │ │ │ └── start.sh │ └── postgres │ │ ├── Dockerfile │ │ ├── pg_hba.conf │ │ └── scripts │ │ ├── 100-ambari.sh │ │ ├── 100-hive.sql │ │ └── 100-ranger.sql │ └── docker-compose.yml ├── install_macosx.sh ├── minifi └── 0.0.1 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── nifi ├── 0.2.1 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── 0.3.0 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── 0.4.0 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── 0.4.1 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── 0.5.0 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── 0.5.1 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── 0.6.0 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── 0.6.1 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ ├── Dockerfile │ └── apache-maven-3.3.9-bin.tar.gz ├── 0.7.0 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── 1.0.0-beta │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── 1.0.0 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── 1.1.0 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── 1.1.1 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── 1.1.2 │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── FaceDetectionDemo │ ├── DockerBuild.sh │ ├── DockerRun.sh │ ├── Dockerfile │ ├── InputAssets │ │ └── faces │ │ │ ├── Jeremy_EyesClosed.jpg │ │ │ └── Jeremy_EyesOpen.jpg │ └── flow.xml.gz ├── OCRChildrensBook │ ├── DockerBuild.sh │ ├── DockerRun.sh │ ├── Dockerfile │ ├── InputAssets │ │ ├── CatInHatThingTwoAndOne.jpg │ │ ├── CatInTheHat_1.jpeg │ │ ├── CatInTheHat_2.jpg │ │ ├── CatInTheHat_3.jpg │ │ ├── CatInTheHat_4.gif │ │ ├── NiFiReadBooks.jpg │ │ ├── OCR_EndResult.png │ │ └── orch.jpg │ └── flow.xml.gz ├── hive │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile └── snapshot │ ├── DockerBuild.sh │ ├── DockerRun.sh │ ├── Dockerfile │ └── apache-maven-3.3.9-bin.tar.gz ├── spark ├── 1.6.2-standalone │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── 1.6.3-standalone │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── 2.0.0-standalone │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── 2.0.1-standalone │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── 2.0.2-standalone │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile └── 2.1.0-standalone │ ├── DockerBuild.sh │ ├── DockerRun.sh │ └── Dockerfile ├── streamline └── 0.0.1 │ └── Dockerfile └── uninstall_macosx.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/README.md -------------------------------------------------------------------------------- /cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/cleanup.sh -------------------------------------------------------------------------------- /cloudbreak/cbd/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/cloudbreak/cbd/DockerRun.sh -------------------------------------------------------------------------------- /hdf-repo/2.0.1/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf-repo/2.0.1/DockerBuild.sh -------------------------------------------------------------------------------- /hdf-repo/2.0.1/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf-repo/2.0.1/DockerRun.sh -------------------------------------------------------------------------------- /hdf-repo/2.0.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf-repo/2.0.1/Dockerfile -------------------------------------------------------------------------------- /hdf-repo/3.1.1/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf-repo/3.1.1/DockerBuild.sh -------------------------------------------------------------------------------- /hdf-repo/3.1.1/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf-repo/3.1.1/DockerRun.sh -------------------------------------------------------------------------------- /hdf-repo/3.1.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf-repo/3.1.1/Dockerfile -------------------------------------------------------------------------------- /hdf/1.0.0.0/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/1.0.0.0/DockerBuild.sh -------------------------------------------------------------------------------- /hdf/1.0.0.0/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/1.0.0.0/DockerRun.sh -------------------------------------------------------------------------------- /hdf/1.0.0.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/1.0.0.0/Dockerfile -------------------------------------------------------------------------------- /hdf/1.1.0.0/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/1.1.0.0/DockerBuild.sh -------------------------------------------------------------------------------- /hdf/1.1.0.0/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/1.1.0.0/DockerRun.sh -------------------------------------------------------------------------------- /hdf/1.1.0.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/1.1.0.0/Dockerfile -------------------------------------------------------------------------------- /hdf/1.1.1.0/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/1.1.1.0/DockerBuild.sh -------------------------------------------------------------------------------- /hdf/1.1.1.0/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/1.1.1.0/DockerRun.sh -------------------------------------------------------------------------------- /hdf/1.1.1.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/1.1.1.0/Dockerfile -------------------------------------------------------------------------------- /hdf/1.1.2.0/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/1.1.2.0/DockerBuild.sh -------------------------------------------------------------------------------- /hdf/1.1.2.0/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/1.1.2.0/DockerRun.sh -------------------------------------------------------------------------------- /hdf/1.1.2.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/1.1.2.0/Dockerfile -------------------------------------------------------------------------------- /hdf/1.1.2.1/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/1.1.2.1/DockerBuild.sh -------------------------------------------------------------------------------- /hdf/1.1.2.1/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/1.1.2.1/DockerRun.sh -------------------------------------------------------------------------------- /hdf/1.1.2.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/1.1.2.1/Dockerfile -------------------------------------------------------------------------------- /hdf/1.2.0.0/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/1.2.0.0/DockerBuild.sh -------------------------------------------------------------------------------- /hdf/1.2.0.0/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/1.2.0.0/DockerRun.sh -------------------------------------------------------------------------------- /hdf/1.2.0.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/1.2.0.0/Dockerfile -------------------------------------------------------------------------------- /hdf/1.2.0.1/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/1.2.0.1/DockerBuild.sh -------------------------------------------------------------------------------- /hdf/1.2.0.1/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/1.2.0.1/DockerRun.sh -------------------------------------------------------------------------------- /hdf/1.2.0.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/1.2.0.1/Dockerfile -------------------------------------------------------------------------------- /hdf/2.0.0.0/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.0/DockerBuild.sh -------------------------------------------------------------------------------- /hdf/2.0.0.0/agent/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.0/agent/DockerBuild.sh -------------------------------------------------------------------------------- /hdf/2.0.0.0/agent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.0/agent/Dockerfile -------------------------------------------------------------------------------- /hdf/2.0.0.0/base/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.0/base/DockerBuild.sh -------------------------------------------------------------------------------- /hdf/2.0.0.0/base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.0/base/Dockerfile -------------------------------------------------------------------------------- /hdf/2.0.0.0/server/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.0/server/DockerBuild.sh -------------------------------------------------------------------------------- /hdf/2.0.0.0/server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.0/server/Dockerfile -------------------------------------------------------------------------------- /hdf/2.0.0.0/server/scripts/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.0/server/scripts/bashrc -------------------------------------------------------------------------------- /hdf/2.0.0.0/server/scripts/dev-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.0/server/scripts/dev-setup.sh -------------------------------------------------------------------------------- /hdf/2.0.0.0/server/scripts/initialize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.0/server/scripts/initialize.sh -------------------------------------------------------------------------------- /hdf/2.0.0.0/server/scripts/internal-hostname.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo $(hostname -f) 4 | -------------------------------------------------------------------------------- /hdf/2.0.0.0/server/scripts/portbind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.0/server/scripts/portbind.py -------------------------------------------------------------------------------- /hdf/2.0.0.0/server/scripts/public-hostname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.0/server/scripts/public-hostname.sh -------------------------------------------------------------------------------- /hdf/2.0.0.0/server/scripts/start-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.0/server/scripts/start-server.sh -------------------------------------------------------------------------------- /hdf/2.0.0.0/server/scripts/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.0/server/scripts/vimrc -------------------------------------------------------------------------------- /hdf/2.0.0.0/server/scripts/wait-for-host-number.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.0/server/scripts/wait-for-host-number.sh -------------------------------------------------------------------------------- /hdf/2.0.0.1/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.1/DockerBuild.sh -------------------------------------------------------------------------------- /hdf/2.0.0.1/agent/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.1/agent/DockerBuild.sh -------------------------------------------------------------------------------- /hdf/2.0.0.1/agent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.1/agent/Dockerfile -------------------------------------------------------------------------------- /hdf/2.0.0.1/base/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.1/base/DockerBuild.sh -------------------------------------------------------------------------------- /hdf/2.0.0.1/base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.1/base/Dockerfile -------------------------------------------------------------------------------- /hdf/2.0.0.1/server/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.1/server/DockerBuild.sh -------------------------------------------------------------------------------- /hdf/2.0.0.1/server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.1/server/Dockerfile -------------------------------------------------------------------------------- /hdf/2.0.0.1/server/scripts/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.1/server/scripts/bashrc -------------------------------------------------------------------------------- /hdf/2.0.0.1/server/scripts/dev-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.1/server/scripts/dev-setup.sh -------------------------------------------------------------------------------- /hdf/2.0.0.1/server/scripts/initialize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.1/server/scripts/initialize.sh -------------------------------------------------------------------------------- /hdf/2.0.0.1/server/scripts/internal-hostname.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo $(hostname -f) 4 | -------------------------------------------------------------------------------- /hdf/2.0.0.1/server/scripts/portbind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.1/server/scripts/portbind.py -------------------------------------------------------------------------------- /hdf/2.0.0.1/server/scripts/public-hostname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.1/server/scripts/public-hostname.sh -------------------------------------------------------------------------------- /hdf/2.0.0.1/server/scripts/start-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.1/server/scripts/start-server.sh -------------------------------------------------------------------------------- /hdf/2.0.0.1/server/scripts/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.1/server/scripts/vimrc -------------------------------------------------------------------------------- /hdf/2.0.0.1/server/scripts/wait-for-host-number.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/2.0.0.1/server/scripts/wait-for-host-number.sh -------------------------------------------------------------------------------- /hdf/3.0.1.1/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.0.1.1/DockerBuild.sh -------------------------------------------------------------------------------- /hdf/3.0.1.1/agent/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.0.1.1/agent/DockerBuild.sh -------------------------------------------------------------------------------- /hdf/3.0.1.1/agent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.0.1.1/agent/Dockerfile -------------------------------------------------------------------------------- /hdf/3.0.1.1/agent/scripts/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.0.1.1/agent/scripts/bashrc -------------------------------------------------------------------------------- /hdf/3.0.1.1/agent/scripts/dev-setup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | yum install -y git vim apache-maven 3 | -------------------------------------------------------------------------------- /hdf/3.0.1.1/agent/scripts/internal-hostname.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo $(hostname -f) 4 | -------------------------------------------------------------------------------- /hdf/3.0.1.1/agent/scripts/portbind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.0.1.1/agent/scripts/portbind.py -------------------------------------------------------------------------------- /hdf/3.0.1.1/agent/scripts/public-hostname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.0.1.1/agent/scripts/public-hostname.sh -------------------------------------------------------------------------------- /hdf/3.0.1.1/agent/scripts/start-agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.0.1.1/agent/scripts/start-agent.sh -------------------------------------------------------------------------------- /hdf/3.0.1.1/agent/scripts/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.0.1.1/agent/scripts/vimrc -------------------------------------------------------------------------------- /hdf/3.0.1.1/agent/scripts/wait-for-host-number.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.0.1.1/agent/scripts/wait-for-host-number.sh -------------------------------------------------------------------------------- /hdf/3.0.1.1/base/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.0.1.1/base/DockerBuild.sh -------------------------------------------------------------------------------- /hdf/3.0.1.1/base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.0.1.1/base/Dockerfile -------------------------------------------------------------------------------- /hdf/3.0.1.1/server/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.0.1.1/server/DockerBuild.sh -------------------------------------------------------------------------------- /hdf/3.0.1.1/server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.0.1.1/server/Dockerfile -------------------------------------------------------------------------------- /hdf/3.0.1.1/server/scripts/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.0.1.1/server/scripts/bashrc -------------------------------------------------------------------------------- /hdf/3.0.1.1/server/scripts/dev-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.0.1.1/server/scripts/dev-setup.sh -------------------------------------------------------------------------------- /hdf/3.0.1.1/server/scripts/initialize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.0.1.1/server/scripts/initialize.sh -------------------------------------------------------------------------------- /hdf/3.0.1.1/server/scripts/internal-hostname.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo $(hostname -f) 4 | -------------------------------------------------------------------------------- /hdf/3.0.1.1/server/scripts/portbind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.0.1.1/server/scripts/portbind.py -------------------------------------------------------------------------------- /hdf/3.0.1.1/server/scripts/public-hostname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.0.1.1/server/scripts/public-hostname.sh -------------------------------------------------------------------------------- /hdf/3.0.1.1/server/scripts/start-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.0.1.1/server/scripts/start-server.sh -------------------------------------------------------------------------------- /hdf/3.0.1.1/server/scripts/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.0.1.1/server/scripts/vimrc -------------------------------------------------------------------------------- /hdf/3.0.1.1/server/scripts/wait-for-host-number.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.0.1.1/server/scripts/wait-for-host-number.sh -------------------------------------------------------------------------------- /hdf/3.1.1/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.1.1/DockerBuild.sh -------------------------------------------------------------------------------- /hdf/3.1.1/agent/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.1.1/agent/DockerBuild.sh -------------------------------------------------------------------------------- /hdf/3.1.1/agent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.1.1/agent/Dockerfile -------------------------------------------------------------------------------- /hdf/3.1.1/agent/scripts/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.1.1/agent/scripts/bashrc -------------------------------------------------------------------------------- /hdf/3.1.1/agent/scripts/dev-setup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | yum install -y git vim apache-maven 3 | -------------------------------------------------------------------------------- /hdf/3.1.1/agent/scripts/internal-hostname.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo $(hostname -f) 4 | -------------------------------------------------------------------------------- /hdf/3.1.1/agent/scripts/portbind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.1.1/agent/scripts/portbind.py -------------------------------------------------------------------------------- /hdf/3.1.1/agent/scripts/public-hostname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.1.1/agent/scripts/public-hostname.sh -------------------------------------------------------------------------------- /hdf/3.1.1/agent/scripts/start-agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.1.1/agent/scripts/start-agent.sh -------------------------------------------------------------------------------- /hdf/3.1.1/agent/scripts/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.1.1/agent/scripts/vimrc -------------------------------------------------------------------------------- /hdf/3.1.1/agent/scripts/wait-for-host-number.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.1.1/agent/scripts/wait-for-host-number.sh -------------------------------------------------------------------------------- /hdf/3.1.1/base/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.1.1/base/DockerBuild.sh -------------------------------------------------------------------------------- /hdf/3.1.1/base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.1.1/base/Dockerfile -------------------------------------------------------------------------------- /hdf/3.1.1/server/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.1.1/server/DockerBuild.sh -------------------------------------------------------------------------------- /hdf/3.1.1/server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.1.1/server/Dockerfile -------------------------------------------------------------------------------- /hdf/3.1.1/server/scripts/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.1.1/server/scripts/bashrc -------------------------------------------------------------------------------- /hdf/3.1.1/server/scripts/dev-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.1.1/server/scripts/dev-setup.sh -------------------------------------------------------------------------------- /hdf/3.1.1/server/scripts/initialize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.1.1/server/scripts/initialize.sh -------------------------------------------------------------------------------- /hdf/3.1.1/server/scripts/internal-hostname.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo $(hostname -f) 4 | -------------------------------------------------------------------------------- /hdf/3.1.1/server/scripts/portbind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.1.1/server/scripts/portbind.py -------------------------------------------------------------------------------- /hdf/3.1.1/server/scripts/public-hostname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.1.1/server/scripts/public-hostname.sh -------------------------------------------------------------------------------- /hdf/3.1.1/server/scripts/start-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.1.1/server/scripts/start-server.sh -------------------------------------------------------------------------------- /hdf/3.1.1/server/scripts/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.1.1/server/scripts/vimrc -------------------------------------------------------------------------------- /hdf/3.1.1/server/scripts/wait-for-host-number.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdf/3.1.1/server/scripts/wait-for-host-number.sh -------------------------------------------------------------------------------- /hdp-repo/2.5.0/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp-repo/2.5.0/DockerBuild.sh -------------------------------------------------------------------------------- /hdp-repo/2.5.0/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp-repo/2.5.0/DockerRun.sh -------------------------------------------------------------------------------- /hdp-repo/2.5.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp-repo/2.5.0/Dockerfile -------------------------------------------------------------------------------- /hdp-repo/2.6.2/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp-repo/2.6.2/DockerBuild.sh -------------------------------------------------------------------------------- /hdp-repo/2.6.2/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp-repo/2.6.2/DockerRun.sh -------------------------------------------------------------------------------- /hdp-repo/2.6.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp-repo/2.6.2/Dockerfile -------------------------------------------------------------------------------- /hdp-repo/2.6.4/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp-repo/2.6.4/DockerBuild.sh -------------------------------------------------------------------------------- /hdp-repo/2.6.4/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp-repo/2.6.4/DockerRun.sh -------------------------------------------------------------------------------- /hdp-repo/2.6.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp-repo/2.6.4/Dockerfile -------------------------------------------------------------------------------- /hdp/2.3.2/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.2/DockerBuild.sh -------------------------------------------------------------------------------- /hdp/2.3.2/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.2/DockerRun.sh -------------------------------------------------------------------------------- /hdp/2.3.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.2/Dockerfile -------------------------------------------------------------------------------- /hdp/2.3.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.2/LICENSE -------------------------------------------------------------------------------- /hdp/2.3.2/repos/ambari.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.2/repos/ambari.repo -------------------------------------------------------------------------------- /hdp/2.3.2/repos/apache-maven.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.2/repos/apache-maven.repo -------------------------------------------------------------------------------- /hdp/2.3.2/repos/hdp232.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.2/repos/hdp232.repo -------------------------------------------------------------------------------- /hdp/2.3.2/scripts/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.2/scripts/bashrc -------------------------------------------------------------------------------- /hdp/2.3.2/scripts/dev-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.2/scripts/dev-setup.sh -------------------------------------------------------------------------------- /hdp/2.3.2/scripts/initialize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.2/scripts/initialize.sh -------------------------------------------------------------------------------- /hdp/2.3.2/scripts/internal-hostname.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo $(hostname -f) 4 | -------------------------------------------------------------------------------- /hdp/2.3.2/scripts/portbind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.2/scripts/portbind.py -------------------------------------------------------------------------------- /hdp/2.3.2/scripts/public-hostname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.2/scripts/public-hostname.sh -------------------------------------------------------------------------------- /hdp/2.3.2/scripts/start-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.2/scripts/start-server.sh -------------------------------------------------------------------------------- /hdp/2.3.2/scripts/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.2/scripts/vimrc -------------------------------------------------------------------------------- /hdp/2.3.2/scripts/wait-for-host-number.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.2/scripts/wait-for-host-number.sh -------------------------------------------------------------------------------- /hdp/2.3.4/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.4/DockerBuild.sh -------------------------------------------------------------------------------- /hdp/2.3.4/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.4/DockerRun.sh -------------------------------------------------------------------------------- /hdp/2.3.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.4/Dockerfile -------------------------------------------------------------------------------- /hdp/2.3.4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.4/LICENSE -------------------------------------------------------------------------------- /hdp/2.3.4/repos/ambari.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.4/repos/ambari.repo -------------------------------------------------------------------------------- /hdp/2.3.4/repos/apache-maven.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.4/repos/apache-maven.repo -------------------------------------------------------------------------------- /hdp/2.3.4/repos/hdp234.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.4/repos/hdp234.repo -------------------------------------------------------------------------------- /hdp/2.3.4/scripts/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.4/scripts/bashrc -------------------------------------------------------------------------------- /hdp/2.3.4/scripts/dev-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.4/scripts/dev-setup.sh -------------------------------------------------------------------------------- /hdp/2.3.4/scripts/initialize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.4/scripts/initialize.sh -------------------------------------------------------------------------------- /hdp/2.3.4/scripts/internal-hostname.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo $(hostname -f) 4 | -------------------------------------------------------------------------------- /hdp/2.3.4/scripts/portbind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.4/scripts/portbind.py -------------------------------------------------------------------------------- /hdp/2.3.4/scripts/public-hostname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.4/scripts/public-hostname.sh -------------------------------------------------------------------------------- /hdp/2.3.4/scripts/start-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.4/scripts/start-server.sh -------------------------------------------------------------------------------- /hdp/2.3.4/scripts/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.4/scripts/vimrc -------------------------------------------------------------------------------- /hdp/2.3.4/scripts/wait-for-host-number.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.3.4/scripts/wait-for-host-number.sh -------------------------------------------------------------------------------- /hdp/2.4.0/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.0/DockerBuild.sh -------------------------------------------------------------------------------- /hdp/2.4.0/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.0/DockerRun.sh -------------------------------------------------------------------------------- /hdp/2.4.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.0/Dockerfile -------------------------------------------------------------------------------- /hdp/2.4.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.0/LICENSE -------------------------------------------------------------------------------- /hdp/2.4.0/repos/ambari.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.0/repos/ambari.repo -------------------------------------------------------------------------------- /hdp/2.4.0/repos/apache-maven.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.0/repos/apache-maven.repo -------------------------------------------------------------------------------- /hdp/2.4.0/repos/hdp240.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.0/repos/hdp240.repo -------------------------------------------------------------------------------- /hdp/2.4.0/scripts/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.0/scripts/bashrc -------------------------------------------------------------------------------- /hdp/2.4.0/scripts/dev-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.0/scripts/dev-setup.sh -------------------------------------------------------------------------------- /hdp/2.4.0/scripts/initialize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.0/scripts/initialize.sh -------------------------------------------------------------------------------- /hdp/2.4.0/scripts/internal-hostname.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo $(hostname -f) 4 | -------------------------------------------------------------------------------- /hdp/2.4.0/scripts/portbind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.0/scripts/portbind.py -------------------------------------------------------------------------------- /hdp/2.4.0/scripts/public-hostname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.0/scripts/public-hostname.sh -------------------------------------------------------------------------------- /hdp/2.4.0/scripts/start-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.0/scripts/start-server.sh -------------------------------------------------------------------------------- /hdp/2.4.0/scripts/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.0/scripts/vimrc -------------------------------------------------------------------------------- /hdp/2.4.0/scripts/wait-for-host-number.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.0/scripts/wait-for-host-number.sh -------------------------------------------------------------------------------- /hdp/2.4.2/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.2/DockerBuild.sh -------------------------------------------------------------------------------- /hdp/2.4.2/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.2/DockerRun.sh -------------------------------------------------------------------------------- /hdp/2.4.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.2/Dockerfile -------------------------------------------------------------------------------- /hdp/2.4.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.2/LICENSE -------------------------------------------------------------------------------- /hdp/2.4.2/repos/ambari.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.2/repos/ambari.repo -------------------------------------------------------------------------------- /hdp/2.4.2/repos/apache-maven.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.2/repos/apache-maven.repo -------------------------------------------------------------------------------- /hdp/2.4.2/repos/hdp242.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.2/repos/hdp242.repo -------------------------------------------------------------------------------- /hdp/2.4.2/scripts/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.2/scripts/bashrc -------------------------------------------------------------------------------- /hdp/2.4.2/scripts/dev-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.2/scripts/dev-setup.sh -------------------------------------------------------------------------------- /hdp/2.4.2/scripts/initialize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.2/scripts/initialize.sh -------------------------------------------------------------------------------- /hdp/2.4.2/scripts/internal-hostname.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo $(hostname -f) 4 | -------------------------------------------------------------------------------- /hdp/2.4.2/scripts/portbind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.2/scripts/portbind.py -------------------------------------------------------------------------------- /hdp/2.4.2/scripts/public-hostname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.2/scripts/public-hostname.sh -------------------------------------------------------------------------------- /hdp/2.4.2/scripts/start-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.2/scripts/start-server.sh -------------------------------------------------------------------------------- /hdp/2.4.2/scripts/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.2/scripts/vimrc -------------------------------------------------------------------------------- /hdp/2.4.2/scripts/wait-for-host-number.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.4.2/scripts/wait-for-host-number.sh -------------------------------------------------------------------------------- /hdp/2.5.0/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.0/DockerBuild.sh -------------------------------------------------------------------------------- /hdp/2.5.0/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.0/DockerRun.sh -------------------------------------------------------------------------------- /hdp/2.5.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.0/Dockerfile -------------------------------------------------------------------------------- /hdp/2.5.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.0/LICENSE -------------------------------------------------------------------------------- /hdp/2.5.0/containers/ambari-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.0/containers/ambari-server/Dockerfile -------------------------------------------------------------------------------- /hdp/2.5.0/containers/ambari-server/scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.0/containers/ambari-server/scripts/start.sh -------------------------------------------------------------------------------- /hdp/2.5.0/containers/node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.0/containers/node/Dockerfile -------------------------------------------------------------------------------- /hdp/2.5.0/containers/node/scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.0/containers/node/scripts/start.sh -------------------------------------------------------------------------------- /hdp/2.5.0/containers/postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.0/containers/postgres/Dockerfile -------------------------------------------------------------------------------- /hdp/2.5.0/containers/postgres/pg_hba.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.0/containers/postgres/pg_hba.conf -------------------------------------------------------------------------------- /hdp/2.5.0/containers/postgres/scripts/100-ambari.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.0/containers/postgres/scripts/100-ambari.sh -------------------------------------------------------------------------------- /hdp/2.5.0/containers/postgres/scripts/100-hive.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.0/containers/postgres/scripts/100-hive.sql -------------------------------------------------------------------------------- /hdp/2.5.0/containers/postgres/scripts/100-ranger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.0/containers/postgres/scripts/100-ranger.sql -------------------------------------------------------------------------------- /hdp/2.5.0/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.0/docker-compose.yml -------------------------------------------------------------------------------- /hdp/2.5.0/repos/ambari.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.0/repos/ambari.repo -------------------------------------------------------------------------------- /hdp/2.5.0/repos/apache-maven.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.0/repos/apache-maven.repo -------------------------------------------------------------------------------- /hdp/2.5.0/repos/hdp.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.0/repos/hdp.repo -------------------------------------------------------------------------------- /hdp/2.5.0/scripts/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.0/scripts/bashrc -------------------------------------------------------------------------------- /hdp/2.5.0/scripts/dev-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.0/scripts/dev-setup.sh -------------------------------------------------------------------------------- /hdp/2.5.0/scripts/initialize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.0/scripts/initialize.sh -------------------------------------------------------------------------------- /hdp/2.5.0/scripts/internal-hostname.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo $(hostname -f) 4 | -------------------------------------------------------------------------------- /hdp/2.5.0/scripts/portbind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.0/scripts/portbind.py -------------------------------------------------------------------------------- /hdp/2.5.0/scripts/public-hostname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.0/scripts/public-hostname.sh -------------------------------------------------------------------------------- /hdp/2.5.0/scripts/start-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.0/scripts/start-server.sh -------------------------------------------------------------------------------- /hdp/2.5.0/scripts/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.0/scripts/vimrc -------------------------------------------------------------------------------- /hdp/2.5.0/scripts/wait-for-host-number.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.0/scripts/wait-for-host-number.sh -------------------------------------------------------------------------------- /hdp/2.5.3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.3/LICENSE -------------------------------------------------------------------------------- /hdp/2.5.3/containers/ambari-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.3/containers/ambari-server/Dockerfile -------------------------------------------------------------------------------- /hdp/2.5.3/containers/ambari-server/scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.3/containers/ambari-server/scripts/start.sh -------------------------------------------------------------------------------- /hdp/2.5.3/containers/node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.3/containers/node/Dockerfile -------------------------------------------------------------------------------- /hdp/2.5.3/containers/node/scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.3/containers/node/scripts/start.sh -------------------------------------------------------------------------------- /hdp/2.5.3/containers/postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.3/containers/postgres/Dockerfile -------------------------------------------------------------------------------- /hdp/2.5.3/containers/postgres/pg_hba.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.3/containers/postgres/pg_hba.conf -------------------------------------------------------------------------------- /hdp/2.5.3/containers/postgres/scripts/100-ambari.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.3/containers/postgres/scripts/100-ambari.sh -------------------------------------------------------------------------------- /hdp/2.5.3/containers/postgres/scripts/100-hive.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.3/containers/postgres/scripts/100-hive.sql -------------------------------------------------------------------------------- /hdp/2.5.3/containers/postgres/scripts/100-ranger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.3/containers/postgres/scripts/100-ranger.sql -------------------------------------------------------------------------------- /hdp/2.5.3/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.5.3/docker-compose.yml -------------------------------------------------------------------------------- /hdp/2.6.5/containers/ambari-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.6.5/containers/ambari-server/Dockerfile -------------------------------------------------------------------------------- /hdp/2.6.5/containers/ambari-server/scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.6.5/containers/ambari-server/scripts/start.sh -------------------------------------------------------------------------------- /hdp/2.6.5/containers/node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.6.5/containers/node/Dockerfile -------------------------------------------------------------------------------- /hdp/2.6.5/containers/node/scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.6.5/containers/node/scripts/start.sh -------------------------------------------------------------------------------- /hdp/2.6.5/containers/postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.6.5/containers/postgres/Dockerfile -------------------------------------------------------------------------------- /hdp/2.6.5/containers/postgres/pg_hba.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.6.5/containers/postgres/pg_hba.conf -------------------------------------------------------------------------------- /hdp/2.6.5/containers/postgres/scripts/100-ambari.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.6.5/containers/postgres/scripts/100-ambari.sh -------------------------------------------------------------------------------- /hdp/2.6.5/containers/postgres/scripts/100-hive.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.6.5/containers/postgres/scripts/100-hive.sql -------------------------------------------------------------------------------- /hdp/2.6.5/containers/postgres/scripts/100-ranger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.6.5/containers/postgres/scripts/100-ranger.sql -------------------------------------------------------------------------------- /hdp/2.6.5/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/hdp/2.6.5/docker-compose.yml -------------------------------------------------------------------------------- /install_macosx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/install_macosx.sh -------------------------------------------------------------------------------- /minifi/0.0.1/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/minifi/0.0.1/DockerBuild.sh -------------------------------------------------------------------------------- /minifi/0.0.1/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/minifi/0.0.1/DockerRun.sh -------------------------------------------------------------------------------- /minifi/0.0.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/minifi/0.0.1/Dockerfile -------------------------------------------------------------------------------- /nifi/0.2.1/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.2.1/DockerBuild.sh -------------------------------------------------------------------------------- /nifi/0.2.1/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.2.1/DockerRun.sh -------------------------------------------------------------------------------- /nifi/0.2.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.2.1/Dockerfile -------------------------------------------------------------------------------- /nifi/0.3.0/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.3.0/DockerBuild.sh -------------------------------------------------------------------------------- /nifi/0.3.0/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.3.0/DockerRun.sh -------------------------------------------------------------------------------- /nifi/0.3.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.3.0/Dockerfile -------------------------------------------------------------------------------- /nifi/0.4.0/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.4.0/DockerBuild.sh -------------------------------------------------------------------------------- /nifi/0.4.0/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.4.0/DockerRun.sh -------------------------------------------------------------------------------- /nifi/0.4.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.4.0/Dockerfile -------------------------------------------------------------------------------- /nifi/0.4.1/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.4.1/DockerBuild.sh -------------------------------------------------------------------------------- /nifi/0.4.1/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.4.1/DockerRun.sh -------------------------------------------------------------------------------- /nifi/0.4.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.4.1/Dockerfile -------------------------------------------------------------------------------- /nifi/0.5.0/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.5.0/DockerBuild.sh -------------------------------------------------------------------------------- /nifi/0.5.0/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.5.0/DockerRun.sh -------------------------------------------------------------------------------- /nifi/0.5.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.5.0/Dockerfile -------------------------------------------------------------------------------- /nifi/0.5.1/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.5.1/DockerBuild.sh -------------------------------------------------------------------------------- /nifi/0.5.1/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.5.1/DockerRun.sh -------------------------------------------------------------------------------- /nifi/0.5.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.5.1/Dockerfile -------------------------------------------------------------------------------- /nifi/0.6.0/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.6.0/DockerBuild.sh -------------------------------------------------------------------------------- /nifi/0.6.0/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.6.0/DockerRun.sh -------------------------------------------------------------------------------- /nifi/0.6.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.6.0/Dockerfile -------------------------------------------------------------------------------- /nifi/0.6.1/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.6.1/DockerBuild.sh -------------------------------------------------------------------------------- /nifi/0.6.1/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.6.1/DockerRun.sh -------------------------------------------------------------------------------- /nifi/0.6.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.6.1/Dockerfile -------------------------------------------------------------------------------- /nifi/0.6.1/apache-maven-3.3.9-bin.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.6.1/apache-maven-3.3.9-bin.tar.gz -------------------------------------------------------------------------------- /nifi/0.7.0/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.7.0/DockerBuild.sh -------------------------------------------------------------------------------- /nifi/0.7.0/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.7.0/DockerRun.sh -------------------------------------------------------------------------------- /nifi/0.7.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/0.7.0/Dockerfile -------------------------------------------------------------------------------- /nifi/1.0.0-beta/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/1.0.0-beta/DockerBuild.sh -------------------------------------------------------------------------------- /nifi/1.0.0-beta/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/1.0.0-beta/DockerRun.sh -------------------------------------------------------------------------------- /nifi/1.0.0-beta/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/1.0.0-beta/Dockerfile -------------------------------------------------------------------------------- /nifi/1.0.0/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/1.0.0/DockerBuild.sh -------------------------------------------------------------------------------- /nifi/1.0.0/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/1.0.0/DockerRun.sh -------------------------------------------------------------------------------- /nifi/1.0.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/1.0.0/Dockerfile -------------------------------------------------------------------------------- /nifi/1.1.0/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/1.1.0/DockerBuild.sh -------------------------------------------------------------------------------- /nifi/1.1.0/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/1.1.0/DockerRun.sh -------------------------------------------------------------------------------- /nifi/1.1.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/1.1.0/Dockerfile -------------------------------------------------------------------------------- /nifi/1.1.1/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/1.1.1/DockerBuild.sh -------------------------------------------------------------------------------- /nifi/1.1.1/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/1.1.1/DockerRun.sh -------------------------------------------------------------------------------- /nifi/1.1.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/1.1.1/Dockerfile -------------------------------------------------------------------------------- /nifi/1.1.2/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/1.1.2/DockerBuild.sh -------------------------------------------------------------------------------- /nifi/1.1.2/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/1.1.2/DockerRun.sh -------------------------------------------------------------------------------- /nifi/1.1.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/1.1.2/Dockerfile -------------------------------------------------------------------------------- /nifi/FaceDetectionDemo/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/FaceDetectionDemo/DockerBuild.sh -------------------------------------------------------------------------------- /nifi/FaceDetectionDemo/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/FaceDetectionDemo/DockerRun.sh -------------------------------------------------------------------------------- /nifi/FaceDetectionDemo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/FaceDetectionDemo/Dockerfile -------------------------------------------------------------------------------- /nifi/FaceDetectionDemo/InputAssets/faces/Jeremy_EyesClosed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/FaceDetectionDemo/InputAssets/faces/Jeremy_EyesClosed.jpg -------------------------------------------------------------------------------- /nifi/FaceDetectionDemo/InputAssets/faces/Jeremy_EyesOpen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/FaceDetectionDemo/InputAssets/faces/Jeremy_EyesOpen.jpg -------------------------------------------------------------------------------- /nifi/FaceDetectionDemo/flow.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/FaceDetectionDemo/flow.xml.gz -------------------------------------------------------------------------------- /nifi/OCRChildrensBook/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/OCRChildrensBook/DockerBuild.sh -------------------------------------------------------------------------------- /nifi/OCRChildrensBook/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/OCRChildrensBook/DockerRun.sh -------------------------------------------------------------------------------- /nifi/OCRChildrensBook/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/OCRChildrensBook/Dockerfile -------------------------------------------------------------------------------- /nifi/OCRChildrensBook/InputAssets/CatInHatThingTwoAndOne.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/OCRChildrensBook/InputAssets/CatInHatThingTwoAndOne.jpg -------------------------------------------------------------------------------- /nifi/OCRChildrensBook/InputAssets/CatInTheHat_1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/OCRChildrensBook/InputAssets/CatInTheHat_1.jpeg -------------------------------------------------------------------------------- /nifi/OCRChildrensBook/InputAssets/CatInTheHat_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/OCRChildrensBook/InputAssets/CatInTheHat_2.jpg -------------------------------------------------------------------------------- /nifi/OCRChildrensBook/InputAssets/CatInTheHat_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/OCRChildrensBook/InputAssets/CatInTheHat_3.jpg -------------------------------------------------------------------------------- /nifi/OCRChildrensBook/InputAssets/CatInTheHat_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/OCRChildrensBook/InputAssets/CatInTheHat_4.gif -------------------------------------------------------------------------------- /nifi/OCRChildrensBook/InputAssets/NiFiReadBooks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/OCRChildrensBook/InputAssets/NiFiReadBooks.jpg -------------------------------------------------------------------------------- /nifi/OCRChildrensBook/InputAssets/OCR_EndResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/OCRChildrensBook/InputAssets/OCR_EndResult.png -------------------------------------------------------------------------------- /nifi/OCRChildrensBook/InputAssets/orch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/OCRChildrensBook/InputAssets/orch.jpg -------------------------------------------------------------------------------- /nifi/OCRChildrensBook/flow.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/OCRChildrensBook/flow.xml.gz -------------------------------------------------------------------------------- /nifi/hive/DockerBuild.sh: -------------------------------------------------------------------------------- 1 | echo "Running NiFi:Latest Hive example" 2 | docker build -t jdye64/nifi-hive . -------------------------------------------------------------------------------- /nifi/hive/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/hive/DockerRun.sh -------------------------------------------------------------------------------- /nifi/hive/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/hive/Dockerfile -------------------------------------------------------------------------------- /nifi/snapshot/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/snapshot/DockerBuild.sh -------------------------------------------------------------------------------- /nifi/snapshot/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/snapshot/DockerRun.sh -------------------------------------------------------------------------------- /nifi/snapshot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/snapshot/Dockerfile -------------------------------------------------------------------------------- /nifi/snapshot/apache-maven-3.3.9-bin.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/nifi/snapshot/apache-maven-3.3.9-bin.tar.gz -------------------------------------------------------------------------------- /spark/1.6.2-standalone/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/spark/1.6.2-standalone/DockerBuild.sh -------------------------------------------------------------------------------- /spark/1.6.2-standalone/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/spark/1.6.2-standalone/DockerRun.sh -------------------------------------------------------------------------------- /spark/1.6.2-standalone/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/spark/1.6.2-standalone/Dockerfile -------------------------------------------------------------------------------- /spark/1.6.3-standalone/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/spark/1.6.3-standalone/DockerBuild.sh -------------------------------------------------------------------------------- /spark/1.6.3-standalone/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/spark/1.6.3-standalone/DockerRun.sh -------------------------------------------------------------------------------- /spark/1.6.3-standalone/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/spark/1.6.3-standalone/Dockerfile -------------------------------------------------------------------------------- /spark/2.0.0-standalone/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/spark/2.0.0-standalone/DockerBuild.sh -------------------------------------------------------------------------------- /spark/2.0.0-standalone/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/spark/2.0.0-standalone/DockerRun.sh -------------------------------------------------------------------------------- /spark/2.0.0-standalone/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/spark/2.0.0-standalone/Dockerfile -------------------------------------------------------------------------------- /spark/2.0.1-standalone/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/spark/2.0.1-standalone/DockerBuild.sh -------------------------------------------------------------------------------- /spark/2.0.1-standalone/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/spark/2.0.1-standalone/DockerRun.sh -------------------------------------------------------------------------------- /spark/2.0.1-standalone/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/spark/2.0.1-standalone/Dockerfile -------------------------------------------------------------------------------- /spark/2.0.2-standalone/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/spark/2.0.2-standalone/DockerBuild.sh -------------------------------------------------------------------------------- /spark/2.0.2-standalone/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/spark/2.0.2-standalone/DockerRun.sh -------------------------------------------------------------------------------- /spark/2.0.2-standalone/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/spark/2.0.2-standalone/Dockerfile -------------------------------------------------------------------------------- /spark/2.1.0-standalone/DockerBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/spark/2.1.0-standalone/DockerBuild.sh -------------------------------------------------------------------------------- /spark/2.1.0-standalone/DockerRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/spark/2.1.0-standalone/DockerRun.sh -------------------------------------------------------------------------------- /spark/2.1.0-standalone/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/spark/2.1.0-standalone/Dockerfile -------------------------------------------------------------------------------- /streamline/0.0.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/streamline/0.0.1/Dockerfile -------------------------------------------------------------------------------- /uninstall_macosx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdye64/docker-hwx/HEAD/uninstall_macosx.sh --------------------------------------------------------------------------------