https://github.com/igor-vovk/connect-conformance-dockerimage
Connect Conformance packed as Docker Image
https://github.com/igor-vovk/connect-conformance-dockerimage
conformance connectrpc
Last synced: 4 months ago
JSON representation
Connect Conformance packed as Docker Image
- Host: GitHub
- URL: https://github.com/igor-vovk/connect-conformance-dockerimage
- Owner: igor-vovk
- License: apache-2.0
- Created: 2025-06-05T06:38:53.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-06-05T13:58:49.000Z (12 months ago)
- Last Synced: 2025-07-05T03:38:29.957Z (11 months ago)
- Topics: conformance, connectrpc
- Language: Dockerfile
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Connect Conformance Docker Image
[](https://github.com/igor-vovk/connect-conformance-dockerimage/actions/workflows/docker-publish.yml)
A multi-architecture Docker image for Connect RPC conformance testing. This repository packages
the [Connect RPC conformance](https://github.com/connectrpc/conformance) tool into a Docker image available on GitHub
Container Registry.
## Features
- Pre-packaged Connect RPC conformance testing tool
- Multi-architecture support (Linux amd64/arm64)
- Automated builds via GitHub Actions
- Available on GitHub Container Registry
## Usage
### Pull the image
```bash
docker pull ghcr.io/igor-vovk/connect-conformance-dockerimage:latest
```
Or with a specific version:
```bash
docker pull ghcr.io/igor-vovk/connect-conformance-dockerimage:v1.0.0
```
### Run the conformance tool
```bash
docker run --rm ghcr.io/igor-vovk/connect-conformance-dockerimage:latest /conformance/connectconformance [options]
```
Replace `[options]` with the appropriate options for the conformance test you want to run.
## Multi-architecture Support
This image is built for multiple architectures:
- Linux amd64
- Linux arm64
You can pull the appropriate image for your architecture automatically with Docker's multi-arch support.
## Development
### Building Locally
To build the image locally:
```bash
docker build -t connect-conformance-local .
```
### Testing the Image
To test the image locally:
```bash
docker run --rm connect-conformance-local /conformance/connectconformance --version
```
## License
This project is licensed under the terms of the LICENSE file included in this repository.