{"id":31287878,"url":"https://github.com/leplusorg/docker-adoc","last_synced_at":"2026-05-15T21:02:32.738Z","repository":{"id":316098459,"uuid":"1061418818","full_name":"leplusorg/docker-adoc","owner":"leplusorg","description":"Multi-platform Docker container with utilities to process AsciiDoc files (asciidoc, a2x, ascidoctor...).","archived":false,"fork":false,"pushed_at":"2025-09-22T16:15:43.000Z","size":31,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-22T18:34:19.405Z","etag":null,"topics":["asciidoc","asciidoctor","asciidoctor-converter","docker","docker-container","docker-image","dockerfile"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/leplusorg/adoc","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/leplusorg.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-21T21:33:26.000Z","updated_at":"2025-09-22T07:36:43.000Z","dependencies_parsed_at":"2025-09-22T18:34:28.480Z","dependency_job_id":"36c009e2-497c-4a2c-9da9-d6fbb496e71b","html_url":"https://github.com/leplusorg/docker-adoc","commit_stats":null,"previous_names":["leplusorg/docker-adoc"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/leplusorg/docker-adoc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leplusorg%2Fdocker-adoc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leplusorg%2Fdocker-adoc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leplusorg%2Fdocker-adoc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leplusorg%2Fdocker-adoc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/leplusorg","download_url":"https://codeload.github.com/leplusorg/docker-adoc/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leplusorg%2Fdocker-adoc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":276738703,"owners_count":25695963,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-24T02:00:09.776Z","response_time":97,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["asciidoc","asciidoctor","asciidoctor-converter","docker","docker-container","docker-image","dockerfile"],"created_at":"2025-09-24T11:28:45.857Z","updated_at":"2026-05-15T21:02:32.720Z","avatar_url":"https://github.com/leplusorg.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AsciiDoc\n\nMulti-platform Docker container with utilities to process AsciiDoc files (`asciidoc`, `a2x`, `ascidoctor`...).\n\n[![Dockerfile](https://img.shields.io/badge/GitHub-Dockerfile-blue)](adoc/Dockerfile)\n[![Docker Build](https://github.com/leplusorg/docker-adoc/workflows/Docker/badge.svg)](https://github.com/leplusorg/docker-adoc/actions?query=workflow:\"Docker\")\n[![Docker Stars](https://img.shields.io/docker/stars/leplusorg/adoc)](https://hub.docker.com/r/leplusorg/adoc)\n[![Docker Pulls](https://img.shields.io/docker/pulls/leplusorg/adoc)](https://hub.docker.com/r/leplusorg/adoc)\n[![Docker Version](https://img.shields.io/docker/v/leplusorg/adoc?sort=semver)](https://hub.docker.com/r/leplusorg/adoc)\n[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/10081/badge)](https://bestpractices.coreinfrastructure.org/projects/11218)\n[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/leplusorg/docker-adoc/badge)](https://securityscorecards.dev/viewer/?uri=github.com/leplusorg/docker-adoc)\n\n## Example without using the filesystem\n\nLet's say that you want to convert an AsciiDoc file input.adoc in your current working directory to HTML:\n\n**Mac/Linux**\n\n```bash\ncat input.adoc | docker run --rm -i --net=none leplusorg/adoc asciidoctor -o - - \u003e output.html\n```\n\n**Windows**\n\n```batch\ntype input.adoc | docker run --rm -i --net=none leplusorg/adoc asciidoctor -o - - \u003e output.html\n```\n\n## Example using the filesystem\n\nSame thing, assuming that you want to convert an AsciiDoc file input.adoc in your current working directory to HTML:\n\n**Mac/Linux**\n\n```bash\ndocker run --rm -t --user=\"$(id -u):$(id -g)\" --net=none -v \"$(pwd):/tmp\" leplusorg/adoc asciidoctor -o output.html input.adoc\n```\n\n**Windows**\n\nIn `cmd`:\n\n```batch\ndocker run --rm -t --net=none -v \"%cd%:/tmp\" leplusorg/adoc asciidoctor -o output.html input.adoc\n```\n\nIn PowerShell:\n\n```pwsh\ndocker run --rm -t --net=none -v \"${PWD}:/tmp\" leplusorg/adoc asciidoctor -o output.html input.adoc\n```\n\n## Software Bill of Materials (SBOM)\n\nTo get the SBOM for the latest image (in SPDX JSON format), use the\nfollowing command:\n\n```bash\ndocker buildx imagetools inspect leplusorg/adoc --format '{{ json (index .SBOM \"linux/amd64\").SPDX }}'\n```\n\nReplace `linux/amd64` by the desired platform (`linux/amd64`, `linux/arm64` etc.).\n\n## Provenance\n\nTo get the provenance for the latest image (in JSON format), use the\nfollowing command:\n\n```bash\ndocker buildx imagetools inspect leplusorg/adoc --format '{{ json .Provenance }}'\n```\n\n## Sigstore\n\n[Sigstore](https://docs.sigstore.dev) is trying to improve supply\nchain security by allowing you to verify the origin of an\nartifact. You can verify that the image that you use was actually\nproduced by this repository. This means that if you verify the\nsignature of the Docker image, you can trust the integrity of the\nwhole supply chain from code source, to CI/CD build, to distribution\non Maven Central or wherever you got the image from.\n\nYou can use the following command to verify the latest image using its\nsigstore signature attestation:\n\n```bash\ncosign verify leplusorg/adoc --certificate-identity-regexp 'https://github\\.com/leplusorg/docker-adoc/\\.github/workflows/.+' --certificate-oidc-issuer 'https://token.actions.githubusercontent.com'\n```\n\nThe output should look something like this:\n\n```text\nVerification for index.docker.io/leplusorg/xml:main --\nThe following checks were performed on each of these signatures:\n  - The cosign claims were validated\n  - Existence of the claims in the transparency log was verified offline\n  - The code-signing certificate was verified using trusted certificate authority certificates\n\n[{\"critical\":...\n```\n\nFor instructions on how to install `cosign`, please read this [documentation](https://docs.sigstore.dev/cosign/system_config/installation/).\n\n## Request new tool\n\nPlease use [this link](https://github.com/leplusorg/docker-adoc/issues/new?assignees=thomasleplus\u0026labels=enhancement\u0026template=feature_request.md\u0026title=%5BFEAT%5D) (GitHub account required) to request that a new tool be added to the image. I am always interested in adding new capabilities to these images.\n\n## Contributing\n\nPlease read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduct and the process for submitting pull requests.\n\n## Security\n\nPlease read [SECURITY.md](SECURITY.md) for details on our security policy and how to report security vulnerabilities.\n\n## Code of Conduct\n\nPlease read [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) for details on our code of conduct.\n\n## License\n\nThis project is licensed under the terms of the [LICENSE](LICENSE) file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleplusorg%2Fdocker-adoc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fleplusorg%2Fdocker-adoc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleplusorg%2Fdocker-adoc/lists"}