The current deployment Dockerfile contains this
CMD ["sh","-c","dgraph zero --my=0.0.0.0:5080 & dgraph alpha --my=0.0.0.0:7080 --zero=0.0.0.0:5080"]
However since Heroku dynamically allocates ports, they recommend the $PORT variable. But when substituted, all the ports get the same number.
Is there anyway to have more than one $PORT?