Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 1.25 KB

File metadata and controls

41 lines (30 loc) · 1.25 KB

data-processing-module

Module for computing the domains' Confidence Score from the bid-requests received by the scoring-module.

Running nameles with docker-compose

The complete system in the same compose

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

Each container from different compose files

  1. Create the nameles-net network in docker:
sudo docker network create --subnet 172.20.0.0/24 --gateway 172.20.0.1 nameles-net
  1. Run docker-compose for the three nameles modules in the following order:
  2. data-processing-module
  3. scoring-module
  4. dsp-emulator
sudo docker-compose -f <module-path>/docker-compose.yml up --force-recreate
  1. 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