-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #150 from xenit-eu/ALFREDAPI-510_merge
Alfredapi 510 merge
- Loading branch information
Showing
30 changed files
with
221 additions
and
303 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
dependencies { | ||
baseAlfrescoWar platform("org.alfresco:acs-packaging:7.3.0.1") | ||
baseAlfrescoWar 'org.alfresco:content-services@war' | ||
} | ||
|
||
dockerAlfresco { | ||
baseImage = 'docker.xenit.eu/private/alfresco-enterprise/alfresco-repository-enterprise:7.3.0.1' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
version: '2' | ||
|
||
services: | ||
alfresco-core: | ||
image: ${DOCKER_IMAGE} | ||
ports: | ||
- "${DOCKER_IP}::8080" | ||
volumes: | ||
- alfresco:/opt/alfresco/alf_data | ||
restart: unless-stopped | ||
environment: | ||
- SOLR_HOST=solr | ||
- TERM=xterm | ||
- GLOBAL_messaging.broker.url=failover:(nio://activemq:61616)?timeout=3000&jms.useCompression=true | ||
- GLOBAL_localTransform.core-aio.url=http://transform-core-aio:8090/ | ||
|
||
solr: | ||
image: hub.xenit.eu/alfresco-enterprise/alfresco-solr6:2.0.1 | ||
volumes: | ||
- solr:/opt/alfresco/alf_data | ||
restart: unless-stopped | ||
environment: | ||
- ALFRESCO_HOST=alfresco-core | ||
|
||
postgresql: | ||
image: docker.io/xenit/postgres | ||
volumes: | ||
- postgres:/var/lib/postgresql/data | ||
environment: | ||
- POSTGRES_USER=alfresco | ||
- POSTGRES_PASSWORD=admin | ||
- POSTGRES_DB=alfresco | ||
restart: unless-stopped | ||
|
||
activemq: | ||
image: alfresco/alfresco-activemq:5.16.1 | ||
mem_limit: 1g | ||
|
||
transform-core-aio: | ||
image: alfresco/alfresco-transform-core-aio:2.5.0 | ||
environment: | ||
JAVA_OPTS: " -Xms256m -Xmx512m" | ||
ACTIVEMQ_URL: "nio://activemq:61616" | ||
|
||
volumes: | ||
alfresco: | ||
solr: | ||
postgres: |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
description = "Xenit API-X implementation Alfresco 7.3" | ||
|
||
ext { | ||
alfresco_version = alfresco_73_version | ||
alfresco_repo_version = '17.175' | ||
alfresco_dm_version = alfresco_73_dm_version | ||
alfresco_min_version = "7.3" | ||
//Not setting alfresco_max_version here to make it easier to test on next Alfresco version (only for latest version) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.