web_only のブートストラップに失敗:CID ファイルが存在しないが、完全に新しいビルドです

こんにちは、

data.yml と web_only.yml の設定ファイルを使用して、Discourse の最初のビルドを行っています。現在、実行中のコンテナはなく、以前に web_only コンテナが実行されたこともありません。data.yml は正常にブートストラップされますが、web_only.yml では以下のエラーが発生します。

root@debian:/var/discourse# ./launcher bootstrap web_only
cd /pups && git pull && /pups/bin/pups --stdin
/usr/bin/docker: Error response from daemon: could not get container for data: No such container: data.
See '/usr/bin/docker run --help'.
cat: cids/web_only_bootstrap.cid: No such file or directory
"docker rm" requires at least 1 argument.
See 'docker rm --help'.

Usage:  docker rm [OPTIONS] CONTAINER [CONTAINER...] [flags]

Remove one or more containers
rm: cannot remove 'cids/web_only_bootstrap.cid': No such file or directory
** FAILED TO BOOTSTRAP ** please scroll up and look for earlier error messages, there may be more than one

これは、以前に実行されていた web_only コンテナから cid ファイルが存在することを想定しているのでしょうか?

ご助言をいただけますと幸いです。
よろしくお願いいたします。

You need to build the data container first.

cheers, I already had the container built but not actually started. Once I started the container I could build the web_only container.