Damian Mooyman

Results 138 comments of Damian Mooyman

Instructions at https://www.youtube.com/watch?v=9XUrdGh86rU

I solved this at https://github.com/webdevops/Dockerfile/issues/423#issuecomment-971105592 if that helps

Just to follow up on this, my motivation was that I wanted to run the later version of a few components (e.g. nginx), but I managed to update the current...

Well I could do it that way, but I'm just upgrading and security patching some legacy infrastructure, not redesigning it. It meets my needs. :)

This is what i used to target specific versions (using php-nginx:7.4). Sorry I haven't attempted this with alpine though. ``` RUN apt-get clean RUN apt-get update RUN curl -sL https://deb.nodesource.com/setup_14.x...

Thanks @mensinda I've been looking for this fix. :)

I suggest that instead of baking alert support directly into the DriverInterface (and thus immediately rendering all drivers inoperable), might I suggest an "optional" interface, which may be triggered for...

Thanks for this @edison ; These docs would have saved me a lot of effort if they were available earlier!

Has anyone worked around this?

You can set an extension as allowed in assets, but not as allowed_extensions for uploads. We do this for htaccess. ``` RewriteCond %{REQUEST_URI} !^[^.]*[^\\/]*\\.(?i:css|js|$Extension)$ ``` We just need to add...