There are two ways to run system
Simplest way
This way is optimal for newbie and needs only superficial knowledge in system administration.
1. If you have no installed docker desktop, download and install it from official site
2. Download last version archive with docker from Files.
These files have names like docker-{VERSION}.zip
.
Unpack downloaded archive.
Folder docker inside unpacked archive we will call DLP_DOCKER
3. Download last version of application from Files.
These files have names like dlp-{VERSION}.war
.
Rename downloaded file to dlp.war
and move it into folder DLP_DOCKER
.
4. In the folder DLP_DOCKER
you can find a file ".env".
Open it and edit environment variables. This step is very important for correct work of system!
5. Go to the folder DLP_DOCKER
and start Database from console with command docker-compose up db
.
Wait for database successfully started!
6. Go to the folder DLP_DOCKER
and start Application Server with command docker-compose up --build app-server
In future you can stop both Database an Application Server with command docker-compose stop
and start them with command docker-compose start
.
Experts way
This way is more difficult and needs deep knowledge in system administartion.
Application is contained in file dlp-{VERSION}.war
and need next software for correct work:
1. Wildfly Application Server 21.0.2.Final
2. MySQL 8.0.22 database
To be continued...