Compare commits
14 Commits
propagate/
...
acs-jscons
Author | SHA1 | Date | |
---|---|---|---|
3957262e74 | |||
cbbf9c8c9a | |||
fa1c51c08c | |||
1050ccbf5c | |||
8c7e433358 | |||
3a2220d215 | |||
f0713c90dd | |||
0332838752 | |||
35e15a1735 | |||
979924957c | |||
2a4b61053d | |||
b8016f4ac7 | |||
aeb3fe5b62 | |||
4ff7371d19 |
@@ -10,7 +10,7 @@ COPY tomcat-platform-context.xml ${TOMCAT_DIR}/conf/Catalina/localhost/alfresco.
|
|||||||
COPY *.amp ${TOMCAT_DIR}/amps/
|
COPY *.amp ${TOMCAT_DIR}/amps/
|
||||||
|
|
||||||
RUN java -jar ${TOMCAT_DIR}/alfresco-mmt/alfresco-mmt*.jar install ${TOMCAT_DIR}/amps ${TOMCAT_DIR}/webapps/alfresco -nobackup -directory && \
|
RUN java -jar ${TOMCAT_DIR}/alfresco-mmt/alfresco-mmt*.jar install ${TOMCAT_DIR}/amps ${TOMCAT_DIR}/webapps/alfresco -nobackup -directory && \
|
||||||
mkdir -p ${TOMCAT_DIR}/modules && \
|
mkdir -p ${TOMCAT_DIR}/modules/platform && \
|
||||||
cat /tmp/catalina.policy.ext >> ${TOMCAT_DIR}/conf/catalina.policy
|
cat /tmp/catalina.policy.ext >> ${TOMCAT_DIR}/conf/catalina.policy
|
||||||
|
|
||||||
USER ${USERNAME}
|
USER ${USERNAME}
|
||||||
|
@@ -1,7 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" ?>
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
<Context>
|
<Context>
|
||||||
<Resources>
|
<Resources>
|
||||||
<PreResources base="${catalina.base}/modules" className="org.apache.catalina.webresources.DirResourceSet" webAppMount="/WEB-INF/lib" readOnly="true" />
|
<PreResources base="${catalina.base}/modules/platform" className="org.apache.catalina.webresources.DirResourceSet" webAppMount="/WEB-INF/lib" readOnly="true" />
|
||||||
</Resources>
|
</Resources>
|
||||||
</Context>
|
</Context>
|
||||||
|
|
||||||
|
@@ -6,5 +6,5 @@ COPY tomcat-share-context.xml ${TOMCAT_DIR}/conf/Catalina/localhost/share.xml
|
|||||||
COPY *.amp ${TOMCAT_DIR}/amps_share/
|
COPY *.amp ${TOMCAT_DIR}/amps_share/
|
||||||
|
|
||||||
RUN java -jar ${TOMCAT_DIR}/alfresco-mmt/alfresco-mmt*.jar install ${TOMCAT_DIR}/amps_share ${TOMCAT_DIR}/webapps/share -nobackup -directory && \
|
RUN java -jar ${TOMCAT_DIR}/alfresco-mmt/alfresco-mmt*.jar install ${TOMCAT_DIR}/amps_share ${TOMCAT_DIR}/webapps/share -nobackup -directory && \
|
||||||
mkdir -p ${TOMCAT_DIR}/modules
|
mkdir -p ${TOMCAT_DIR}/modules/share
|
||||||
|
|
||||||
|
@@ -1,7 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" ?>
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
<Context>
|
<Context>
|
||||||
<Resources>
|
<Resources>
|
||||||
<PreResources base="${catalina.base}/modules" className="org.apache.catalina.webresources.DirResourceSet" webAppMount="/WEB-INF/lib" readOnly="true" />
|
<PreResources base="${catalina.base}/modules/share" className="org.apache.catalina.webresources.DirResourceSet" webAppMount="/WEB-INF/lib" readOnly="true" />
|
||||||
</Resources>
|
</Resources>
|
||||||
</Context>
|
</Context>
|
||||||
|
|
||||||
|
@@ -46,10 +46,11 @@ services:
|
|||||||
- postgres-acs
|
- postgres-acs
|
||||||
- activemq
|
- activemq
|
||||||
volumes:
|
volumes:
|
||||||
- "./alfresco-content-repository/modules:/usr/local/tomcat/modules:ro"
|
- "./alfresco-content-repository/modules:/usr/local/tomcat/modules/platform:ro"
|
||||||
|
|
||||||
transform-core-aio:
|
transform-core-aio:
|
||||||
image: alfresco/alfresco-transform-core-aio:2.3.6
|
image: alfresco/alfresco-transform-core-aio:2.3.6
|
||||||
|
mem_limit: 1g
|
||||||
|
|
||||||
share:
|
share:
|
||||||
build: ./alfresco-share/docker
|
build: ./alfresco-share/docker
|
||||||
@@ -68,11 +69,11 @@ services:
|
|||||||
-Dalfresco.protocol=${PROXY_PROTOCOL}
|
-Dalfresco.protocol=${PROXY_PROTOCOL}
|
||||||
"
|
"
|
||||||
volumes:
|
volumes:
|
||||||
- "./alfresco-share/modules:/usr/local/tomcat/modules:ro"
|
- "./alfresco-share/modules:/usr/local/tomcat/modules/share:ro"
|
||||||
|
|
||||||
postgres-acs:
|
postgres-acs:
|
||||||
image: postgres:11.7
|
image: postgres:11.7
|
||||||
mem_limit: 512m
|
mem_limit: 128m
|
||||||
environment:
|
environment:
|
||||||
- POSTGRES_PASSWORD=alfresco
|
- POSTGRES_PASSWORD=alfresco
|
||||||
- POSTGRES_USER=alfresco
|
- POSTGRES_USER=alfresco
|
||||||
@@ -81,7 +82,7 @@ services:
|
|||||||
|
|
||||||
search:
|
search:
|
||||||
image: alfresco/alfresco-search-services:2.0.1
|
image: alfresco/alfresco-search-services:2.0.1
|
||||||
mem_limit: 2g
|
mem_limit: 1g
|
||||||
environment:
|
environment:
|
||||||
- SOLR_ALFRESCO_HOST=platform
|
- SOLR_ALFRESCO_HOST=platform
|
||||||
- SOLR_ALFRESCO_PORT=8080
|
- SOLR_ALFRESCO_PORT=8080
|
||||||
@@ -92,11 +93,12 @@ services:
|
|||||||
|
|
||||||
activemq:
|
activemq:
|
||||||
image: alfresco/alfresco-activemq:5.15.8
|
image: alfresco/alfresco-activemq:5.15.8
|
||||||
mem_limit: 256m
|
mem_limit: 512m
|
||||||
|
|
||||||
proxy:
|
proxy:
|
||||||
build: ./nginx-ingress
|
build: ./nginx-ingress
|
||||||
image: local/nginx-ingress:acs-share
|
image: local/nginx-ingress:acs-share
|
||||||
|
mem_limit: 256m
|
||||||
ports:
|
ports:
|
||||||
- 8080:8080
|
- 8080:8080
|
||||||
depends_on:
|
depends_on:
|
||||||
|
Reference in New Issue
Block a user