About 424,000 results
Open links in new tab
  1. ddev start - "Building project images" takes forever, how can I see ...

    Mar 18, 2025 · I have a project, which is using ddev for a local development environment, to run a headless website. Running ddev start takes about 2 hours on my machine, but not for my …

  2. Docker error when installing DDEV on WSL2 "Could not connect …

    Feb 18, 2025 · If you're going to use DDEV on traditional Windows (as you show here) you need to use Docker Desktop. The DDEV in WSL2 instructions show you how to use DDEV in WSL2.

  3. DDEV Project starts up site with http instead of https

    Dec 2, 2020 · So ddev poweroff and mkcert -install and ddev start and you should see trusted https URLs. If that doesn't do it, try completely removing the mkcert CA with ddev poweroff && …

  4. DDEV: How can I add the pgvector extension to the postgres …

    Jan 19, 2024 · The main problem was, that I had to install the build-essential package. Added dbimage_extra_packages: [build-essential] in the config.yaml. And on the image you can see …

  5. How can I set environment variables inside ddev's containers?

    Apr 30, 2018 · I need to set environment variables inside ddev's web container. How can I do that? I've seen techniques that override the nginx configuration and such but that sounds too …

  6. How can I find out what's going wrong with a ddev container, or …

    Apr 4, 2018 · ddev logs -f will "follow" the web logs, so you can see what happens when you hit a particular URL. ddev logs -s db (or of course ddev logs -f -s db will show you the logs of the …

  7. drush - How can I get my ssh keys and identity into ddev's web ...

    Jun 27, 2018 · 22 DDEV supports having your ssh keys in the container without mounting them there, using an ssh-agent inside docker. You can authenticate and add your keys via ddev …

  8. How can I export a database from ddev? - Stack Overflow

    May 1, 2018 · In addition, don't forget about ddev snapshot, which is a great and quick way to make a quick dump of your db, but it's not as portable as a text-based dump. (See ddev …

  9. DDEV: Can't Access Site Via Hostname, hosts File Not Updated

    Oct 14, 2023 · I created a new DDEV project in an empty directory with ddev config. Then I used ddev start, and confirmed the project was running with ddev describe. So far so good. When I …

  10. Install a specific node version with ddev and keep in container

    May 20, 2020 · What is the recommended way to do the follwing: install a specific version of node in a ddev container so it persists (after ddev stop/start) and every user that downloads and …