...
Open terminal to the OpenELIS-Global-2 directory
docker-compose up -d --build
Access the application at https://localhost:8443/OpenELIS-Global
Might need to dismiss a security warning
...
Setting Developer Enviroment with Docker Compose (Dev Setup in Docker)
Build the War file
Code Block mvn clean install -DskipTests
Start the containers to mount the locally compiled artifacts
Code Block docker-compose -f dev.docker-compose.yml up -d
Note : For Reflecting Local changes in the Running Containers ;
Any Changes to the Front-end React Source Code will be directly
Hot Reloaded in the UIFor changes to the Back-end Java Source code
Run the maven build again to re-build the War file
Code Block mvn clean install -DskipTests
Recreate the Openelis webapp container
Code Block docker-compose -f dev.docker-compose.yml up -d --no-deps --force-recreate oe.openelis.org
The Instaces can be accesed at
Instance | URL | credentials (user : password) |
---|---|---|
Legacy UI | admin: adminADMIN! | |
New React UI | admin: adminADMIN! |
Setting Developer Enviroment With Tomcat and Eclipse (Native Dev Setup )
Install Maven
Detailed instructions here
...