mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-25 10:30:04 +00:00
12 lines
566 B
Bash
12 lines
566 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
# Quickstarts DataHub that serves React app. Notice that this only starts the dependencies required by datahub-frontend-react.
|
||
|
# Notice that by default we do not launch datahub-frontend (Ember) app.
|
||
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
||
|
cd $DIR && docker-compose -f docker-compose.yml -f docker-compose.override.yml -f docker-compose.react.yml pull && docker-compose -p datahub \
|
||
|
-f docker-compose.yml \
|
||
|
-f docker-compose.override.yml \
|
||
|
-f docker-compose.react.yml \
|
||
|
up \
|
||
|
--scale datahub-frontend=0
|