Compare commits
112 Commits
acs-mysql-
...
propagate/
Author | SHA1 | Date | |
---|---|---|---|
|
947a48dc90 | ||
|
c2e962a2be | ||
|
f52aee275e | ||
|
c2c340f61e | ||
c9d1646933 | |||
|
230e7fcf5e | ||
|
180e642ce3 | ||
|
38def362f6 | ||
|
f3d3293e9e | ||
|
b6f2befafb | ||
|
c11990900c | ||
|
e07cea5ffa | ||
|
29f4ca7c54 | ||
|
73fea3d13d | ||
|
2c82f844b1 | ||
|
b805fbbd1a | ||
|
910cc2e2cb | ||
|
b7c883068a | ||
|
f10722dec9 | ||
|
ec00d1a445 | ||
39928d09fc | |||
9859e68fe8 | |||
4dccd7892f | |||
|
df5d011a3a | ||
6471292c34 | |||
7114bb5de1 | |||
5ea48c405f | |||
|
e0df60bc8b | ||
|
8b21dcd843 | ||
|
e222fc3fba | ||
|
a140d6806f | ||
3b5fc8c096 | |||
|
6eeef4cfbe | ||
41858ebddb | |||
fd30fd4555 | |||
5788051f22 | |||
d4616bfdb2 | |||
b534456065 | |||
|
3409eb4eec | ||
ac7e691100 | |||
15ccb5642b | |||
4349851dd9 | |||
de8920ba0b | |||
28e32e34a2 | |||
c7378dd9c2 | |||
6c5f4493dc | |||
4f3da7361a | |||
53404852e1 | |||
75743d2391 | |||
9b3ba22ca1 | |||
76dc8c7ad9 | |||
b024fd8d7e | |||
8a36f91d06 | |||
6a8b1e2628 | |||
932159b238 | |||
135739da10 | |||
a56556b596 | |||
0a0cb15580 | |||
d3b41dcc46 | |||
f1a47aa620 | |||
37de03317b | |||
dc9fb0abfa | |||
68dc071342 | |||
78ec9c2a94 | |||
cafee75cdc | |||
3d06a59303 | |||
ccbe4de116 | |||
5c25ab9d3d | |||
02a2ec72c0 | |||
b47583a716 | |||
720346e9d7 | |||
68e0652872 | |||
b81db4fc0f | |||
c377995a1d | |||
e223fd99a3 | |||
5beadf9f35 | |||
89eec1edec | |||
3db235a532 | |||
24337f3a13 | |||
04988e43dd | |||
f94f3e82e8 | |||
cb5d306478 | |||
abaa41345a | |||
b1f3b14846 | |||
04f44ef280 | |||
56492a45c8 | |||
f46dacad9d | |||
0488b3402d | |||
ce9b143fb5 | |||
fad6fe1c2a | |||
2789af0bd7 | |||
91da0dedb6 | |||
8d3c4987f0 | |||
0b507962fa | |||
f73fdbb5ea | |||
f239550be7 | |||
3b631bcd87 | |||
e5824d17e1 | |||
5cd3530ef0 | |||
d6f1c99c79 | |||
6d35ffa551 | |||
6c739c5795 | |||
b9fb8971dd | |||
487a677f6f | |||
0608045c1b | |||
8296a96294 | |||
79ef1f5868 | |||
8c480402ed | |||
4f036e530b | |||
6858d201c2 | |||
89626fcd1d | |||
c1323a8171 |
@@ -5,7 +5,7 @@ version: "2"
|
||||
|
||||
services:
|
||||
platform:
|
||||
image: alfresco/alfresco-content-repository-community:6.2.0-ga
|
||||
image: alfresco/alfresco-content-repository:6.2.2.3
|
||||
mem_limit: 1700m
|
||||
environment:
|
||||
JAVA_OPTS: "
|
||||
@@ -35,7 +35,18 @@ services:
|
||||
-Dcsrf.filter.enabled=false
|
||||
-XX:MinRAMPercentage=50 -XX:MaxRAMPercentage=80
|
||||
|
||||
-Dtransform.service.enabled=false
|
||||
-Dtransform.service.enabled=true
|
||||
-Dlocal.transform.service.enabled=false
|
||||
|
||||
-Dtransform.service.url=http://transform-router:8095
|
||||
-Dsfs.url=http://shared-file-store:8099
|
||||
-Dalfresco-pdf-renderer.url=http://transform-engine-aio:8090
|
||||
-Djodconverter.url=http://transform-engine-aio:8090
|
||||
-Dimg.url=http://transform-engine-aio:8090
|
||||
-Dtika.url=http://transform-engine-aio:8090
|
||||
-Dtransform.misc.url=http://transform-engine-aio:8090
|
||||
|
||||
-Ddsync.service.uris=${PROXY_PROTOCOL}://${PROXY_HOST}:${PROXY_PORT}/sync
|
||||
|
||||
-Dsystem.content.eagerOrphanCleanup=true
|
||||
-Dsystem.content.orphanProtectDays=0
|
||||
@@ -44,9 +55,34 @@ services:
|
||||
depends_on:
|
||||
- postgres-acs
|
||||
- activemq
|
||||
- shared-file-store
|
||||
volumes:
|
||||
- "$ALFRESCO_LICENSE_DIR/acs:/usr/local/tomcat/shared/classes/alfresco/extension/license:ro"
|
||||
- acsbin-volume:/usr/local/tomcat/alf_data:rw
|
||||
|
||||
transform-router:
|
||||
image: quay.io/alfresco/alfresco-transform-router:1.3.1
|
||||
environment:
|
||||
ACTIVEMQ_URL: "nio://activemq:61616"
|
||||
CORE_AIO_URL : "http://transform-core-aio:8090"
|
||||
FILE_STORE_URL: "http://shared-file-store:8099/alfresco/api/-default-/private/sfs/versions/1/file"
|
||||
depends_on:
|
||||
- activemq
|
||||
- shared-file-store
|
||||
|
||||
transform-core-aio:
|
||||
image: alfresco/alfresco-transform-core-aio:2.3.6
|
||||
environment:
|
||||
ACTIVEMQ_URL: "nio://activemq:61616"
|
||||
FILE_STORE_URL: "http://shared-file-store:8099/alfresco/api/-default-/private/sfs/versions/1/file"
|
||||
depends_on:
|
||||
- activemq
|
||||
- shared-file-store
|
||||
|
||||
shared-file-store:
|
||||
image: alfresco/alfresco-shared-file-store:0.10.0
|
||||
volumes:
|
||||
- shared-file-store-volume:/tmp/Alfresco/sfs
|
||||
|
||||
share:
|
||||
image: alfresco/alfresco-share:6.2.2
|
||||
@@ -72,6 +108,8 @@ services:
|
||||
- POSTGRES_USER=alfresco
|
||||
- POSTGRES_DB=alfresco
|
||||
command: postgres -c max_connections=300 -c log_min_messages=LOG
|
||||
volumes:
|
||||
- acsdb-volume:/var/lib/postgresql/data:rw
|
||||
|
||||
search:
|
||||
image: alfresco/alfresco-search-services:2.0.1
|
||||
@@ -83,16 +121,63 @@ services:
|
||||
- SOLR_SOLR_PORT=8983
|
||||
- SOLR_CREATE_ALFRESCO_DEFAULTS=alfresco,archive
|
||||
- ALFRESCO_SECURE_COMMS=none
|
||||
volumes:
|
||||
- solrindex-volume:/opt/alfresco-search-services/data:rw
|
||||
|
||||
activemq:
|
||||
image: alfresco/alfresco-activemq:5.15.8
|
||||
mem_limit: 256m
|
||||
volumes:
|
||||
- activemq-volume:/opt/activemq/data:rw
|
||||
|
||||
sync:
|
||||
image: quay.io/alfresco/service-sync:3.3.3.1
|
||||
mem_limit: 512m
|
||||
environment:
|
||||
JAVA_OPTS : "
|
||||
-Dsql.db.driver=org.postgresql.Driver
|
||||
-Dsql.db.url=jdbc:postgresql://postgres-acs:5432/alfresco
|
||||
-Dsql.db.username=alfresco
|
||||
-Dsql.db.password=alfresco
|
||||
-Dmessaging.broker.host=activemq
|
||||
-Drepo.hostname=platform
|
||||
-Drepo.port=8080
|
||||
-Ddw.server.applicationConnectors[0].type=http
|
||||
-XX:MinRAMPercentage=50 -XX:MaxRAMPercentage=80
|
||||
"
|
||||
depends_on:
|
||||
- postgres-acs
|
||||
- activemq
|
||||
|
||||
digital-workspace:
|
||||
image: quay.io/alfresco/alfresco-digital-workspace:2.0.0-adw
|
||||
mem_limit: 128m
|
||||
environment:
|
||||
BASE_PATH: ./
|
||||
APP_CONFIG_ECM_HOST: "${PROXY_PROTOCOL}://${PROXY_HOST}:${PROXY_PORT}"
|
||||
APP_BASE_SHARE_URL: "${PROXY_PROTOCOL}://${PROXY_HOST}:${PROXY_PORT}/#/preview/s"
|
||||
|
||||
proxy:
|
||||
build: ./nginx-ingress
|
||||
image: local/nginx-ingress:acs-share
|
||||
image: local/nginx-ingress:acs-sync-share-adw
|
||||
ports:
|
||||
- 8080:8080
|
||||
depends_on:
|
||||
- platform
|
||||
- sync
|
||||
- share
|
||||
- digital-workspace
|
||||
|
||||
volumes:
|
||||
shared-file-store-volume:
|
||||
driver_opts:
|
||||
type: tmpfs
|
||||
device: tmpfs
|
||||
acsbin-volume:
|
||||
driver: local
|
||||
acsdb-volume:
|
||||
driver: local
|
||||
activemq-volume:
|
||||
driver: local
|
||||
solrindex-volume:
|
||||
driver: local
|
||||
|
@@ -4,10 +4,18 @@ if [[ $ACS_PLATFORM_URL ]]; then
|
||||
sed -i s%http:\/\/platform:8080%"$ACS_PLATFORM_URL"%g /etc/nginx/nginx.conf
|
||||
fi
|
||||
|
||||
if [[ $ACS_SYNC_URL ]]; then
|
||||
sed -i s%http:\/\/sync:9090%"$ACS_SYNC_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 [[ $ADW_URL ]]; then
|
||||
sed -i s%http:\/\/digital-workspace:8080%"$ADW_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
|
||||
|
@@ -49,11 +49,22 @@ http {
|
||||
absolute_redirect off;
|
||||
}
|
||||
|
||||
location /sync/ {
|
||||
proxy_pass http://sync:9090/alfresco/;
|
||||
}
|
||||
|
||||
location /share/ {
|
||||
proxy_pass http://share:8080;
|
||||
|
||||
# If using external proxy / load balancer (for initial redirect if no trailing slash)
|
||||
absolute_redirect off;
|
||||
}
|
||||
|
||||
location /workspace/ {
|
||||
proxy_pass http://digital-workspace:8080/;
|
||||
|
||||
# If using external proxy / load balancer (for initial redirect if no trailing slash)
|
||||
absolute_redirect off;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user