Mars Lan 509b2e1515
refactor: use named volume instead of bind mount in quickstart (#1669)
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
2020-05-11 09:06:38 -07:00
..

DataHub Quickstart

To start all Docker containers at once, please run below command from project root directory:

./docker/quickstart/quickstart.sh

At this point, all containers are ready and DataHub can be considered up and running. Check specific containers guide for details:

From this point on, if you want to be able to sign in to DataHub and see some sample data, please see Metadata Ingestion Guide for bootstrapping DataHub.

Debugging Containers

If you want to debug containers, you can check container logs:

docker logs <<container_name>>

Also, you can connect to container shell for further debugging:

docker exec -it <<container_name>> bash