When I initially cloned a company repository and tried to start via ddev start I got the error message Failed waiting for web/db containers to become ready: web container failed.
The container ddev-website-web stays unhealthy. The browser page shows an error.
Error message when starting ddev laravel: "Failed waiting for web/db containers to become ready: web container failed" (zfs)
188 Views Asked by sneaky At
1
There are 1 best solutions below
Related Questions in LARAVEL
- Function in anonymous Laravel Blade component
- Composer installation fails and reverts ./composer.json and ./composer.lock to original content
- Laravel: Using belongsToMany relationship with MongoDB
- Laravel's whereBetween method not working with two timestamps
- Implementing UUID as primary key in Laravel intermediate table
- Resolving ElephantIO ServerConnectionFailureException: Error establishing connection to server
- Undefined function getAdminPanelUrlPrefix()'error in Laravel SaaS project after installing chatmessenger
- PHP Laravel SQLServer could not find driver
- Laravel installation via Composer results in connection timeout error
- Is there a way of showing content in a Statamic antlers template if a user is authenticated?
- Livewire component JS script Uncaught SyntaxError: Unexpected token
- is there a solution to run cron job command in cpanel only from my cPanel host?
- Prevent a webpage from navigating away
- Deploy Flutter and Laravel php mobile app on the host server
- Please how I fetch user account balance, withdrawals, Loans and Transactions to display in the dashboard?
Related Questions in DOCKER
- sqlplus myusername/mypassword@ORCL not working with Oracle on Docker
- Golang == Error: OCI runtime create failed: unable to start container process: exec: "./bin": stat ./bin: no such file or directory: unknown
- Only the first SQL script gets executed inside Docker Postgres container
- Retrieve the Dockerfile configuration from the Kubernetes and also change container Java parameter?
- Polars with Rust: Out of Memory Error when Processing Large Dataset in Docker Using Streaming
- Compiling eBPF program in Docker fails due to missing '__u64' type
- AttributeError: module 'numba' has no attribute 'generated_jit'
- Phoenix in a docker dev environment - generated code can't be saved from VSCode
- Docker on Multipass VMs: Connecting worker nodes to swarm results in rcp error
- Facing error in creating image of my react+vite project . Dockerfile error
- NextJS Docker build fails: fetch failed ECONNREFUSED
- Docker container unable to make HTTPS requests to external API
- Failed to connect to your instance after deploying mern app on aws ec2 instance when i try to access frontend
- Connecting to Postgres running in a Docker container using psql
- Can't connect to local postgresql server from my docker container
Related Questions in DDEV
- Modifying local DDEV Drupal settings.php for live server?
- unable to enable php-gmp for php7.4 with ddev
- Accessing webpack dev server output with specific port in ddev / docker container
- Private files in a DDEV Drupal environment
- How can I add gatsby-cli or sudo or other packages to a DDEV-Local add-on service like nodejs?
- Moving Drupal DDev containers / projects to a new computer
- DDEV to XAMPP connection configuration
- DDEV: Can't Access Site Via Hostname, hosts File Not Updated
- Projects not starting after DDEV update?
- Include css file with changing hash number via includeCss
- Vite main.js file not found error in console
- ddev snapshot fails with bash "Is a directory" error
- ddev and vscode for Drupal, what should I use for php.validate.executablePath?
- How to debug Behat test with Xdebug in PhpStorm?
- CORS still blocked between two DDEV sites
Related Questions in ZFS
- I would like to measure CPU usage in a function within the kernel module
- Error message when starting ddev laravel: "Failed waiting for web/db containers to become ready: web container failed" (zfs)
- How do I create zfs volumes with docker compose?
- ZFS Unknown command via ssh, but is in $PATH
- Merging two raidz1 vdevs on ZFS to have only ONE redudundant drive
- What is the fastest way to copy a block-aligned extent from one file to annother on FreeBSD & ZFS?
- Tried to get zfs to replace faulty drive but ended up in this configuration mess. How to resolve?
- Installing zfs on Docker Ubuntu jammy image
- How I do "NVMe overprovisioning"?
- How to list the features of a ZFS pool?
- ZFS: "convert" a pool into a filesystem
- ZFS how to make 'receive' create the filesystems?
- What consumes the space difference between a zpool and its contents?
- ZFS stalled, task txg_sync blocked for more than 120 seconds
- Why do these 2 ZFS pools have different allocation and capacity, even thought they have the same files?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Short answer: The error is a known problem with overlayFS on ZFS, see Moby #45890 on github
Long answer: You can check easily, if the error fits to you.
When the ddev-web container is started you can login into the container via
ddev sshthen show the user and groups of the folder/etc/apache2/sites-enabled/.If the user and group is root, there will be an
apache-Folder inside and in this folder the correct files will be inside. If you try to remove the folder withsudo rm -rf /etc/apache2/sites-enabledyou will get an errorinvalid argument.This pointed my college to this issue: issue 46640 on github
So please check, if you're using overlay mount with zfs with
docker infoThen you can use this Solution:
To avoid this error, just do like in docker docu-use zfs described.
service docker stopsudo cp -au /var/lib/docker /var/lib/docker.bkcat /proc/mounts | grep dockersudo umount /path(source: Github)/etc/docker/daemon.jsonand add{ "storage-driver": "zfs" }service docker startdocker infoshould showStorage Driver: zfssudo rm -rf /var/lib/docker.bkYour problem should be solved.