容器未连接到网络lando_bridge_network



我正在Lando为Drupal 8项目创建一个自定义服务。这是我第一次真正尝试通过 docker 撰写方法添加服务,即使在查看了 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

我在建立AWS弹性搜索时遇到了这个问题。

在终端中尝试以下操作:

docker network connect lando_bridge_network <container ID in error message>

更多信息: https://docs.docker.com/engine/reference/commandline/network_connect/#description

相关内容

  • 没有找到相关文章

最新更新