{"id":42334945,"url":"https://github.com/datacite/docker-handle","last_synced_at":"2026-01-27T14:15:05.307Z","repository":{"id":66032089,"uuid":"136601459","full_name":"datacite/docker-handle","owner":"datacite","description":"A dockerised version of the handle server","archived":false,"fork":false,"pushed_at":"2025-01-17T13:17:34.000Z","size":35,"stargazers_count":6,"open_issues_count":2,"forks_count":5,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-09-11T10:21:30.199Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/datacite.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2018-06-08T09:58:54.000Z","updated_at":"2025-01-17T13:17:36.000Z","dependencies_parsed_at":"2025-01-17T14:35:22.325Z","dependency_job_id":"cb751cba-3ff0-4ad3-a87f-2d6ec8195dcc","html_url":"https://github.com/datacite/docker-handle","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/datacite/docker-handle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/datacite%2Fdocker-handle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/datacite%2Fdocker-handle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/datacite%2Fdocker-handle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/datacite%2Fdocker-handle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/datacite","download_url":"https://codeload.github.com/datacite/docker-handle/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/datacite%2Fdocker-handle/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28814576,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T12:25:15.069Z","status":"ssl_error","status_checked_at":"2026-01-27T12:25:05.297Z","response_time":168,"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":[],"created_at":"2026-01-27T14:15:04.588Z","updated_at":"2026-01-27T14:15:05.301Z","avatar_url":"https://github.com/datacite.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Docker version of a Handle Server\n\nThis is a docker version of the handle server software at \u003chttp://www.handle.net/\u003e\nAll information for how to use a handle server should be via the handle.net\nserver documentation and support systems.\n\nThis is a docker image with an embedded configuration script that is run on docker\nstart to load default settings from environment variables.\n\n## Starting\n\nUse Docker compose to start the server.\n\n    docker compose up\n\nFor for overriding evn variables see [Environment variables in Compose](https://docs.docker.com/compose/environment-variables/).\n\n# Configuration\n\nConfiguration follows the same rules as the main handle configuration however with environments, see official documentation for more detailed configuration details.\n\n| Config                        | Default       | Required  | Description\n| ------                        | -------       | --------  | -----------\n| HANDLE_HOST_IP                | 0.0.0.0       | No        | Public handle host ip used for siteinfo\n| SERVER_ADMIN_FULL_ACCESS      | yes           | No        | Admins listed in SERVER_ADMINS will have full permissions over all handles on the server\n| SERVER_ADMINS                 | None          | No        | A list of handle admins space seperated e.g. ADMIN1 ADMIN2 ADMIN3\n| REPLICATION_ADMINS            | None          | No        | A list of handle admins for replication space seperated e.g. \"ADMIN1 ADMIN2 ADMIN3\"\n| CASE_SENSITIVE                | no            | No        | Are handles case sensitive\n| MAX_SESSION_TIME              | 86400000      | No        | Max authenticated client session time in ms.\n| MAX_AUTH_TIME                 | 60000         | No        | Max time to wait for for client to respond to auth challenge.\n| THIS_SERVER_ID                | 1             | No        | An identifier for this handle server.\n| TRACE_RESOLUTION              | no            | No        | Set to yes for debugging information to be logged for handle resolution.\n| ALLOW_LIST_HDLS               | no            | No        | Used to disable list_handles functionality.\n| ALLOW_RECURSION               | no            | No        | Allow recursive lookup outside of this handle server into global handle network.\n| SERVER_PRIVATE_KEY_PEM        | None          | Yes       | PEM PKCS8 format private key for encryption on the server.\n| SERVER_PUBLIC_KEY_PEM         | None          | Yes       | PEM PKCS8 format public key for encryption on the server.\n| STORAGE_TYPE                  | None          | No        | Empty defaults to built-in storage. Other main option is \"sql\"\n| SQL_URL                       | None          | No        | This setting should specify the JDBC URL that is used to connect to the SQL database.\n| SQL_DRIVER                    | org.mariadb.jdbc.Driver          | No        | This is the name of a Java class that contains the driver for the JDBC connection.\n| SQL_LOGIN                     | root          | No        | The user name that should be used by the handle server to connect and perform operations on the database.\n| SQL_PASSWD                    | None          | No        | The password that should be used by the handle server to connect and perform operations on the database.\n| SQL_READ_ONLY                 | no            | No        | Boolean setting for allowing writes to database or not.\n| ALLOW_NA_ADMINS               | yes           | no        | To allow global handle server admins access to this handle server.\n\n## Creating a PEM keypair\n\nThe PRIVATE_KEY and PUBLIC_KEY need to be in pksc8 format, below is an example that makes ready for usage in the environment variables\n\nGenerate keypair\n\n    ssh-keygen -m pkcs8 -f mykey.pem\n\nGet it in a format for PKCS8 and put in explicit new lines ready for env var\n\n    openssl pkcs8 -topk8 -in mykey.pem -nocrypt | sed ':a;N;$!ba;s/\\n/\\\\r\\\\n/g'\n    openssl pkcs8 -topk8 -in mykey.pem -nocrypt | openssl pkey -pubout | sed ':a;N;$!ba;s/\\n/\\\\r\\\\n/g'\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdatacite%2Fdocker-handle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdatacite%2Fdocker-handle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdatacite%2Fdocker-handle/lists"}