Skip to content
This repository has been archived by the owner on Aug 5, 2023. It is now read-only.

Latest commit

 

History

History
28 lines (19 loc) · 714 Bytes

build.md

File metadata and controls

28 lines (19 loc) · 714 Bytes

Building Docker Image

In the project root directory execute the command:

export DOCKER_BUILDKIT=1

docker build -t akrisanov/dataset-catalog:<VERSION> . --no-cache

Pushing Release Image to Private Docker Registry

I'm using Artifactory here.

First, authenticate your account with credentials:

docker login https://[repository-name].[organization].com

Then, find a tag of your release image, tag it with a proper name of the private Docker registry, and push it to the repository:

docker images | head
docker tag <IMAGE_ID> [repository-name].[organization].com/dataset-catalog:<VERSION>
docker push [repository-name].[organization].com/dataset-catalog:<VERSION>