wisemapping-open-source/distribution
Paulo Gustavo Veiga 8d5245da5a Fix typo
2022-02-27 15:02:18 -08:00
..
mysql-init Fix distribution creation 2022-01-22 23:50:20 -08:00
build-image.sh Add newrelic 2022-02-03 18:57:18 -08:00
Dockerfile Fix typo 2022-02-27 15:02:18 -08:00
README.md Add docker publish 2022-01-23 15:54:57 -08:00

What is WiseMapping ?

Wise Mapping is the web mind mapping open source tool that leverages the power of Mind Maps mixing open standards technologies such as SVG and React. WiseMapping is based on the same code product supporting [http://www.wisemapping.com].

How to use this image.

There are multiple ways to run WiseMapping depending on your database configuration preference

Option 1: Running HSQL within the image storage

$ docker run -it --rm -p 8080:8080 veigap/wisemapping:latest>

Then, open your browser at http://localhost:8888. A default user is available for testing test@wisemapping.com and password test.

This option, all changes will be lost once the image is stopped. Use it for testing only

Option 2: Running HSQL with mounted directory

$ docker run -it --rm -p 8080:8080 veigap/wisemapping:latest

Option 3: External MySQL/PostgreSQL

Setup database

Depending on the database your want to configure, you can create initialization scripts here

Configure application properties

The next step is configure the WiseMapping for the database and credentials. Download app.properties configuration file and configure the required sections:

$ curl 644b7078d7/wise-webapp/src/main/webapp/WEB-INF/app.properties

Starting the application

Run the application mounting your previously configured app.properties

$ docker run --mount type=bind,source=your-file-path/app.properties,target=/usr/local/tomcat/webapps/ROOT/WEB-INF/app.properties -it --rm -p 8080:8080 veigap/wisemapping:latest

Advanced configuration

Increase Tomcat memory

docker run\ --mount type=bind,source<your-file-path/app.properties,target=/usr/local/tomcat/webapps/ROOT/classes/app.properties -m 1.5GB -e JAVA_OPTS=" -XX:+PrintFlagsFinal -XX:InitialRAMPercentage=30 -XX:MaxRAMPercentage=80" -it --rm -p 8888:8080 veigap/wisemapping:latest