ohsu-comp-bio / g2p-aggregator

Associations of genomic features, drugs and diseases

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

api port issue during installation

cmouden opened this issue · comments

commented

Hi,
I am trying to install g2p aggregator on Mac but I am not used to docker and elastic search.
I get the following issue when I try to launch the docker compose :

ERROR: The Compose file './docker-compose-aws.yml' is invalid because:
services.api.ports is invalid: Invalid port ":", should be [[remote_ip:]remote_port[-remote_port]:]port[/protocol]

How can I resolve that ?

Thanks,

Charlotte

Hi @cmouden. Are you using the instructions for starting up the docker container? It looks like this error might be caused by omitting the ELASTIC_PORT and KIBANA_PORT env variables. You may optionally set these globally in your environment.

commented

Hi Charlotte,

You mentioned that you're running this locally, on your mac? Assuming you've got docker installed and running on your local machine, you will want to use the standard docker-compose (not the aws / Amazon Web Services one):

ELASTIC_PORT=9200 KIBANA_PORT=5601 docker-compose up -d

Do you still get the same error when running the above command?