vttranlina commented on code in PR #1565: URL: https://github.com/apache/james-project/pull/1565#discussion_r1198472716
########## examples/oidc/apisix-lemonldap-ldap/docker-compose.yml: ########## @@ -0,0 +1,103 @@ +version: "3" + +services: + apisix: + container_name: apisix.example.com + image: linagora/apisix:3.2.0-debian-javaplugin + volumes: + - ./apisix/conf/apisix.yaml:/usr/local/apisix/conf/apisix.yaml + - ./apisix/conf/config.yaml:/usr/local/apisix/conf/config.yaml + networks: + - james + ports: + - "9080:9080/tcp" + + james: + depends_on: + - ldap + networks: + - james + image: apache/james:memory-latest + container_name: james + hostname: james.local + command: + - --generate-keystore + volumes: + - ./james/usersrepository.xml:/root/conf/usersrepository.xml + - ./james/jmap.properties:/root/conf/jmap.properties + ports: + - "8000:8000" + healthcheck: + test: ["CMD", "curl", "-f", "http://james:8000/domains"] + + llngdb: + image: yadd/lemonldap-ng-pg-database + container_name: llngdb + environment: + - POSTGRES_PASSWORD=zz + healthcheck: + test: "exit 0" + volumes: + - "./lemonldap/lmConf-1.json:/llng-conf/conf.json" + networks: + - james + + sso.example.com: + image: yadd/lemonldap-ng-full Review Comment: Then we need to rewrite the new plugin for handler RPC request from keycloak channel logout -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
