Skip to content
This repository has been archived by the owner on Aug 22, 2019. It is now read-only.

DenysVuika/alfresco-identity-service

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Alfresco Identity Service (POC)

Provides a universal docker image that can be used across different setups.

Based on the jboss/keycloak image, all parameters and environment variables are supported.

Contents:

The realm file is already included into the image, but you can customise it by providing external configuration file.

Building image

npm run build

Running container

npm start

Visit http://localhost:8081 to see the instance up and running. Visit http://localhost:8081/auth/realms/alfresco/account to check the theme.

Running with docker-compose

docker-compose up

Visit http://localhost:8081 to see the instance up and running. Visit http://localhost:8081/auth/realms/alfresco/account to check the theme.

Running from command line

docker run --rm -p 8081:8080 && \
    -e KEYCLOAK_USER=admin && \
    -e KEYCLOAK_PASSWORD=admin && \
    -e KEYCLOAK_IMPORT=/tmp/alfresco-realm.json && \
    alfresco/identity-service

Integrating with existing docker-compose

auth:
    image: denysvuika/alfresco-identity-service:latest
    environment:
        - KEYCLOAK_USER=admin
        - KEYCLOAK_PASSWORD=admin
        - KEYCLOAK_IMPORT=/tmp/alfresco-realm.json
        - DB_VENDOR=h2
    ports:
        - 8081:8080

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published