David Alger

Results 43 comments of David Alger

@macieklewkowicz Interesting…Think I'm going to look at addressing this in context of #82.

> the value of status can change on the API side without intervention from Terraform Understand this, both status and annotations frequently change after initial resource creation, especially for objects...

Apart from changing lines like this: ``` image: docker.io/wardenenv/php-fpm:${PHP_VERSION:-7.4}${WARDEN_SVC_PHP_VARIANT:-}-blackfire ``` to something like: ``` image: ${WARDEN_SVC_PHP_BLACKFIRE_IMAGE:-docker.io/wardenenv/php-fpm}:${PHP_VERSION:-7.4}${WARDEN_SVC_PHP_VARIANT:-}-blackfire ``` so the image name could be overridden (would still require the same tagging...

How is what this adds any different than steps 1 and 2 further up the page (https://deploy-preview-533--warden-docs.netlify.app/configuration/multipledomains#multiple-domains)?

@Vinai Given the work @lbajsarowicz has done to implement and document (https://docs.warden.dev/configuration/magento2-testing.html) support for testing using an additional database container, what are you thoughts on this? Is there still a...

That makes sense, and appreciate the input. I'll keep this open until it can be implemented. Another probable scenario is some may not have enough available memory to run the...

The global services which `warden svc up` starts each have by default a restart policy of `always` to [start automatically](https://docs.docker.com/config/containers/start-containers-automatically/) whenever the docker daemon restarts. In my experience this has...

@navarr Transferred this into the Warden issue tracker. The upstream base PHP images don't provide Xdebug, it's layered into the Warden images via the Dockerfiles in here. It seems what...

This is a difference due to how volumes are handled on Darwin hosts. On Linux, everything in `/var/www/html` is mounted into the container. On Mac `/var/www/html` is a docker volume...

Worth mentioning that Elasticsearch 7.16 and 7.17 will be supported by 2.4.4 and 2.4.5 respectively as well per the M2 release notes, so it should work just fine with an...