Reputation: 1227
I am trying to install Drupal Commerce via composer. I have finished the installation but it requires DDEV for local development server and it depends on Docker. I installed both and when i try to start server with "ddev start", i got this error message:
Starting environment for drupcom...
readlink /var/lib/docker/overlay2: invalid argument
Failed to start drupcom: Failed to run docker-compose [-f /Users/....../Documents/Projects/DrupalSites/drupcom/.ddev/docker-compose.yaml up -d], err='exit status 1', stdout='', stderr='readlink /var/lib/docker/overlay2: invalid argument'
I am using OSX El Capitan. What could be the problem?
Thanks
Upvotes: 2
Views: 2831
Reputation: 267
can you try this
docker-compose down --rmi local
docker-compose down --rmi all
docker-compose up
Upvotes: 2