Alfresco / alfresco-docker-installer

Generator to build Docker Compose templates to deploy Alfresco Community
Other
140 stars 57 forks source link

ACA some changes not working #170

Closed SanjayBandhniya closed 1 year ago

SanjayBandhniya commented 1 year ago

I am using this application for my alfresco and alfresco content app. I have cloned https://github.com/Alfresco/alfresco-content-app and made some changes like login page,theme change and add new column in documentlibrary. Now I am deploying these code(build) using below way.content-ce is the folder where generated build is there.

 content-app:
        image: alfresco/alfresco-content-app:${ACA_TAG}
        mem_limit: 256m
        environment:
            APP_BASE_SHARE_URL: "http://${SERVER_NAME}:80/#/preview/s"
        depends_on:
            - alfresco
        volumes:
            - ./content-ce:/usr/share/nginx/html

Login page and theme changes are working but documentlibrary added column not showing. Separately I tried to deploy these changes in independent tomcat to verify then working fine but docker way not working.

aborroy commented 1 year ago

A better approach would be to build ACA Docker Image from your source code. Once that is ready, just change the content-app/image property to the new image name.