mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
* ACS-6303 Implement JIT User Provisioning * ACS-6303 Fix AuthenticationsTest * ACS-6303 Add IT test * ACS-6303 Fix syntax * ACS-6303 Revert local change * ACS-6303 Update IDS version * ACS-6303 Fix JITProvisioning IT test execution * ACS-6303 Add new IT scenario * ACS-6303 Remove AppContext05TestSuite-setup.sh + optimize calling UserInfoEndpoint * ACS-6303 Fix PMD issues * ACS-6303 Fix property name * ACS-6303 Change getUserInfo return type * Apply suggestions from code review Co-authored-by: Domenico Sibilio <domenicosibilio@gmail.com> * ACS-6303 Move var declaration + use lambda+diamond operator * ACS-6303 Add a small optimisation --------- Co-authored-by: Domenico Sibilio <domenicosibilio@gmail.com>
71 lines
2.5 KiB
YAML
71 lines
2.5 KiB
YAML
version: "3"
|
|
|
|
services:
|
|
transform-core-aio:
|
|
profiles: ["with-transform-core-aio"]
|
|
image: alfresco/alfresco-transform-core-aio:${TRANSFORMERS_TAG}
|
|
environment:
|
|
JAVA_OPTS: " -Xms256m -Xmx256m"
|
|
ports:
|
|
- "8090:8090"
|
|
postgres:
|
|
image: postgres:15.4
|
|
profiles: ["default", "with-transform-core-aio", "postgres", "with-mtls-transform-core-aio", "with-ids"]
|
|
environment:
|
|
- POSTGRES_PASSWORD=alfresco
|
|
- POSTGRES_USER=alfresco
|
|
- POSTGRES_DB=alfresco
|
|
command: postgres -c max_connections=300
|
|
ports:
|
|
- "5433:5432"
|
|
activemq:
|
|
profiles: ["default", "with-transform-core-aio", "activemq", "with-mtls-transform-core-aio", "with-ids"]
|
|
image: alfresco/alfresco-activemq:5.18.3-jre17-rockylinux8
|
|
ports:
|
|
- "5672:5672" # AMQP
|
|
- "61616:61616" # OpenWire
|
|
mtls-transform-core-aio:
|
|
profiles: ["with-mtls-transform-core-aio"]
|
|
image: quay.io/alfresco/alfresco-transform-core-aio:${TRANSFORMERS_TAG}
|
|
hostname: transform-core-aio
|
|
ports:
|
|
- 8090:8090
|
|
volumes:
|
|
- ${CI_WORKSPACE}/keystores/tengineAIO/tengineAIO.truststore:/tengineAIO.truststore
|
|
- ${CI_WORKSPACE}/keystores/tengineAIO/tengineAIO.keystore:/tengineAIO.keystore
|
|
environment:
|
|
ACTIVEMQ_URL: "nio://activemq:61616"
|
|
ACTIVEMQ_USER: "admin"
|
|
ACTIVEMQ_PASSWORD: "admin"
|
|
LOG_LEVEL: debug
|
|
|
|
SERVER_SSL_ENABLED: "true"
|
|
SERVER_SSL_KEY_PASSWORD: "password"
|
|
SERVER_SSL_KEY_STORE: "file:/tengineAIO.keystore"
|
|
SERVER_SSL_KEY_STORE_PASSWORD: "password"
|
|
SERVER_SSL_KEY_STORE_TYPE: "JCEKS"
|
|
|
|
SERVER_SSL_CLIENT_AUTH: "need"
|
|
SERVER_SSL_TRUST_STORE: "file:/tengineAIO.truststore"
|
|
SERVER_SSL_TRUST_STORE_PASSWORD: "password"
|
|
SERVER_SSL_TRUST_STORE_TYPE: "JCEKS"
|
|
|
|
CLIENT_SSL_KEY_STORE: "file:/tengineAIO.keystore"
|
|
CLIENT_SSL_KEY_STORE_PASSWORD: "password"
|
|
CLIENT_SSL_KEY_STORE_TYPE: "JCEKS"
|
|
|
|
CLIENT_SSL_TRUST_STORE: "file:/tengineAIO.truststore"
|
|
CLIENT_SSL_TRUST_STORE_PASSWORD: "password"
|
|
CLIENT_SSL_TRUST_STORE_TYPE: "JCEKS"
|
|
alfresco-identity-service:
|
|
profiles: ["with-ids"]
|
|
image: quay.io/alfresco/alfresco-identity-service:2.0.0
|
|
environment:
|
|
- KEYCLOAK_ADMIN=admin
|
|
- KEYCLOAK_ADMIN_PASSWORD=admin
|
|
- KC_DB=dev-mem
|
|
command: ["start-dev", "--import-realm", "--http-relative-path=/auth", "--hostname=localhost", "--http-enabled=true"]
|
|
volumes:
|
|
- ../../../repository/src/test/resources/realms/alfresco-realm.json:/opt/keycloak/data/import/alfresco-realm.json
|
|
ports:
|
|
- 8999:8080 |