mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-26 11:00:06 +00:00

Volume is the preferred method over bind mount (https://docs.docker.com/storage/volumes/) for persistent container data. This also eliminates the need for the ugly chmod hack for elasticsearch and hopefully fixes https://github.com/linkedin/datahub/issues/1650
4 lines
155 B
Bash
Executable File
4 lines
155 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
cd $DIR && docker-compose pull && docker-compose -p datahub up --build |