James Sansbury
James Sansbury
To elaborate, now that I'm not reading this from my phone… ;) This looks like some great work here, @davereid! The point of this drushrc snippet is simply so that...
The way it's added, it's quite tricky to remove phpdotenv from this project. It's not as simple as `composer remove vlucas/phpdotenv`.
It's actually not as simple as just that either. For the record, in case anyone is reading this that wants to remove it, here are the steps: 1. `composer remove...
Nice, that's much better @webflo! I do think that is unlikely to be people's first thought when removing it, unless they are very familiar with how Composer works.
> The question is whether that docker save and load routines can be replaced by the tools that you use to manage the docker images. Last time I checked, there...
Okay, so I investigated this again. It is possible to save the built image to docker images with docker buildx using the [`--load` option](https://docs.docker.com/engine/reference/commandline/buildx_build/#load). The limitation for my use case...
The one way I've thought about altering a multiplatform image is to run a local registry and push the multiplatform image from buildx to there, then pull the image from...
One advantage to docker buildx, is that it seems that it's possible to skip the step of docker save by using `--output type=docker,dest=-` which outputs a docker image tarball: ```...
@eazylaykzy thank you, I ended up just not using Vagrant on Mac M1, due in part to this issue but also other issues.
> If it is not maintained, are there any other options under node? I would check out [`fast-proxy`](https://www.npmjs.com/package/fast-proxy) or [`http2-proxy`](https://www.npmjs.com/package/http2-proxy). `fast-proxy` with `undici` performed better than `http2-proxy` in my benchmarks,...