mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-03 07:09:21 +00:00
17 lines
582 B
Bash
17 lines
582 B
Bash
![]() |
#!/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 \
|
||
|
up
|