Stanislav Zhuk

Results 326 comments of Stanislav Zhuk

> `docker volume rm ddev-${DDEV_SITENAME}-solr || true` I was considering programmatically removing the volume using the Go Docker API. If that doesn't work, this command would be a good fallback....

Related: - https://github.com/ddev/ddev-solr/issues/64#issuecomment-3154444730 `ddev add-on remove` should automatically remove the volume and image defined for the service.

At first I thought that escaping could be applied to `ddev exec` (including `ddev exec composer`) as well. In this case we don't need the `--raw` flag, but then I...

I updated this PR to pass `PATH` to the `docker-compose exec`. This is better than escaping. I explicitly used this condition: ```go if err == nil && path != ""...

I've been thinking about this for a while, and here's what I suggest: Using only a single `subdomain` is not flexible enough, I believe people will soon ask for more...

By the way, do we have a documented way to make a subdomain, but with additional service instead of `web`? I remember this, but in fact I never tried it,...

After googling, I found another [technique](https://medium.com/@xenmayer/composer-create-project-from-local-package-hack-29f9b5c3e9ed) which led me to: - #7274 And I see the same behavior using `packages.json`, 2.8.0 works, and 2.8.1 doesn't work.

This also works in 2.8.0, but not in 2.8.1: ``` mkdir -p library && echo '{"name":"library/package","version":"1.0.0"}' > library/composer.json composer create-project --repository '{"type":"package","package":{"name":"library/package","version":"1.0.0","dist":{"url":"library/composer.json","type":"file"}}}' library/package -vvv ``` But fails with a different...

@andypost, do you think it was caused by this PR? (by reading your comment there): - https://github.com/composer/composer/pull/12109#issuecomment-2400181869 I see that PR is a part of 2.8.0, which works fine for...