I'm trying to bring up datahub by quickstart.sh, b...
# troubleshoot
g
I'm trying to bring up datahub by quickstart.sh, but need to change the port of dathub-gms from 8080 to 8082 (since other service has taken the port). How should I modify
Copy code
docker-compose-without-neo4j.quickstart.yml
g
You can likely set the env variable:
DATAHUB_GMS_PORT
, and all the locations that variable is referenced in the quickstart/docker.env files
m
Actually there is a simpler solution:
Copy code
DATAHUB_MAPPED_GMS_PORT=8082 datahub docker quickstart
you don't need to change the docker files
Will add this to the docs