2020-08-06 16:38:53 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Launches dev instances of DataHub images. See documentation for more details.
|
|
|
|
# YOU MUST BUILD VIA GRADLE BEFORE RUNNING THIS.
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
cd $DIR && \
|
|
|
|
COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker-compose \
|
|
|
|
-f docker-compose.yml \
|
|
|
|
-f docker-compose.override.yml \
|
|
|
|
-f docker-compose.dev.yml \
|
|
|
|
pull \
|
|
|
|
&& \
|
|
|
|
COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker-compose -p datahub \
|
|
|
|
-f docker-compose.yml \
|
|
|
|
-f docker-compose.override.yml \
|
|
|
|
-f docker-compose.dev.yml \
|
2021-03-19 18:55:04 -04:00
|
|
|
up --build $@
|