UNCLASSIFIED

README.md 2.11 KB
Newer Older
sean.melissari's avatar
sean.melissari committed
1 2 3
# Keycloak

This is derived from [jboss/keycloak](https://hub.docker.com/r/jboss/keycloak)
Humberto Ojeda's avatar
Humberto Ojeda committed
4

sean.melissari's avatar
sean.melissari committed
5
More information: [keycloak-containers](https://github.com/keycloak/keycloak-containers)
Humberto Ojeda's avatar
Humberto Ojeda committed
6 7 8 9

## Running the container

In order to run the container, enter the following command: `podman run -d -p 8080:8080 <image name>.  Please see full Keycloak documentation for more information: https://www.keycloak.org/documentation.html.
evan.rush's avatar
evan.rush committed
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35


# Keycloak

Keycloak is an Open Source Identity and Access Management solution for modern Applications and Services.

This repository contains the source code for the Keycloak Server, Java adapters and the JavaScript adapter.


## Help and Documentation

* [Documentation](https://www.keycloak.org/documentation.html)
* [User Mailing List](https://groups.google.com/d/forum/keycloak-user) - Mailing list for help and general questions about Keycloak
* [JIRA](https://issues.jboss.org/projects/KEYCLOAK) - Issue tracker for bugs and feature requests


## Reporting Security Vulnerabilities

If you've found a security vulnerability, please look at the [instructions on how to properly report it](http://www.keycloak.org/security.html)


## Reporting an issue

If you believe you have discovered a defect in Keycloak please open an issue in our [Issue Tracker](https://issues.jboss.org/projects/KEYCLOAK).
Please remember to provide a good summary, description as well as steps to reproduce the issue.

sean.melissari's avatar
sean.melissari committed
36
## [Keycloak Public Repo](https://github.com/keycloak/keycloak)
sean.melissari's avatar
sean.melissari committed
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53

## Notes

Support for the following databases have been removed from the ironbank image.

* h2 (embedded)
* MySQL

Users may add support for MySQL by extending the image:
```
ENV JDBC_MYSQL_VERSION 8.0.19
RUN mkdir -p /opt/jboss/keycloak/modules/system/layers/base/com/mysql/jdbc/main && \
    cd /opt/jboss/keycloak/modules/system/layers/base/com/mysql/jdbc/main && \
    curl -O https://repo1.maven.org/maven2/mysql/mysql-connector-java/$JDBC_MYSQL_VERSION/mysql-connector-java-$JDBC_MYSQL_VERSION.jar && \
    cp /opt/jboss/tools/databases/mysql/module.xml . && \
    sed "s/JDBC_MYSQL_VERSION/$JDBC_MYSQL_VERSION/" /opt/jboss/tools/databases/mysql/module.xml > module.xml
```