How can I use this to connect to an external cloud database from the local site?
It seems like in your base docker image you have
config create:
dbhost: ${DB_HOST:-db}:3306
...
which is shown in the root run.sh.
Do i need to extend your image to overwrite this value?
I tried just replacing the DB Host env variable but I am getting database connection errors, presumably because it is still trying to use <mycloudhost>:3306 as the connection string.
Can you provide a quick tutorial for building the docker image custom?
How can I use this to connect to an external cloud database from the local site?
It seems like in your base docker image you have
which is shown in the root run.sh.
Do i need to extend your image to overwrite this value?
I tried just replacing the DB Host env variable but I am getting database connection errors, presumably because it is still trying to use
<mycloudhost>:3306as the connection string.Can you provide a quick tutorial for building the docker image custom?