Stanislav Zhuk

Results 326 comments of Stanislav Zhuk

This is what we have for add-ons: https://github.com/ddev/ddev/blob/87f9a55ffcf7465b5b993068436c32729ea5f9fc/cmd/ddev/cmd/addon-get.go#L348-L371 This is what we have for providers (`$` is not escaped properly): https://github.com/ddev/ddev/blob/87f9a55ffcf7465b5b993068436c32729ea5f9fc/pkg/ddevapp/provider.go#L436-L448 And we don't have anything for custom commands. ---...

Maybe we can pre-create the folders inside `fixupComposeYaml()` by looping through all the services and finding volume folders that don't exist.

```yaml web_extra_exposed_ports: - name: storefront-watcher container_port: 9998 http_port: 9998 https_port: 9998 ## also tried 9999 ``` > The REAL problem is, that the watcher is running on https://my-shop.ddev.site:9998/, but all...

> Steps To Reproduce > Set up new shopware 6.6 project with ddev and add storefront watcher configuration @yanneckb, These steps are not enough for me, because I'm not a...

Thank you @yanneckb, I think this is the same as: - https://github.com/ddev/ddev/issues/5437#issuecomment-1905755834 Try this out, it should move things forward (it shows Shopware Domain Mapping Misconfiguration Help for me, but...

While testing - #6794 I noticed that if I override the global Traefik config in `~/.ddev/traefik` while having multiple projects running, the static config file is updated but not applied,...

Thank you! > I would love to hear from folks in non En-US environments I used only `en_US` and `C` (for time, paper, measurement) on the host, so I don't...

Hi @apotek, The default config looks compatible for me: ``` ddev add-on get ddev/ddev-redis ddev redis-backend redis:8 ddev restart ``` And Valkey is already supported in the same way. https://github.com/ddev/ddev-redis#swappable-redis-backends...

I did some manual testing, not everything is 100% compatible with `redis-server` CLI, some images want to accept config with `-c config_file.conf`, others have completely different options. This can be...