thanks @Manish , what output do we expect to get from this command
docker-compose -f build.docker-compose.yml up -d --build ???
thanks @Manish , what output do we expect to get from this command
docker-compose -f build.docker-compose.yml up -d --build ???
It builds images from the source code !
Instead for development purpose try running docker compose With locally compiled Artifacts
use command `
docker-compose -f dev.docker-compose.yml up -d
`
ookay lemme do it en see
And also i see in the image you provided one of the port is already occupied kill that PID which is using that particular port(80) (if you face it again using the compiled artifacts )
sudo lsof -i :80
This command will list the processes using port 80. Look for the PID(Process ID) and then
sudo kill pid(provide the respective process id )
and after that restart the container…it might work
Which directory I am I supposed to be in ??
OpenELIS-Global-2
Always try following the readme thoroughly here
have you ran
git submodule update --init --recursive
?? run the above command in openELIS folder only ! not inside dataexport!
And also What does
mvn -v
return on your machine ??
git submodule update --init --recursive
this is the output of the above command
mvn -v , this command gives the following
Hey @tasksolver, let’s connect on Thursday during the DevCall we will catchup and discuss your issue !
noted, with thanks @Manish