mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-12 03:33:40 +00:00
11 lines
494 B
Bash
Executable File
11 lines
494 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Quickstarts a React-serving variant of DataHub by pulling all images from dockerhub and then running the containers locally.
|
|
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
|