Skip to content
This repository has been archived by the owner on Mar 20, 2024. It is now read-only.

Pushing easy_sast to a custom registry

JonZeolla edited this page Jan 1, 2020 · 1 revision

You may want to push your easy_sast docker image into a tool such as a Private Docker Hub Repository or sonatype's Nexus product. In order to do that, follow these steps:

URL=https://example.com
TAG=0.1.0
COMMIT=$(git rev-parse HEAD)

docker login "${URL}"
docker push "${URL}/easy_sast:${TAG}"
docker push "${URL}/easy_sast:${COMMIT}"
docker push "${URL}/easy_sast:latest"
Clone this wiki locally