e-ucm / rage-analytics

RAGE Analytics Environment
https://youtu.be/xKrsoi-L5Vo
Apache License 2.0
16 stars 11 forks source link

front and teas do not register to a2 #70

Open imartinezortiz opened 4 years ago

imartinezortiz commented 4 years ago

There is an issue in the docker-compose that avoids front to register into a2.

front:
  environment:
    - A2_PORT=tcp://a2:3000
...
teas:
  environment:
    - A2_PORT=tcp://a2:3000

to

front:
  environment:
    - A2_PORT=http://a2:3000
...
teas:
  environment:
    - A2_PORT=http://a2:3000

Also makes sense too to verify and modify the rest of URL to use the proper protocol.