{"id":23871998,"url":"https://github.com/devgine/selfsigned-certificate","last_synced_at":"2026-05-15T11:35:54.759Z","repository":{"id":232224047,"uuid":"783646606","full_name":"devgine/selfsigned-certificate","owner":"devgine","description":"A docker image that generate a TLS self signed certificates based on minica library.","archived":false,"fork":false,"pushed_at":"2024-12-24T19:06:58.000Z","size":8,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-22T19:16:06.239Z","etag":null,"topics":["docker","minica","openssl","security","ssl","ssl-certificates","tls","tls-certificates"],"latest_commit_sha":null,"homepage":"https://github.com/devgine/selfsigned-certificate","language":"Shell","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/devgine.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}},"created_at":"2024-04-08T09:48:59.000Z","updated_at":"2024-12-24T19:07:01.000Z","dependencies_parsed_at":null,"dependency_job_id":"dd6ec7a8-8ee7-4d66-9f6f-395512e5a8a3","html_url":"https://github.com/devgine/selfsigned-certificate","commit_stats":null,"previous_names":["devgine/selfsigned-certificate"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/devgine/selfsigned-certificate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgine%2Fselfsigned-certificate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgine%2Fselfsigned-certificate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgine%2Fselfsigned-certificate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgine%2Fselfsigned-certificate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devgine","download_url":"https://codeload.github.com/devgine/selfsigned-certificate/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgine%2Fselfsigned-certificate/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33065683,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T11:35:32.926Z","status":"ssl_error","status_checked_at":"2026-05-15T11:35:31.362Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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","minica","openssl","security","ssl","ssl-certificates","tls","tls-certificates"],"created_at":"2025-01-03T15:17:53.598Z","updated_at":"2026-05-15T11:35:54.741Z","avatar_url":"https://github.com/devgine.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Self-signed certificate\n\n## About\nThis a docker image useful to generate self-signed certificates\u003cbr\u003e\nThis library is based on [minica](https://github.com/jsha/minica)\u003cbr\u003e\n\n\n[View available packages](https://github.com/devgine/selfsigned-certificate/pkgs/container/selfsigned-certificate)\nBelow is the list of docker images available by PHP versions:\n\n| **Docker image tags**                         |\n|-----------------------------------------------|\n| ghcr.io/devgine/selfsigned-certificate:latest |\n| ghcr.io/devgine/selfsigned-certificate:1.0.0  |\n\n## How to use\nThis image will create the certificates in the directory `/certs`, so to have these certificate in you host machine you need to bind a volume between your target directory and the container directory `/certs`.\n\n\n### Generate a certificate\n#### For a specific domain or wildcard\n\u003e To generate a certificate for a host domain or a wildcard, use the `-d` option\n```shell\ndocker run --rm -v HOST_DIRECTORY:/certs ghcr.io/devgine/selfsigned-certificate:1.0.0 -d WWW.YOUR-DOMAIN.COM\n```\n\n```shell\ndocker run --rm -v HOST_DIRECTORY:/certs ghcr.io/devgine/selfsigned-certificate:1.0.0 -d *.YOUR-DOMAIN.COM\n```\n\n#### For an ip address\n/!\\ EXPERIMENTAL : This feature is not available yet /!\\\n\u003e To generate a certificate for an ip address, use the `-i` option\n```shell\ndocker run --rm -v HOST_DIRECTORY:/certs ghcr.io/devgine/selfsigned-certificate:1.0.0 -i IP_ADDRESS\n```\n\n#### Generate multiple certificates\nIt's also possible to generate multiple certificates in one shot\n```shell\ndocker run --rm -v HOST_DIRECTORY:/certs ghcr.io/devgine/selfsigned-certificate:1.0.0 \\\n  -d WWW.YOUR-DOMAIN.COM \\\n  -d *.WILDCARD.COM \\\n  -i IP_ADDRESS\n```\n\n### Available options\n/!\\ EXPERIMENTAL : This feature is not available yet /!\\\n\n| Option   | Type   | Default        | Description                             |\n|----------|--------|----------------|-----------------------------------------|\n| -ca-cert | string | minica.pem     | Root certificate filename, PEM encoded. |\n| -ca-key  | string | minica-key.pem | Root private key filename, PEM encoded. |\n\n\n### Checking for certificates\n```shell\nopenssl x509 -in PATH_TO_YOUR_CERTIFICATE -text -noout\n```\n\n## References\n* [minica](https://github.com/jsha/minica)\n* [check certificate openssl](https://linuxhandbook.com/check-certificate-openssl/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevgine%2Fselfsigned-certificate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevgine%2Fselfsigned-certificate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevgine%2Fselfsigned-certificate/lists"}