2020-08-06 16:38:53 -07:00
# DataHub Frontend Docker Image
2022-03-18 22:12:19 +01:00
[](https://github.com/datahub-project/datahub/actions?query=workflow%3A%22datahub-frontend+docker%22)
2020-08-06 16:38:53 -07:00
2025-04-16 16:55:51 -07:00
Refer to [DataHub Frontend Service ](../../datahub-frontend ) to have a quick understanding of the architecture and
2020-08-06 16:38:53 -07:00
responsibility of this service for the DataHub.
## Checking out DataHub UI
After starting your Docker container, you can connect to it by typing below into your favorite web browser:
2021-03-18 09:55:05 -07:00
If using React app:
2025-04-16 16:55:51 -07:00
2021-03-18 09:55:05 -07:00
```
http://localhost:9002
```
2020-08-06 16:38:53 -07:00
You can sign in with `datahub` as username and password.
2021-10-01 00:49:22 -05:00
## Build instructions
2022-03-14 11:59:04 -04:00
If you want to build the `datahub-frontend` Docker image yourself, you can run this command from the root directory of the DataHub repository you have locally (using Buildkit):
2021-10-01 00:49:22 -05:00
2022-03-14 11:59:04 -04:00
`DOCKER_BUILDKIT=1 docker build -t your_datahub_frontend -f ./docker/datahub-frontend/Dockerfile .`
2021-10-01 00:49:22 -05:00
2022-09-04 22:42:09 -07:00
Please note the final `.` and that the tag `your_datahub_frontend` is determined by you.