Basic Docker Command for the Alfresco

List the running containers:Docker ps Find all images: Docker images Build Image from base Alfresco image Create docker file as given example below which is copying base image from quay.io and adding new share-config-custom.xml  and installing all the mmt file to the base image. FROM quay.io/alfresco/alfresco-share:7.0.0  ARG TOMCAT_DIR=/usr/local/tomcat  RUN rm -rf $TOMCAT_DIR/shared/classes/alfresco/web-extension/share-config-custom.xml  ADD share-config-custom.xml $TOMCAT_DIR/shared/classes/alfresco/web-extension … Continue reading Basic Docker Command for the Alfresco