Skip to content

Commit e73c652

Browse files
authored
revert: "fix(docker): pin containers to golden hash for release (datahub-project#2654)" (datahub-project#2659)
This reverts commit a483933 and moves us back to using HEAD in quickstart on the master branch.
1 parent b1ff56f commit e73c652

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docker/ingestion/ingestion.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
22

33
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
4-
export DATAHUB_VERSION=${DATAHUB_VERSION:-9829576}
4+
export DATAHUB_VERSION=${DATAHUB_VERSION:-head}
55
cd $DIR && docker-compose pull && docker-compose -p datahub up

docker/quickstart-ember.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Quickstarts an Ember-serving variant of DataHub by pulling all images from dockerhub and then running the containers locally.
44
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
5-
export DATAHUB_VERSION=${DATAHUB_VERSION:-9829576}
5+
export DATAHUB_VERSION=${DATAHUB_VERSION:-head}
66
cd $DIR && docker-compose -f docker-compose.yml -f docker-compose.override.yml -f docker-compose.ember.yml pull && docker-compose -p datahub \
77
-f docker-compose.yml \
88
-f docker-compose.override.yml \

docker/quickstart.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
# Quickstarts DataHub by pulling all images from dockerhub and then running the containers locally. No images are
44
# built locally. Note: by default this pulls the latest (head) version; you can change this to a specific version by setting
55
# the DATAHUB_VERSION environment variable.
6-
export DATAHUB_VERSION=${DATAHUB_VERSION:-9829576}
6+
export DATAHUB_VERSION=${DATAHUB_VERSION:-head}
77
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
88
cd $DIR && docker-compose pull && docker-compose -p datahub up

0 commit comments

Comments
 (0)