Module for computing the domains' Confidence Score from the bid-requests received by the scoring-module.
For running the complete nameles system from the same docker-compose.yml
file.
Use as a template the nameles-docker-compose.yml
file of the dsp-emulator repository.
sudo docker-compose -f nameles-docker-compose.yml up
- Create the nameles-net network in docker:
sudo docker network create --subnet 172.20.0.0/24 --gateway 172.20.0.1 nameles-net
- Run docker-compose for the three nameles modules in the following order:
- data-processing-module
- scoring-module
- dsp-emulator
sudo docker-compose -f <module-path>/docker-compose.yml up --force-recreate
- Check the proper working of the system accessing to the database from the host
psql -h 127.0.0.1 -p 5430 -U nameles
Note that for this last step you need to have installed the postgreSQL client. In Debian/Ubuntu systems you need the postgresql-client package:
sudo apt-get install postgresql-client