Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Correct Image name on Openshift templates #2318

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions distro/openshift/apicurio-image-streams-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ objects:
- name: latest-release
from:
kind: DockerImage
name: apicurio/apicurio-studio-auth-quarkus:latest
name: apicurio/apicurio-studio-auth:latest
importPolicy:
scheduled: true
- apiVersion: v1
Expand All @@ -25,7 +25,7 @@ objects:
- name: latest-release
from:
kind: DockerImage
name: apicurio/apicurio-studio-api-quarkus:latest
name: apicurio/apicurio-studio-api:latest
importPolicy:
scheduled: true
- apiVersion: v1
Expand All @@ -37,7 +37,7 @@ objects:
- name: latest-release
from:
kind: DockerImage
name: apicurio/apicurio-studio-ws-quarkus:latest
name: apicurio/apicurio-studio-ws:latest
importPolicy:
scheduled: true
- apiVersion: v1
Expand All @@ -49,6 +49,6 @@ objects:
- name: latest-release
from:
kind: DockerImage
name: apicurio/apicurio-studio-ui-quarkus:latest
name: apicurio/apicurio-studio-ui:latest
importPolicy:
scheduled: true
6 changes: 3 additions & 3 deletions distro/openshift/auth/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ Instructions

To start up the image

docker run -it -p 8080:8080 apicurio/apicurio-studio-auth-quarkus
docker run -it -p 8080:8080 apicurio/apicurio-studio-auth

## Building the image

docker build -t="apicurio/apicurio-studio-auth-quarkus" --rm .
docker build -t="apicurio/apicurio-studio-auth" --rm .

## Pushing the image to Docker Hub

docker push apicurio/apicurio-studio-auth-quarkus
docker push apicurio/apicurio-studio-auth

## How to customize the image

Expand Down
Loading