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

chore: Update container registry URLs #718

Merged
merged 1 commit into from
Sep 20, 2023
Merged
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: 6 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,14 @@ Using Docker
To get you up and running with the latest build of Karapace, a docker image is available::

# Fetch the latest build from main branch
docker pull ghcr.io/aiven/karapace:develop
docker pull ghcr.io/aiven-open/karapace:develop

# Fetch the latest release
docker pull ghcr.io/aiven/karapace:latest
docker pull ghcr.io/aiven-open/karapace:latest

Versions `3.7.1` and earlier are available from the `ghcr.io/aiven` registry::

docker pull ghcr.io/aiven/karapace:3.7.1

An example setup including configuration and Kafka connection is available as compose example::

Expand Down
4 changes: 2 additions & 2 deletions container/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ services:
KAFKA_ZOOKEEPER_CONNECT: "zookeeper:2181"

karapace-registry:
image: ghcr.io/aiven/karapace:develop
image: ghcr.io/aiven-open/karapace:develop
build:
context: ..
dockerfile: container/Dockerfile
Expand All @@ -80,7 +80,7 @@ services:
KARAPACE_COMPATIBILITY: FULL

karapace-rest:
image: ghcr.io/aiven/karapace:develop
image: ghcr.io/aiven-open/karapace:develop
build:
context: ..
dockerfile: container/Dockerfile
Expand Down
4 changes: 2 additions & 2 deletions website/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ Using Docker
To get you up and running with the latest build of Karapace, a docker image is available::

# Fetch the latest build from main branch
docker pull ghcr.io/aiven/karapace:develop
docker pull ghcr.io/aiven-open/karapace:develop

# Fetch the latest release
docker pull ghcr.io/aiven/karapace:latest
docker pull ghcr.io/aiven-open/karapace:latest

An example setup including configuration and Kafka connection is available as compose example::

Expand Down