From b100472c49fc60d617dd1891e6a91eb8fcc0597f Mon Sep 17 00:00:00 2001 From: Andy Neff Date: Fri, 23 Oct 2015 10:23:21 -0400 Subject: [PATCH] Change the run script to download docker instead of build Moving the the docker image generation to a separately maintained repo and uploading the image to docker hub instead. Should be a far friendlier experience for the developer. Almost all of the files in the docker folder should be redundant except the run_dockers.bsh file at this point. --- docker/run_dockers.bsh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/run_dockers.bsh b/docker/run_dockers.bsh index 74858aab..e90cbd4b 100755 --- a/docker/run_dockers.bsh +++ b/docker/run_dockers.bsh @@ -64,9 +64,9 @@ for DOCKER_FILE in "${IMAGES[@]}"; do split_image_name "${DOCKER_FILE}" #set IMAGE_NAME and IMAGE_INFO #Auto build docker unless DOCKER_AUTOBUILD=0 - if [[ ${DOCKER_AUTOBUILD-1} != 0 ]]; then - ${CUR_DIR}/build_dockers.bsh ${DOCKER_FILE} - fi + #if [[ ${DOCKER_AUTOBUILD-1} != 0 ]]; then + # ${CUR_DIR}/build_dockers.bsh ${DOCKER_FILE} + #fi #It CAN'T be empty () with set -u... So I put some defaults in here OTHER_OPTIONS=("-it") @@ -100,7 +100,7 @@ for DOCKER_FILE in "${IMAGES[@]}"; do -e FINAL_GID=${FINAL_GID} \ -v "${MINGW_PATCH}${REPO_DIR}:/src" \ -v "${MINGW_PATCH}${IMAGE_REPO_DIR}:/repo" \ - git-lfs/${IMAGE_NAME} ${DOCKER_CMD-} + andyneff/build_git-lfs:${IMAGE_NAME} ${DOCKER_CMD-} done