Alfresco / alfresco-docker-installer

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

Add a Docker Volume for ActiveMQ #113

Closed OpenPj closed 2 years ago

OpenPj commented 2 years ago

It could be useful to also have a volume for the ActiveMQ data folder, this will make the docker-compose template pretty close to a production ready configuration.

OpenPj commented 2 years ago

I think that it should be enough something like the following:

activemq:
        image: alfresco/alfresco-activemq:${ACTIVEMQ_TAG}
        mem_limit: 1g
        ports:
            - 8161:8161
        volumes:
            - ./data/activemq-data:/opt/activemq/data
aborroy commented 2 years ago

Solved by https://github.com/Alfresco/alfresco-docker-installer/pull/115