You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Tag the menu service image
docker tag menu-service \
$GITLAB_REGISTRY_URL/menu-service:v0.1.0
# Tag the qr service image
docker tag qr-service \
$GITLAB_REGISTRY_URL/qr-service:v0.1.0
# Tag the menu-postgres image
docker tag menu-postgresql \
$GITLAB_REGISTRY_URL/menu-postgresql:v0.1.0
# Push the menu service image
docker push \
$GITLAB_REGISTRY_URL/menu-service:v0.1.0
# Push the qr service image
docker push \
$GITLAB_REGISTRY_URL/qr-service:v0.1.0
# Push the menu-postgresql image
docker push \
$GITLAB_REGISTRY_URL/menu-postgresql:v0.1.0
# Export the project ID
project_id=$(glab api /projects/$GITLAB_GROUP%2F$GITLAB_PROJECT| jq -r .id)# List the images in the GitLab Container Registry for the project with the ID $project_id
glab api /projects/$project_id/registry/repositories | jq -r '.[] | .path'