Skip to content
This repository was archived by the owner on Aug 19, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
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: 5 additions & 0 deletions 2-run-spark-master.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ source variables_and_helpers.sh
__image=$__image_master


# update repo and images
git pull origin master && \
docker pull $__image # alternatively: ./1-build.sh


# get host DNS server (for internal resolution)
__dns=$(dns_detect)

Expand Down
5 changes: 5 additions & 0 deletions 3-run-spark-worker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ fi
__image=$__image_worker


# update repo and images
git pull origin master && \
docker pull $__image # alternatively: ./1-build.sh


# get host DNS server (for internal resolution)
__dns=$(dns_detect)

Expand Down
5 changes: 5 additions & 0 deletions 4-run-spark-client-ipython.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ fi
__image=$__image_client


# update repo and images
git pull origin master && \
docker pull $__image # alternatively: ./1-build.sh


# get host DNS server (for internal resolution)
__dns=$(dns_detect)

Expand Down