Docker CMDBuild 2.5 with Shark Workflow
git clone https://github.com/mkaskov/cmdbuild_docker.git
cd cmdbuild_docker
docker network create network1
docker build dockerfile_cmdbuild/ -t cmdbuild_tomcat
docker run --name cmdbuild_tomcat --net=network1 -p 8080:8080 -d cmdbuild_tomcat
docker run --name cmdbuild_postgres --net=network1 -e POSTGRES_PASSWORD=YOUR_POSTGRES_PASSWORD -p 55432:5432 -d postgres:9.3
Then open http://localhost:8080/cmdbuild/ and configure cmdbuild app
- Host: cmdbuild_postgres
- Port: 5432
- Username: postgres
- Password: YOUR_POSTGRES_PASSWORD
After finish configuration cmdbuild app and swith-on workflow in admin menu you need to restart docker with tomcat
docker restart cmdbuild_tomcat
Optionally you can use pgAdmin4 docker:
docker run --name pgadmin4 --net=network1 -p 5050:5050 -d thajeztah/pgadmin4
After that you can open pgAdmin4 http://localhost:5050