Here’s a couple of steps to move a Docker image to the Google Container Registry.
Create a container image.
<pre lang="bash">
docker build -t gcr.io/${PROJECT_ID}/my-app:v1 .
Push image to GCR.
<pre lang="bash">
docker push gcr.io/[PROJECT-ID]/[IMAGE]