Questions tagged [ddev]

open source tool for setting up a local PHP development environment.

ddev is an open source tool for setting up a local PHP development environment, explicitly supporting Drupal, TYPO3, WordPress and Backdrop.

394 questions
0
votes
1 answer

DDEV and D8, httpClient used for internal request fails to connect

I've a multisite installation of Drupal 8, the "main" website expose some REST webservices, locally i've some troubles on testing them, because there's no way for the various sites to see each other, when i try to do something like that try { …
Francesco
  • 55
  • 7
0
votes
1 answer

Run yarn from Dockerfile in ddev

This is a followup to How can I add and use nvm in a DDEV web container? My dockerfile now looks like this: ARG BASE_IMAGE FROM $BASE_IMAGE ENV NVM_DIR=/usr/local/nvm ENV NODE_DEFAULT_VERSION=v8.16.1 RUN curl -sL…
Urs
  • 4,984
  • 7
  • 54
  • 116
0
votes
2 answers

How can I have multiple docroots with DDEV on apache?

In my ddev container, I configured multiple vhosts in Apache using conf files in sites-available that I added and enabled in the Dockerfile. In the docs, it is said that we should use $WEBSERVER_DOCROOT which is /var/www/html by default but this…
plancton
  • 13
  • 3
0
votes
0 answers

Failed to connect to 127.0.0.1 port 80: Connection refused ddev-router healthcheck endpoint not responding

DDEV-Local version v1.13.1 commit v1.13.1 db drud/ddev-dbserver-mariadb-10.2:v1.13.0 dba phpmyadmin/phpmyadmin:5 ddev-ssh-agent drud/ddev-ssh-agent:v1.13.0 docker …
fndtn357
  • 146
  • 5
0
votes
3 answers

In DDEV-Local v1.13+ I get API failures (SSL/TLS errors) against external sites

My DDEV-Local project accesses an external SOAP API on a server on the internet, for example "SOAP-ERROR: Parsing WSDL: Couldn't load from ...". I didn't have any trouble before upgrading to DDEV v1.13. What could the problem be here? (SOAP is just…
rfay
  • 9,963
  • 1
  • 47
  • 89
0
votes
1 answer

DDEV-Local project shows "disk full error" error but I have plenty of disk space

Windows 10 I've set up a number of local sites running with DDev however I'm now regularly running into a problem when I run DDev Composer Install I can fix this issue by running ddev composer clear-cache but that's not ideal as I have to run…
CreateSean
  • 1,286
  • 1
  • 21
  • 42
0
votes
2 answers

DDEV + NFS + Windows: nfs gives operation not supported

I have successfully installed the nfs service on Windows 10 Pro (NFS Client is activated). It was already working, but suddenly it is not working anymore. I think NFS Server/Service is successfully configured and installed. mount…
woody100
  • 1
  • 3
0
votes
1 answer

How to programmatically create symlinks in ddev?

A site (no composer, else I'd do it there) has a few symlinks inside the container that are required for it to work. How do I tell ddev to create those symlinks on ddev start? I'm sure it's right before my eyes, but I don't find it. Google gives me…
Urs
  • 4,984
  • 7
  • 54
  • 116
0
votes
1 answer

How to call a ddev web command from another one

As answered in ddev exec: command not found (.bash_aliases) shell scripts in .ddev/commands/web are fantastic. Is it also possible to call a command from another one? Like #!/bin/bash # pull prod content to…
Urs
  • 4,984
  • 7
  • 54
  • 116
0
votes
2 answers

ddev exec: command not found (.bash_aliases)

In a local ddev instance, I have added a few aliases and functions to .ddev/homeadditions/bash_aliases. For example: alias ll="ls -lhA" While ddev ssh and then ll will work, ddev exec ll returns bash: ll: command not found Failed to execute command…
Urs
  • 4,984
  • 7
  • 54
  • 116
0
votes
1 answer

ddev start - failed to load any docker-compose.*y*l files

I'm trying to work on a project that other colleagues were able to set up. My issues starts when I do ddev config and after that ddev start, the project seems to not give any issue until it throws an error like this: Failed to start my-project:…
0
votes
1 answer

DDEV Prestashop database connection

I want to install a Prestashop with DDEV, but I can't connect to database. I tried 127.0.0.1:32775 and localhost:32775, with "db" as user/db/password But I get this error: Database Server is not found. Please verify the login, password and server…
0
votes
1 answer

How to change file permissions in localhost Windows 10 pro/docker/ddev container for Drupal site?

I have installed a drupal 8.8 site using Composer on a Windows 10 pro system and docker and ddev as the development environment. The drupal site seems to be functioning normally: I see no errors in the drupal log nor when I run ddev describe. The…
femrich
  • 35
  • 1
  • 6
0
votes
0 answers

small issue with ddev - brew - docker

just set up a dev laptop but installing ddev has been problematic. followed instructions from docs.docker.com, ddev.readthedocs.com, and Mike Anello's book for DDEV LOCAL. An unusual and undocumented bit of installation is when I tried to run brew…
fndtn357
  • 146
  • 5
0
votes
1 answer

using ddev in Github actions/workflows

I have acceptance tests set up with ddev. They get run locally on ddev composer cookieman:test. I would like to use the same setup with Github actions. Did anybody have any luck with ddev in Github actions/workflow? I am getting until here where…
Jonas Eberle
  • 2,835
  • 1
  • 15
  • 25