As a developer/deploying containers I don't want to have to look up the host IP address for docker host and add it as an environment var manually.
In issue #15 we ensured that the docker container and host were using the same hostname to access civicrm. This was a manual entry of the host docker0 ip address Which can be accessed with $ ip -4 addr show docker0 | grep -Po 'inet \K[\d.]+'
It would be better if this ip address was set automatically at docker run (docker-compose up).
As a developer/deploying containers I don't want to have to look up the host IP address for docker host and add it as an environment var manually.
In issue #15 we ensured that the docker container and host were using the same hostname to access civicrm. This was a manual entry of the host
docker0
ip address Which can be accessed with$ ip -4 addr show docker0 | grep -Po 'inet \K[\d.]+'
It would be better if this ip address was set automatically at docker run (docker-compose up).