我正在 Lando 中为 Drupal 8 项目创建自定义服务。这是我第一次真正尝试通过 docker compose 方法添加服务,即使查看了 Lando 文档,我也不确定自己在做什么。我的 .lando.yml 文件如下。跑步lando start
后,我得到error: (HTTP code 500) server error - container <portainer container ID> is not connected to the network lando_bridge_network
name: drupal8
recipe: drupal8
config:
php: 7.2
via: apache
webroot: web
xdebug: false
conf:
php: lando/config/php.ini
mysql: lando/config/my.cnf
services:
database:
type: mysql:5.7
pma:
type: phpmyadmin
hosts:
- database
appserver:
composer:
phpunit/phpunit: '*'
behat/behat: 3.3.1
run:
- "ln -s /usr/local/bin/composer /usr/local/bin/composer.phar"
portainer:
type: compose
services:
image: portainer/portainer
command: /opt/bin/entry_point.sh -d /data -H tcp://localhost:9001
tooling:
phpunit:
service: appserver
description: run PHPUnit- use lando phpunit
behat:
service: appserver
description: run behat- use lando behat
cmd: cd /app ; behat # Run behat from the /app directory