mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-18 06:06:55 +00:00

This reverts commit a483933eab6d072ba6d2a414e378eee1e80dbdc6 and moves us back to using HEAD in quickstart on the master branch.
9 lines
479 B
Bash
Executable File
9 lines
479 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# 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}
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
cd $DIR && docker-compose pull && docker-compose -p datahub up
|