2021-02-10 16:10:08 -08:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-03-18 15:40:24 -07:00
|
|
|
# Quickstarts an Ember-serving variant of DataHub by pulling all images from dockerhub and then running the containers locally.
|
2021-02-10 16:10:08 -08:00
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
2021-06-04 18:11:36 -07:00
|
|
|
export DATAHUB_VERSION=${DATAHUB_VERSION:-head}
|
2021-03-18 09:55:05 -07:00
|
|
|
cd $DIR && docker-compose -f docker-compose.yml -f docker-compose.override.yml -f docker-compose.ember.yml pull && docker-compose -p datahub \
|
2021-02-10 16:10:08 -08:00
|
|
|
-f docker-compose.yml \
|
|
|
|
-f docker-compose.override.yml \
|
2021-03-18 09:55:05 -07:00
|
|
|
-f docker-compose.ember.yml \
|
2021-02-10 16:10:08 -08:00
|
|
|
up \
|
2021-03-18 09:55:05 -07:00
|
|
|
--scale datahub-frontend-react=0
|