Skip to content

Commit

Permalink
Merge pull request #1 from kpn/fix/new-org
Browse files Browse the repository at this point in the history
fix: move to new kpnnl org
  • Loading branch information
woile authored Mar 16, 2023
2 parents 08b8929 + 505a2e4 commit 90cc70e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ jobs:
build-args: |
AVRO_VERSION=${{ github.event.inputs.version }}
tags: |
kpnnv/avro-tools:latest
kpnnv/avro-tools:${{ github.event.inputs.version }}
kpnnl/avro-tools:latest
kpnnl/avro-tools:${{ github.event.inputs.version }}
- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
short-description: ${{ github.event.repository.description }}
repository: "kpnnv/avro-tools"
repository: "kpnnl/avro-tools"
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Docker-avro-tools

![Docker Image Version (latest by date)](https://img.shields.io/docker/v/kpnnv/avro-tools?label=latest%20version)
![Docker Image Version (latest by date)](https://img.shields.io/docker/v/kpnnl/avro-tools?label=latest%20version)

Container image for [avro-tools](https://avro.apache.org/docs/1.11.1/getting-started-java/#serializing-and-deserializing-with-code-generation)

Expand Down Expand Up @@ -38,7 +38,7 @@ Check for new versions:
### Pull image

```sh
docker pull kpnnv/avro-tools:1.10.0
docker pull kpnnl/avro-tools:1.10.0
```

### AVDL to AVSC conversion example
Expand All @@ -47,7 +47,7 @@ Use to validate avro json schemas:

```sh
docker run --rm --user="$(id -u)" -v "$(pwd)":/avro \
kpnnv/avro-tools:1.10.0 \
kpnnl/avro-tools:1.10.0 \
idl2schemata {file}.avdl {target-folder}
```

Expand All @@ -56,7 +56,7 @@ docker run --rm --user="$(id -u)" -v "$(pwd)":/avro \
Use to validate avro json schemas:

```sh
docker run --rm kpnnv/avro-tools
docker run --rm kpnnl/avro-tools
```

## Acknowledgments
Expand Down
2 changes: 1 addition & 1 deletion scripts/build
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh -e

docker build -t avro-tools:latest -t kpnnv/avro-tools:1.10.0 -t kpnnv/avro-tools:latest .
docker build -t avro-tools:latest -t kpnnl/avro-tools:1.10.0 -t kpnnl/avro-tools:latest .
2 changes: 1 addition & 1 deletion scripts/publish
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh -e

docker push kpnnv/avro-tools --all-tags
docker push kpnnl/avro-tools --all-tags

0 comments on commit 90cc70e

Please sign in to comment.