{"id":18299364,"url":"https://github.com/democracyos/keycloak","last_synced_at":"2025-10-13T21:41:56.717Z","repository":{"id":69028146,"uuid":"147565100","full_name":"DemocracyOS/keycloak","owner":"DemocracyOS","description":"Keycloak wrapper for theme development","archived":false,"fork":false,"pushed_at":"2018-11-08T19:00:03.000Z","size":9108,"stargazers_count":6,"open_issues_count":0,"forks_count":22,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-06-28T11:43:00.622Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/DemocracyOS.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-09-05T18:53:18.000Z","updated_at":"2023-04-26T18:13:23.000Z","dependencies_parsed_at":null,"dependency_job_id":"2c4d210a-c124-4735-91e7-b3d21da09dd6","html_url":"https://github.com/DemocracyOS/keycloak","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/DemocracyOS/keycloak","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DemocracyOS%2Fkeycloak","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DemocracyOS%2Fkeycloak/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DemocracyOS%2Fkeycloak/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DemocracyOS%2Fkeycloak/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DemocracyOS","download_url":"https://codeload.github.com/DemocracyOS/keycloak/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DemocracyOS%2Fkeycloak/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279017051,"owners_count":26085951,"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-10-13T02:00:06.723Z","response_time":61,"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":[],"created_at":"2024-11-05T15:08:48.079Z","updated_at":"2025-10-13T21:41:56.690Z","avatar_url":"https://github.com/DemocracyOS.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DemocracyOS Docker Keycloak Image\nThis is [DemocracyOS](http://democracyos.org/) official [Keycloak](https://www.keycloak.org/) Docker image for development. It's based on [Keycloak Official Docker Image](https://hub.docker.com/r/jboss/keycloak/), starting with 4.4.0.Final version.\n\n## Quickstart\n---\n### Pull this image\n```bash\n$ sudo docker pull democracyos/keycloak:4.4.0\n```\n\n### Start keycloak\n*Nice to read multiline*\n```bash\n$ sudo docker run -d --name keycloak \\\n                  -p 8080:8080 \\\n                  -e \"KEYCLOAK_USER=democracyos\" \\\n                  -e \"KEYCLOAK_PASSWORD=democracyos\" \\\n                  -e \"KEYCLOAK_WELCOME_THEME=democracyos\" \\\n                  democracyos/keycloak:4.4.0.Final\n```\n\n*Copy \u0026 Paste friendly one-liner*\n```bash\n$ sudo docker run -d --name keycloak -p 8080:8080 -e \"KEYCLOAK_USER=democracyos\" -e \"KEYCLOAK_PASSWORD=democracyos\" -e \"KEYCLOAK_WELCOME_THEME=democracyos\" democracyos/keycloak:4.4.0.Final\n```\n\n### Access Keycloak\nBrowse to http://localhost:8080 and go to Administration Console.\n![Keycloak landing](https://raw.githubusercontent.com/DemocracyOS/keycloak/master/img/kc_1.png)\n\nLogin with user: democracyos and password: democracyos.\n![Keycloak login](https://raw.githubusercontent.com/DemocracyOS/keycloak/master/img/kc_2.png)\n\nSet DemocracyOS theme\n![Keycloak theme configuration](https://raw.githubusercontent.com/DemocracyOS/keycloak/master/img/kc_3.png)\n\n\n## Customize DemocracyOS theme\n---\nThemes are built with [Apache FreeMarker](https://freemarker.apache.org/). This keycloak docker installation is configured to instantly reflect changes in theme files for development purposes. More on this in the [Official Documentation](https://www.keycloak.org/docs/4.4/server_development/index.html#_themes).\n\nTo live edit DemocracyOS, with this repository files please run:\n\n*Nice to read multiline*\n```bash\n$ sudo docker run -d --name keycloak \\\n                  -p 8080:8080 \\\n                  -e \"KEYCLOAK_USER=democracyos\" \\\n                  -e \"KEYCLOAK_PASSWORD=democracyos\" \\\n                  -e \"KEYCLOAK_WELCOME_THEME=democracyos\" \\\n                  -v $(pwd)/democracyos:/opt/jboss/keycloak/democracyos:rw\n                  democracyos/keycloak:4.4.0.Final\n```\n\n*Copy \u0026 Paste friendly one-liner*\n```bash\n$ sudo docker run -d --name keycloak -p 8080:8080 -e \"KEYCLOAK_USER=democracyos\" -e \"KEYCLOAK_PASSWORD=democracyos\" -e \"KEYCLOAK_WELCOME_THEME=democracyos\" -v $(pwd)/democracyos:/opt/jboss/keycloak/democracyos:rw democracyos/keycloak:4.4.0.Final\n```\n\n### Docker Image files\nDemocracyOS theme files are inside `democracyos/` directory while custom configurations reside in `customization` directory. All content is copied during docker build.\n\n## Docker Environment Variables\n---\nAs seen in _Start Keycloak_ section, some variables are needed to bootstrap Keycloak. As this is an extension of the official Docker image we recommend reading through the [Official Docker Image Documentation](https://hub.docker.com/r/jboss/keycloak/). Variables shown here are:\n\n* `KEYCLOAK_USER`: set keycloak admin user. There's no default value, if it is not set then direct access to container shell is needed to use [kcadm](https://www.keycloak.org/docs/4.4/server_admin/#the-admin-cli).\n* `KEYCLOAK_PASSWORD`: set keycloak admin user password. There's no default value, if it is not set then direct access to container shell is needed to use [kcadm](https://www.keycloak.org/docs/4.4/server_admin/#the-admin-cli).\n* `KEYCLOAK_WELCOME_THEME`: specify the theme to use for welcome page (must be non empty and must match an existing theme name).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdemocracyos%2Fkeycloak","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdemocracyos%2Fkeycloak","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdemocracyos%2Fkeycloak/lists"}