You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, you must edit both config/.env and docker-compose.yml to change the port of a Docker container. This is confusing to the user (and to me, when I forget about it).
Grabbing the port from config/.env would be ideal.
Currently we have HB_ADDR=0.0.0.0:6060, which is part of what we need. We could make the 6060 part a HB_PORT variable in config/.envif Docker supports expanding env vars.
Testing it needed to ensure if this is possible.
The text was updated successfully, but these errors were encountered:
Currently, you must edit both
config/.env
anddocker-compose.yml
to change the port of a Docker container. This is confusing to the user (and to me, when I forget about it).Grabbing the port from
config/.env
would be ideal.Currently we have
HB_ADDR=0.0.0.0:6060
, which is part of what we need. We could make the6060
part aHB_PORT
variable inconfig/.env
if Docker supports expanding env vars.Testing it needed to ensure if this is possible.
The text was updated successfully, but these errors were encountered: