ADITO4 is a powerful CRM software. It´s developed by ADITO Software GmbH and written in Java.
All possible environment variables with their default values are listed below.
Maximum memory allocation pool for Java (for example 2G = 2 gigabyte).
Only necessary when you use https and/or another port than 80.
example: WEBSTART_URL=https://domain.com:8443
Domain name or IP of the docker host used for adito webstart.
This is the port where you can access the ADITO4 server.
Normally there is no need to change this connection type between the ADITO4 client and ADITO4 server.
Possible values are:
- NETTY
- CLASSIC
- NIO
- STATELESS
- HTTP
Database type of the System Database
Possible values are:
- 3 (mySQL)
- 7 (Derby)
- 8 (PostgreSQL)
- 12 (MariaDB)
Name of the System Database.
Domain Name or IP of the System Database.
Port of the System Database.
User for the System Database.
Password of the user for the System Database.
System ID configured in the ADITO4 designer.
$ docker run -d --name some-mariadb -v /my/own/datadir:/var/lib/mysql -e MYSQL_DATABASE=adito4database -e MYSQL_USER=adito -e MYSQL_PASSWORD=secret -e MYSQL_ROOT_PASSWORD=secret2 mariadb:10.1
$ docker run -d --name some-adito4 -p 7779:7779 -p 8080:80 -e WEBSTART_URL="http://myserver:8080" -e WEBSTART_HOST=myserver -e SRVCONF_DATABASE=adito4database -e SRVCONF_DATABASETYP=12 -e SRVCONF_HOST=mariadb -e SRVCONF_PORT=3306 -e SRVCONF_USER=adito -e SRVCONF_PASSWORD=secret -e SRVCONF_SERVER_ID=default -e JVM_XMX=4G --link some-mariadb:mariadb adito/adito4