Compare commits
35 Commits
acs-ext-pl
...
acs-ext-sh
Author | SHA1 | Date | |
---|---|---|---|
b86dd34b55 | |||
23b3057329 | |||
b009fa9219 | |||
936e6ad134 | |||
fcd1262721 | |||
d7de714eeb | |||
4ff7371d19 | |||
|
a41c084c9f | ||
|
bf09b85448 | ||
f49ea55a48 | |||
3ef69c527b | |||
e582744e6c | |||
4afdf95b44 | |||
31eaf8c7c2 | |||
89ffe20aee | |||
14a4c09f4d | |||
f2ac689f85 | |||
2367651a7e | |||
b8b267d4c5 | |||
68fcb3cbef | |||
4381a2d350 | |||
486ff23ce4 | |||
bdef8c6b7f | |||
4b9900a7fd | |||
b9f0597020 | |||
18839c8019 | |||
8a29bded24 | |||
cb04027103 | |||
893f9cf7a8 | |||
ff5442c869 | |||
4cb5100065 | |||
c084972d39 | |||
72f7960369 | |||
00e0a17249 | |||
bfa65c999e |
1
.env
1
.env
@@ -8,3 +8,4 @@ PROXY_PORT=8080
|
||||
ACS_TAG=7.4.1.1
|
||||
AAMQ_TAG=latest
|
||||
POSTGRES_TAG=13
|
||||
ACS_SHARE_TAG=7.4.1.2
|
||||
|
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.
|
@@ -19,6 +19,9 @@ services:
|
||||
JAVA_OPTS: "
|
||||
-Ddb.driver=org.postgresql.Driver
|
||||
-Ddb.url=jdbc:postgresql://postgres-acs:5432/alfresco
|
||||
-Dshare.host=${PROXY_HOST}
|
||||
-Dshare.port=${PROXY_PORT}
|
||||
-Dshare.protocol=${PROXY_PROTOCOL}
|
||||
-Dalfresco.host=${PROXY_HOST}
|
||||
-Dalfresco.port=${PROXY_PORT}
|
||||
-Dalfresco.protocol=${PROXY_PROTOCOL}
|
||||
@@ -28,6 +31,27 @@ services:
|
||||
- postgres-acs
|
||||
- activemq
|
||||
|
||||
share:
|
||||
build:
|
||||
context: ./alfresco-share/docker
|
||||
args:
|
||||
ACS_SHARE_TAG: ${ACS_SHARE_TAG}
|
||||
image: local/alfresco-share:latest
|
||||
environment:
|
||||
REPO_HOST: "platform"
|
||||
CSRF_FILTER_REFERER: "${PROXY_PROTOCOL}://${PROXY_HOST}(:${PROXY_PORT})?/?.*"
|
||||
CSRF_FILTER_ORIGIN: "${PROXY_PROTOCOL}://${PROXY_HOST}(:${PROXY_PORT})?"
|
||||
JAVA_OPTS: "
|
||||
-Dshare.host=${PROXY_HOST}
|
||||
-Dshare.port=${PROXY_PORT}
|
||||
-Dshare.protocol=${PROXY_PROTOCOL}
|
||||
-Dalfresco.host=${PROXY_HOST}
|
||||
-Dalfresco.port=${PROXY_PORT}
|
||||
-Dalfresco.protocol=${PROXY_PROTOCOL}
|
||||
"
|
||||
volumes:
|
||||
- "./alfresco-share/modules:/usr/local/tomcat/modules/share:ro"
|
||||
|
||||
postgres-acs:
|
||||
image: postgres:${POSTGRES_TAG}
|
||||
|
||||
@@ -36,8 +60,9 @@ services:
|
||||
|
||||
proxy:
|
||||
build: ./nginx-ingress
|
||||
image: local/nginx-ingress:acs
|
||||
image: local/nginx-ingress:acs-share
|
||||
ports:
|
||||
- 8080:8080
|
||||
depends_on:
|
||||
- platform
|
||||
- share
|
||||
|
@@ -4,6 +4,10 @@ if [[ $ACS_PLATFORM_URL ]]; then
|
||||
sed -i s%http:\/\/platform:8080%"$ACS_PLATFORM_URL"%g /etc/nginx/nginx.conf
|
||||
fi
|
||||
|
||||
if [[ $ACS_SHARE_URL ]]; then
|
||||
sed -i s%http:\/\/share:8080%"$ACS_SHARE_URL"%g /etc/nginx/nginx.conf
|
||||
fi
|
||||
|
||||
if [[ $ACCESS_LOG ]]; then
|
||||
sed -i s%\#ENV_ACCESS_LOG%"access_log $ACCESS_LOG;"%g /etc/nginx/nginx.conf
|
||||
fi
|
||||
|
@@ -48,5 +48,12 @@ http {
|
||||
# If using external proxy / load balancer (for initial redirect if no trailing slash)
|
||||
absolute_redirect off;
|
||||
}
|
||||
|
||||
location /share/ {
|
||||
proxy_pass http://share:8080;
|
||||
|
||||
# If using external proxy / load balancer (for initial redirect if no trailing slash)
|
||||
absolute_redirect off;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user