mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
* tomcat environment * disable artifact deployment for now * travis settings update * protractor settings * protractor settings * e2e fixes * e2e fixes * [ACA-1842] fix library dialog * cleanup travis settings * disable test (bug raised) * fix after rebase * fix after rebase
96 lines
2.2 KiB
YAML
96 lines
2.2 KiB
YAML
version: '3'
|
|
|
|
services:
|
|
alfresco:
|
|
image: alfresco/alfresco-content-repository-community:6.0.7-ga
|
|
depends_on:
|
|
- postgres
|
|
environment:
|
|
JAVA_OPTS: '
|
|
-Ddb.driver=org.postgresql.Driver
|
|
-Ddb.username=alfresco
|
|
-Ddb.password=alfresco
|
|
-Ddb.url=jdbc:postgresql://postgres:5432/alfresco
|
|
-Dsolr.host=solr6
|
|
-Dsolr.port=8983
|
|
-Dsolr.secureComms=none
|
|
-Dsolr.base.url=/solr
|
|
-Dindex.subsystem.name=solr6
|
|
-Dshare.host=localhost
|
|
-Ddeployment.method=DOCKER_COMPOSE
|
|
-Dcsrf.filter.enabled=false
|
|
'
|
|
networks:
|
|
- internal
|
|
ports:
|
|
- 8080:8080 #Browser port
|
|
|
|
share:
|
|
image: alfresco/alfresco-share:6.0.b
|
|
depends_on:
|
|
- alfresco
|
|
environment:
|
|
- REPO_HOST=alfresco
|
|
- REPO_PORT=8080
|
|
networks:
|
|
- internal
|
|
ports:
|
|
- 8083:8080
|
|
|
|
postgres:
|
|
image: postgres:10.1
|
|
environment:
|
|
- POSTGRES_PASSWORD=alfresco
|
|
- POSTGRES_USER=alfresco
|
|
- POSTGRES_DB=alfresco
|
|
command: postgres -c max_connections=300 -c log_min_messages=LOG
|
|
networks:
|
|
- internal
|
|
ports:
|
|
- 5432:5432
|
|
|
|
solr6:
|
|
image: alfresco/alfresco-search-services:1.1.1
|
|
depends_on:
|
|
- alfresco
|
|
environment:
|
|
#Solr needs to know how to register itself with Alfresco
|
|
- SOLR_ALFRESCO_HOST=alfresco
|
|
- SOLR_ALFRESCO_PORT=8080
|
|
#Alfresco needs to know how to call solr
|
|
- SOLR_SOLR_HOST=solr6
|
|
- SOLR_SOLR_PORT=8983
|
|
#Create the default alfresco and archive cores
|
|
- SOLR_CREATE_ALFRESCO_DEFAULTS=alfresco,archive
|
|
networks:
|
|
- internal
|
|
ports:
|
|
- 8983:8983 #Browser port
|
|
|
|
content-app:
|
|
image: alfresco/alfresco-content-app:development-latest-tomcat8
|
|
build: .
|
|
depends_on:
|
|
- alfresco
|
|
networks:
|
|
- internal
|
|
ports:
|
|
- 4001:8080
|
|
# volumes:
|
|
# - ./app.config.json:/usr/share/nginx/html/app.config.json
|
|
# - ./nginx.conf:/etc/nginx/conf.d/default.conf
|
|
|
|
proxy:
|
|
image: nginx
|
|
depends_on:
|
|
- content-app
|
|
volumes:
|
|
- ./nginx.conf:/etc/nginx/conf.d/default.conf
|
|
networks:
|
|
- internal
|
|
ports:
|
|
- 4000:80
|
|
|
|
networks:
|
|
? internal
|