Skip to content

Commit

Permalink
revert: "fix(docker): pin containers to golden hash for release (#2654)…
Browse files Browse the repository at this point in the history
…" (#2659)

This reverts commit a483933 and moves
us back to using HEAD in quickstart on the master branch.
  • Loading branch information
hsheth2 authored Jun 5, 2021
1 parent b1ff56f commit e73c652
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker/ingestion/ingestion.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
export DATAHUB_VERSION=${DATAHUB_VERSION:-9829576}
export DATAHUB_VERSION=${DATAHUB_VERSION:-head}
cd $DIR && docker-compose pull && docker-compose -p datahub up
2 changes: 1 addition & 1 deletion docker/quickstart-ember.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Quickstarts an Ember-serving variant of DataHub by pulling all images from dockerhub and then running the containers locally.
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
export DATAHUB_VERSION=${DATAHUB_VERSION:-9829576}
export DATAHUB_VERSION=${DATAHUB_VERSION:-head}
cd $DIR && docker-compose -f docker-compose.yml -f docker-compose.override.yml -f docker-compose.ember.yml pull && docker-compose -p datahub \
-f docker-compose.yml \
-f docker-compose.override.yml \
Expand Down
2 changes: 1 addition & 1 deletion docker/quickstart.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
# Quickstarts DataHub by pulling all images from dockerhub and then running the containers locally. No images are
# built locally. Note: by default this pulls the latest (head) version; you can change this to a specific version by setting
# the DATAHUB_VERSION environment variable.
export DATAHUB_VERSION=${DATAHUB_VERSION:-9829576}
export DATAHUB_VERSION=${DATAHUB_VERSION:-head}
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
cd $DIR && docker-compose pull && docker-compose -p datahub up

0 comments on commit e73c652

Please sign in to comment.