Alfresco / alfresco-docker-installer

Generator to build Docker Compose templates to deploy Alfresco Community
Other
142 stars 58 forks source link

api-explorer.war not needed in CE 7.0 version #90

Closed ainsofs closed 3 years ago

ainsofs commented 3 years ago

api-explorer.war not needed in CE 7.0 version as per https://hub.alfresco.com/t5/alfresco-content-services-blog/alfresco-community-edition-7-0-release-notes/ba-p/305610#REST-API-Explorer and can be removed.

ie below can be removed from 7.0 version

# Install api-explorer webapp for REST API
ARG API_EXPLORER_TAG
ENV API_EXPLORER_TAG $API_EXPLORER_TAG
RUN yum -y update && \
 yum -y install wget && \
 yum clean all && \
 set -x \
    && wget https://artifacts.alfresco.com/nexus/service/local/repositories/releases/content/org/alfresco/api-explorer/${API_EXPLORER_TAG}/api-explorer-${API_EXPLORER_TAG}.war \
    -O /usr/local/tomcat/webapps/api-explorer.war
aborroy commented 3 years ago

Thanks for your contribution!

Removed now for 7.x releases.