Skip to content

Commit

Permalink
fix(docker): pin containers to golden hash for release (#2654)
Browse files Browse the repository at this point in the history
  • Loading branch information
hsheth2 authored Jun 4, 2021
1 parent 9829576 commit a483933
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:-head}
export DATAHUB_VERSION=${DATAHUB_VERSION:-9829576}
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:-head}
export DATAHUB_VERSION=${DATAHUB_VERSION:-9829576}
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:-head}
export DATAHUB_VERSION=${DATAHUB_VERSION:-9829576}
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 a483933

Please sign in to comment.