ある日突然laradockが起動しなくなった話

いつもどおりlaradockを起動しようとすると次のメッセージが出て起動しない。

why?

やったことは、dockerのアップデートが走ったぐらい。

環境は

Macbook2019

Mac OS Big Sur(11.4)

docker desktop(3.5.2)

うーん。

いろいろ調べて以下で無事起動

workspace/Dockerfile の以下をコメントアウト

# always run apt update when start and after add new source list, then clean up at end.
RUN set -xe; \
    apt-get update -yqq && \
    pecl channel-update pecl.php.net && \
    groupadd -g ${PGID} laradock && \
    useradd -u ${PUID} -g laradock -m laradock -G docker_env && \
    usermod -p "*" laradock -s /bin/bash && \
    apt-get install -yqq \
	  apt-utils ←追加
      ###apt-utils \ ←コメントアウト 
      #
      #--------------------------------------------------------------------------
      # Mandatory Software's Installation
      #--------------------------------------------------------------------------
      #
      # Mandatory Software's such as ("php-cli", "git", "vim", ....) are
      # installed on the base image 'laradock/workspace' image. If you want
      # to add more Software's or remove existing one, you need to edit the
      # base image (https://github.com/Laradock/workspace).
      #
      # next lines are here becase there is no auto build on dockerhub see https://github.com/laradock/laradock/pull/1903#issuecomment-463142846
      ###libzip-dev zip unzip \ ←コメントアウト 
      # Install the zip extension
      ###php${LARADOCK_PHP_VERSION}-zip \ ←コメントアウト 
      # nasm
      ###nasm && \ ←コメントアウト 
      ###php -m | grep -q 'zip' ←コメントアウト