Compare commits
15 Commits
propagate/
...
acs-ext-sh
Author | SHA1 | Date | |
---|---|---|---|
b86dd34b55 | |||
936e6ad134 | |||
4ff7371d19 | |||
|
a41c084c9f | ||
f49ea55a48 | |||
e582744e6c | |||
31eaf8c7c2 | |||
14a4c09f4d | |||
486ff23ce4 | |||
bdef8c6b7f | |||
b9f0597020 | |||
18839c8019 | |||
8a29bded24 | |||
cb04027103 | |||
893f9cf7a8 |
11
alfresco-share/docker/Dockerfile
Normal file
11
alfresco-share/docker/Dockerfile
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
ARG ACS_SHARE_TAG=inject-it
|
||||||
|
FROM alfresco/alfresco-share:${ACS_SHARE_TAG}
|
||||||
|
|
||||||
|
ARG TOMCAT_DIR=/usr/local/tomcat
|
||||||
|
|
||||||
|
COPY tomcat-share-context.xml ${TOMCAT_DIR}/conf/Catalina/localhost/share.xml
|
||||||
|
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 && \
|
||||||
|
mkdir -p ${TOMCAT_DIR}/modules/share
|
||||||
|
|
3
alfresco-share/docker/README.md
Normal file
3
alfresco-share/docker/README.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
## Usage
|
||||||
|
|
||||||
|
Download all AMP files needed into this directory. All of them will be copied into a new Docker image and installed into the Alfresco Share web application.
|
6
alfresco-share/docker/tomcat-share-context.xml
Normal file
6
alfresco-share/docker/tomcat-share-context.xml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<Context>
|
||||||
|
<Resources>
|
||||||
|
<PreResources base="${catalina.base}/modules/share" className="org.apache.catalina.webresources.DirResourceSet" webAppMount="/WEB-INF/lib" readOnly="true" />
|
||||||
|
</Resources>
|
||||||
|
</Context>
|
3
alfresco-share/modules/README.md
Normal file
3
alfresco-share/modules/README.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
## Usage
|
||||||
|
|
||||||
|
Download all JAR module files needed into this directory. All of them will be dynamically loaded into the Docker container and loaded into the Alfresco Share web application.
|
@@ -32,7 +32,11 @@ services:
|
|||||||
- activemq
|
- activemq
|
||||||
|
|
||||||
share:
|
share:
|
||||||
image: alfresco/alfresco-share:${ACS_SHARE_TAG}
|
build:
|
||||||
|
context: ./alfresco-share/docker
|
||||||
|
args:
|
||||||
|
ACS_SHARE_TAG: ${ACS_SHARE_TAG}
|
||||||
|
image: local/alfresco-share:latest
|
||||||
environment:
|
environment:
|
||||||
REPO_HOST: "platform"
|
REPO_HOST: "platform"
|
||||||
CSRF_FILTER_REFERER: "${PROXY_PROTOCOL}://${PROXY_HOST}(:${PROXY_PORT})?/?.*"
|
CSRF_FILTER_REFERER: "${PROXY_PROTOCOL}://${PROXY_HOST}(:${PROXY_PORT})?/?.*"
|
||||||
@@ -45,6 +49,8 @@ services:
|
|||||||
-Dalfresco.port=${PROXY_PORT}
|
-Dalfresco.port=${PROXY_PORT}
|
||||||
-Dalfresco.protocol=${PROXY_PROTOCOL}
|
-Dalfresco.protocol=${PROXY_PROTOCOL}
|
||||||
"
|
"
|
||||||
|
volumes:
|
||||||
|
- "./alfresco-share/modules:/usr/local/tomcat/modules/share:ro"
|
||||||
|
|
||||||
postgres-acs:
|
postgres-acs:
|
||||||
image: postgres:${POSTGRES_TAG}
|
image: postgres:${POSTGRES_TAG}
|
||||||
|
Reference in New Issue
Block a user