{"id":16364029,"url":"https://github.com/axelrindle/docker-registry-frontend","last_synced_at":"2026-04-04T20:33:20.840Z","repository":{"id":88187205,"uuid":"472018913","full_name":"axelrindle/docker-registry-frontend","owner":"axelrindle","description":":whale: A custom frontend for a selfhosted Docker registry.","archived":false,"fork":false,"pushed_at":"2022-04-24T13:33:00.000Z","size":3965,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-11T08:18:59.382Z","etag":null,"topics":["docker","docker-registry-ui","docker-registry-v2","react","react-router","tailwind","tailwindcss"],"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/axelrindle.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}},"created_at":"2022-03-20T15:20:48.000Z","updated_at":"2022-03-31T14:26:42.000Z","dependencies_parsed_at":null,"dependency_job_id":"69b40620-ddbb-458e-8e30-6b2d86663282","html_url":"https://github.com/axelrindle/docker-registry-frontend","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/axelrindle/docker-registry-frontend","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/axelrindle%2Fdocker-registry-frontend","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/axelrindle%2Fdocker-registry-frontend/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/axelrindle%2Fdocker-registry-frontend/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/axelrindle%2Fdocker-registry-frontend/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/axelrindle","download_url":"https://codeload.github.com/axelrindle/docker-registry-frontend/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/axelrindle%2Fdocker-registry-frontend/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31413269,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T20:09:54.854Z","status":"ssl_error","status_checked_at":"2026-04-04T20:09:44.350Z","response_time":60,"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":["docker","docker-registry-ui","docker-registry-v2","react","react-router","tailwind","tailwindcss"],"created_at":"2024-10-11T02:29:09.462Z","updated_at":"2026-04-04T20:33:20.809Z","avatar_url":"https://github.com/axelrindle.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![CI](https://github.com/axelrindle/docker-registry-frontend/actions/workflows/ci.yml/badge.svg)](https://github.com/axelrindle/docker-registry-frontend/actions/workflows/ci.yml)\n[![Codacy Badge](https://app.codacy.com/project/badge/Grade/214110a7990a49d1872f468a1b750797)](https://www.codacy.com/gh/axelrindle/docker-registry-frontend/dashboard?utm_source=github.com\u0026amp;utm_medium=referral\u0026amp;utm_content=axelrindle/docker-registry-frontend\u0026amp;utm_campaign=Badge_Grade)\n[![Codacy Badge](https://app.codacy.com/project/badge/Coverage/214110a7990a49d1872f468a1b750797)](https://www.codacy.com/gh/axelrindle/docker-registry-frontend/dashboard?utm_source=github.com\u0026utm_medium=referral\u0026utm_content=axelrindle/docker-registry-frontend\u0026utm_campaign=Badge_Coverage)\n[![DockerHub Badge](https://img.shields.io/docker/v/axelrindle/docker-registry-frontend?color=%232392e6\u0026logo=docker\u0026logoColor=%232392e6)](https://hub.docker.com/r/axelrindle/docker-registry-frontend)\n\n# docker-registry-frontend\n\n\u003e :whale: A custom frontend for a selfhosted Docker registry.\n\n## Deployment\n\nThe directory [docker/example](docker/example) contains example configuration for Docker Compose.\n\n### Docker Image\n\n```shell\ndocker pull axelrindle/docker-registry-frontend:\u003cVERSION\u003e\n```\n\nReplace `\u003cVERSION\u003e` with `latest` or any available release tag.\n\n### Configuration\n\nConfiguration is done via environment variables.\n\n#### REACT_APP_REGISTRY_API_URL\n\n**Required**\n\nSpecifies the registry endpoint to use.\n\n```properties\nREACT_APP_REGISTRY_API_URL=http://localhost:5000\n```\n\n### Volumes\n\nAll application data will be stored inside the container at `/data`. Mount a volume at that point to persist that data.\n\n### Ports\n\nThe container exposes two ports:\n\n- `80` for HTTP\n\n- `443` for HTTPS (see below)\n\n### HTTPS Connection\n\nBy default, a custom certificate is generated if none is found inside the data directory.\n\nTo use your own certificate, mount it \u0026 it's key onto the following files inside the container:\n\n- **Certificate**: `/data/ssl/server.crt`\n\n- **Key**: `/data/ssl/server.key`\n\n## Development\n\n1. Configure the application using a `.env` file.\n2. `npm install`\n3. `npm start`\n4. Navigate to `http://localhost:3000`\n\n## License\n\n[MIT](LICENSE)\n\n## Copyright Notices\n\n- [src/Moby-logo.png](src/Moby-logo.png) - [Docker Inc.](https://www.docker.com/company/newsroom/media-resources/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faxelrindle%2Fdocker-registry-frontend","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faxelrindle%2Fdocker-registry-frontend","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faxelrindle%2Fdocker-registry-frontend/lists"}