mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-09-24 14:32:01 +00:00
* ACS-4653 Migrate to GHA on release/7.2.1 (#1758) * Remove travis configuration files * Added property dependency.alfresco-transform-core.version * Added github action configuration for 7.2.1 * Add missing scripts and adjust start-compose.sh * Give execution permissions to scripts * ACS-3841 Add missing logs for WebDAV TAS tests (#1629) * ACS-3841 Add missing logs * ACS-3841 Reformat code + fix grep (cherry picked from commitcdbe3292e0
) * Move ags ci getLogs script. Update badge on readme (cherry picked from commit309f6baae3
) * ACS-4653 GHA - Fix mySQL tests (#1765) * Added missing mysql params for older version. Test [db] (cherry picked from commit7a504a0292
) * Fix readme - status for 7.2.N * Update license headers * ACS-4776 Finalize deprecation of BitlyUrlShortenerImpl (#1787) (cherry picked from commit906a812ea5
) --------- Co-authored-by: Domenico Sibilio <domenicosibilio@gmail.com>
40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
version: "3"
|
|
|
|
services:
|
|
postgres:
|
|
profiles: ["postgres"]
|
|
image: postgres:${POSTGRES_VERSION}
|
|
environment:
|
|
- POSTGRES_PASSWORD=alfresco
|
|
- POSTGRES_USER=alfresco
|
|
- POSTGRES_DB=alfresco
|
|
command: postgres -c max_connections=300
|
|
ports:
|
|
- "5433:5432"
|
|
mariadb:
|
|
profiles: ["mariadb"]
|
|
image: mariadb:${MARIADB_VERSION}
|
|
command: --transaction-isolation=READ-COMMITTED --max-connections=300 --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=alfresco
|
|
- MYSQL_USER=alfresco
|
|
- MYSQL_DATABASE=alfresco
|
|
- MYSQL_PASSWORD=alfresco
|
|
ports:
|
|
- "3307:3306"
|
|
mysql:
|
|
profiles: ["mysql"]
|
|
image: mysql:${MYSQL_VERSION}
|
|
command: ${MYSQL_PARAMS}
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=alfresco
|
|
- MYSQL_USER=alfresco
|
|
- MYSQL_DATABASE=alfresco
|
|
- MYSQL_PASSWORD=alfresco
|
|
ports:
|
|
- "3307:3306"
|
|
activemq:
|
|
image: alfresco/alfresco-activemq:5.16.1
|
|
ports:
|
|
- "5672:5672" # AMQP
|
|
- "61616:61616" # OpenWire |