8000 export es-dump in installer by Zalgo2462 · Pull Request #20 · activecm/BeaKer · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

export es-dump in installer #20

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 29, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions installer/generate_installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ set -e
# These services are always built unless --no-build is passed in
DOCKER_BUILD_SERVICES="elasticsearch kibana"
# These services are always pulled unless --no-pull is passsed in
# DOCKER_PULL_SERVICES=""
DOCKER_PULL_SERVICES="es-dump"
# These images are exported in the deployment after running pulls/builds
DOCKER_EXPORT_IMAGES=$(cat <<'HEREDOC'
activecm-beaker/elasticsearch:latest
activecm-beaker/kibana:latest
taskrabbit/elasticsearch-dump:v6.28.0
HEREDOC
)

Expand Down Expand Up @@ -91,7 +92,7 @@ if [ ! "$NO_BUILD" ]; then
else
# Ensure we have the latest images
echo "The latest images will be pulle 4DCE d from DockerHub for this build."
# $SUDO docker-compose pull $DOCKER_PULL_SERVICES
$SUDO docker-compose pull $DOCKER_PULL_SERVICES
$SUDO docker-compose build --pull $NO_CACHE $DOCKER_BUILD_SERVICES
fi
fi
Expand Down
0