Marudi / opencrx-docker

openCRX Dockerfiles

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

What is openCRX

openCRX is an open source CRM solution that meets the needs of organizations requiring multi-functional, enterprise-wide coordination of sales generation, sales fulfillment, marketing and service activities to customers, partners, suppliers or intermediaries.

How to use this image

Build this image

docker build -t opencrx:latest .

Run this image

docker run -d -p 8080:80 -p 8009:8009 -p 8001:8001 --name opencrx opencrx:latest

Stop container

docker stop opencrx

Start container

docker start opencrx

Inspect logs

docker logs -f opencrx
docker exec -t -i opencrx /bin/bash
docker exec -i opencrx cat /root/opt/opencrx/apache-tomee-plus-8.0.3/logs/catalina.yyyy-mm-dd.log
docker cp opencrx:/root/opt/opencrx/apache-tomee-plus-8.0.3/logs/catalina.yyyy-mm-dd.log .

How to extend this image

Here is an example of a custom Dockerfile which replaces the default tomee.xml by a custom configuration:

FROM opencrx:latest
MAINTAINER demo@opencrx.org
COPY ./tomee.xml $HOME/opt/opencrx/apache-tomee-plus-8.0.3/conf/

About

openCRX Dockerfiles

License:Other


Languages

Language:Dockerfile 98.2%Language:Shell 1.8%