{"id":37619813,"url":"https://github.com/cbdq-io/docker-avro-tools","last_synced_at":"2026-01-16T10:37:10.272Z","repository":{"id":114467572,"uuid":"594668933","full_name":"cbdq-io/docker-avro-tools","owner":"cbdq-io","description":"Make avro-tools available via a Docker container.","archived":false,"fork":false,"pushed_at":"2025-01-11T12:37:26.000Z","size":48,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2025-01-11T13:37:58.184Z","etag":null,"topics":["apache-avro","docker","hacktoberfest"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cbdq-io.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-01-29T09:12:07.000Z","updated_at":"2025-01-11T12:37:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"53b597c4-e6f3-4e2a-a519-e8030e02421e","html_url":"https://github.com/cbdq-io/docker-avro-tools","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/cbdq-io/docker-avro-tools","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cbdq-io%2Fdocker-avro-tools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cbdq-io%2Fdocker-avro-tools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cbdq-io%2Fdocker-avro-tools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cbdq-io%2Fdocker-avro-tools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cbdq-io","download_url":"https://codeload.github.com/cbdq-io/docker-avro-tools/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cbdq-io%2Fdocker-avro-tools/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28478050,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T06:30:42.265Z","status":"ssl_error","status_checked_at":"2026-01-16T06:30:16.248Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["apache-avro","docker","hacktoberfest"],"created_at":"2026-01-16T10:37:10.113Z","updated_at":"2026-01-16T10:37:10.204Z","avatar_url":"https://github.com/cbdq-io.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# docker-avro-tools\n\n[![Pipeline](https://github.com/cbdq-io/docker-avro-tools/actions/workflows/pipeline.yml/badge.svg)](https://github.com/cbdq-io/docker-avro-tools/actions/workflows/pipeline.yml)\n\nMake [avro-tools](https://avro.apache.org/docs/1.12.0/getting-started-java/)\navailable via a Docker container.\n\n## Example\n\nSay we have a file called `tests/resources/AccountService.avdl` that contains\nthe following IDL code:\n\n```\n@namespace(\"org.sample\")\nprotocol AccountService {\n\n    record Account {\n    long id;\n    string name;\n    union {null, string} description = null;\n    }\n\n    Account addAccount(string name, union {null, string} description);\n}\n```\n\nThen running the following command:\n\n```shell\ndocker run \\\n  --rm \\\n  --volume \"$( pwd )/tests/resources:/mnt/idl\" \\\n  --volume /tmp:/mnt/schemas \\\n  ghcr.io/cbdq-io/avro-tools:1.12.0 \\\n  idl2schemata /mnt/idl/AccountService.avdl /mnt/schemas\n```\n\nwill create a file called `/tmp/Account.avsc` with the following contents:\n\n```json\n{\n  \"type\" : \"record\",\n  \"name\" : \"Account\",\n  \"namespace\" : \"org.sample\",\n  \"fields\" : [ {\n    \"name\" : \"id\",\n    \"type\" : \"long\"\n  }, {\n    \"name\" : \"name\",\n    \"type\" : \"string\"\n  }, {\n    \"name\" : \"description\",\n    \"type\" : [ \"null\", \"string\" ],\n    \"default\" : null\n  } ]\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcbdq-io%2Fdocker-avro-tools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcbdq-io%2Fdocker-avro-tools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcbdq-io%2Fdocker-avro-tools/lists"}