容器未连接到网络lando_bridge_network

时间:2018-10-02 14:13:52

标签: docker drupal-8 lando

我正在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

1 个答案:

答案 0 :(得分:0)

在建立AWS Elasticsearch时遇到了这个问题。

在终端中尝试以下操作:

docker network connect lando_bridge_network <container ID in error message>

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