{"id":42651666,"url":"https://github.com/monch1962/docker-accessibility-check","last_synced_at":"2026-01-29T07:34:19.383Z","repository":{"id":83196140,"uuid":"364817411","full_name":"monch1962/docker-accessibility-check","owner":"monch1962","description":"Docker container to run Axe accessibility tests against URLs","archived":false,"fork":false,"pushed_at":"2026-01-26T00:39:49.000Z","size":408,"stargazers_count":2,"open_issues_count":26,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-26T15:50:26.264Z","etag":null,"topics":["accessibility","axe-core","docker","playwright-typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/monch1962.png","metadata":{"files":{"readme":"README.md","changelog":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-05-06T07:09:28.000Z","updated_at":"2023-10-26T14:29:55.000Z","dependencies_parsed_at":"2023-11-30T22:28:35.652Z","dependency_job_id":"416e809c-683f-4f9e-b218-cdfbad77d801","html_url":"https://github.com/monch1962/docker-accessibility-check","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/monch1962/docker-accessibility-check","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monch1962%2Fdocker-accessibility-check","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monch1962%2Fdocker-accessibility-check/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monch1962%2Fdocker-accessibility-check/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monch1962%2Fdocker-accessibility-check/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/monch1962","download_url":"https://codeload.github.com/monch1962/docker-accessibility-check/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monch1962%2Fdocker-accessibility-check/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28870465,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-29T06:56:44.678Z","status":"ssl_error","status_checked_at":"2026-01-29T06:56:35.794Z","response_time":59,"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":["accessibility","axe-core","docker","playwright-typescript"],"created_at":"2026-01-29T07:34:18.611Z","updated_at":"2026-01-29T07:34:19.373Z","avatar_url":"https://github.com/monch1962.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# docker-accessibility-check\n\n## Overview\nThis tool is designed to allow accessibility tests from Docker containers, and support pipelined accessibility testing. The data it returns (JSON and exit codes) is simple to consume using CI toolsets\n\n## Why a Docker image?\nBeing implemented as a Docker image brings advantages for CI use:\n- most CI tools have established patterns for using and consuming tools implemented as Docker images\n- there's no complex config/build/install dependencies required to use the tool; just build the Docker image on any Docker host and start using it\n- the Docker image can be versioned and stored to align with an organisation's security controls and infrastructure capability\n- a reference Docker image can be maintained in a public repository for general purpose consumption by anyone not interested in what's going on behind the scenes\n- Docker brings a level of long-term security; it's not going away as a platform any time soon\n- I can modernise how the tool works 'under the covers', even to the extent of changing languages and frameworks, without impacting anyone consuming the tool\n\n## Implementation\nLike many non-trivial open-source tools, this tool is built on top of a whole bunch of great tools:\n- Playwright (https://playwright.dev/)\n- Docker (https://docker.io)\n- TypeScript (https://www.typescriptlang.org/)\n- Node.js (https://nodejs.org/en/)\n- Axe from deque (https://www.deque.com/axe/)\n\n## Usage\n\n### To build Docker image locally\n`$ docker build -t check-accessibility .`\n\n### To run from a local copy\n`$ docker run -e URL=https://jsonplaceholder.typicode.com -v $(pwd)/results:/usr/src/app/results check-accessibility:latest`\n\nYou'll then see accessibility violations in JSON and HTML formats under the `~/results` directory\n\n### To push to GCP ECR\n`$ docker build -t check-accessibility .`\n\n`$ docker tag check-accessibility:latest gcr.io/check-accessibility/check-accessibility:0.1`\n\n`$ docker push gcr.io/check-accessibility/check-accessibility:0.1`\n\n### To pull \u0026 run from GCP ECR\n`$ docker pull gcr.io/check-accessibility/check-accessibility:0.1`\n\n`$ docker run -e URL=https://jsonplaceholder.typicode.com -v $(pwd)/results:/usr/src/app/results gcr.io/check-accessibility/check-accessibility:0.1`\n\nYou'll then see accessibility violations in JSON and HTML formats under the `~/results` directory\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmonch1962%2Fdocker-accessibility-check","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmonch1962%2Fdocker-accessibility-check","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmonch1962%2Fdocker-accessibility-check/lists"}