Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Traefik proxy compose config error on start #3098

Closed
snipebin opened this issue Aug 10, 2021 · 1 comment
Closed

Traefik proxy compose config error on start #3098

snipebin opened this issue Aug 10, 2021 · 1 comment
Labels
bug Something aint working right!

Comments

@snipebin
Copy link

snipebin commented Aug 10, 2021

Tell us about your setup

OS: macOS Big Sur 11.4 (20F71) MacBook Pro (13-inch, M1, 2020)
Lando: v3.1.4
Docker desktop: v3.5.2

Tell us about your .lando.yml

name: api
proxy:
  router:
    - api.lndo.site:8080
    - router.lndo.site:9876
# A list of environment files relative to your project's root directory.
# The env vars in these files should hold secrets and NOT be versioned.
# Each file should contain a list of KEY=VALUE pairs that will then get injected into the environment of every service.
env_file:
  # expects: SLACK_HOOK_URL, AUTOPILOT_API_KEY, SENDGRID_API_KEY, GOOGLE_CLIENT_SECRET, IDENTITY_PROVIDER_CLIENT_SECRET, SLASHQL_ADMIN_TOKEN, PIPEFY_TOKEN, FACEBOOK_API_APP_SECRET, AZURE_SUBSCRIPTION_KEY
  - lando/.env
services:
  router:
    ssl: true
    sslExpose: true
    type: compose
    services:
      image: express-gateway
      command:
        - docker-entrypoint.sh
        - "node"
        - "-e"
        - "require('express-gateway')().run();"
      ports:
        # The HTTP port
        - "8080"
        # The Web UI (enabled by --api.insecure=true)
        - "9876"
      depends_on:
        - accounts
        - auth
        - journeys
        - ecomm
      volumes:
        - 'lando/express-gateway:/var/lib/eg'

  accounts:
    build_as_root:
      - go clean --modcache
      - chmod -R 777 /go/
      - cd /opt; /bin/sh -c "git clone https://github.com/go-delve/delve; cd delve; go install github.com/go-delve/delve/cmd/dlv"
    build:
      - /bin/sh -c "GO111MODULE=off go get -u github.com/AgentCosmic/xnotify"
    type: go:1.14
    overrides:
      environment:
          ....
          ....
      depends_on:
        - pg
      ports:
        - 11001:11001
        # for debugger
        - 2341:2345
    command: |
      cd cmd/accounts
      xnotify --listen "0.0.0.0:11001" --batch 200 --trigger -- ../../lando/lando-app-start-cmd.sh
  auth:
    build_as_root:
      - go clean --modcache
      - chmod -R 777 /go/
    build:
      - /bin/sh -c "GO111MODULE=off go get -u github.com/AgentCosmic/xnotify"
    type: go:1.14
    overrides:
      environment:
          ....
          ....
      depends_on:
        - accounts
        - pg
      ports:
        - 11002:11001
    command: |
      cd cmd/authorization
      xnotify --listen "0.0.0.0:11001" --batch 200 --trigger -- ../../lando/lando-app-start-cmd.sh
  ecomm:
    build_as_root:
      - go clean --modcache
      - chmod -R 777 /go/
    build:
      - /bin/sh -c "GO111MODULE=off go get -u github.com/AgentCosmic/xnotify"
    type: go:1.14
    overrides:
      environment:
          ....
          ....
      depends_on:
        - auth
        - accounts
      ports:
        - 11003:11001
    command: |
      cd cmd/ecomm
      xnotify --listen "0.0.0.0:11001" --batch 200 --trigger -- ../../lando/lando-app-start-cmd.sh
  pg:
    type: postgres:11
    portforward: 11999
  timescale:
    type: postgres:custom
    overrides:
      # https://hub.docker.com/layers/timescale/timescaledb/latest-pg12/images/sha256-9355e54639999ee2f481e5fc3f8e5671ff35d7f9acadce6f91f9a8ce2e504298?context=explore
      image: timescale/timescaledb@sha256:9355e54639999ee2f481e5fc3f8e5671ff35d7f9acadce6f91f9a8ce2e504298
      environment:
        POSTGRES_HOST_AUTH_METHOD: trust
      command:
        - docker-entrypoint.sh
        - postgres
    portforward: 11998
  journeys:
    build_as_root:
      - go clean --modcache
      - chmod -R 777 /go/
    build:
      - /bin/sh -c "GO111MODULE=off go get -u github.com/AgentCosmic/xnotify"
    type: go:1.14
    overrides:
      environment:
          ....
          ....
      depends_on:
        - auth
        - accounts
      ports:
        - 11004:11001
    command: |
      cd cmd/journeys
      xnotify --listen "0.0.0.0:11001" --batch 200 --trigger -- ../../lando/lando-app-start-cmd.sh
  anomalies:
      build_as_root:
        - go clean --modcache
        - chmod -R 777 /go/
        - cd /opt; /bin/sh -c "git clone https://github.com/go-delve/delve; cd delve; go install github.com/go-delve/delve/cmd/dlv"
      build:
        - /bin/sh -c "GO111MODULE=off go get -u github.com/AgentCosmic/xnotify"
      type: go:1.14
      overrides:
        environment:
          ....
          ....
        depends_on:
          - accounts
          - auth
          - pg
          - timescale
        ports:
          - 11005:11001
          # for debugger
          - 2345:2345
      command: |
        cd cmd/anomalies
        xnotify --listen "0.0.0.0:11001" --batch 200 --trigger -- ../../lando/lando-app-start-cmd.sh
tooling:
  go-clean-cache:
    service: :service
    cmd: go clean -cache -modcache -i -r
    options:
      service:
        alias:
          - s
        default: auth

Tell us about the command you were running

ando restart -vvv

Tell us about the error you got

›  lando restart -vvv
lando 18:02:22 DEBUG ==> No update available. 
lando 18:02:22 VERBOSE ==> starting bootstrap at level app... 
lando 18:02:22 VERBOSE ==> config bootstrap beginning... 
lando 18:02:22 DEBUG ==> emitting event pre-bootstrap-config 
lando 18:02:22 DEBUG ==> plugin lando-core loaded from /snapshot/lando/build/cli/plugins/lando-core/index.js 
lando 18:02:22 DEBUG ==> plugin lando-events loaded from /snapshot/lando/build/cli/plugins/lando-events/index.js 
lando 18:02:22 DEBUG ==> plugin lando-networking loaded from /snapshot/lando/build/cli/plugins/lando-networking/index.js 
lando 18:02:22 DEBUG ==> plugin lando-proxy loaded from /snapshot/lando/build/cli/plugins/lando-proxy/index.js 
lando 18:02:22 DEBUG ==> plugin lando-recipes loaded from /snapshot/lando/build/cli/plugins/lando-recipes/index.js 
lando 18:02:22 DEBUG ==> plugin lando-services loaded from /snapshot/lando/build/cli/plugins/lando-services/index.js 
lando 18:02:22 DEBUG ==> plugin lando-sharing loaded from /snapshot/lando/build/cli/plugins/lando-sharing/index.js 
lando 18:02:22 DEBUG ==> plugin lando-test loaded from /snapshot/lando/build/cli/plugins/lando-test/index.js 
lando 18:02:22 DEBUG ==> plugin lando-tooling loaded from /snapshot/lando/build/cli/plugins/lando-tooling/index.js 
lando 18:02:22 DEBUG ==> plugin lando-acquia loaded from /snapshot/lando/build/cli/integrations/lando-acquia/index.js 
lando 18:02:22 DEBUG ==> plugin lando-lagoon loaded from /snapshot/lando/build/cli/integrations/lando-lagoon/index.js 
lando 18:02:22 DEBUG ==> plugin lando-pantheon loaded from /snapshot/lando/build/cli/integrations/lando-pantheon/index.js 
lando 18:02:22 DEBUG ==> plugin lando-platformsh loaded from /snapshot/lando/build/cli/integrations/lando-platformsh/index.js 
lando 18:02:22 DEBUG ==> emitting event post-bootstrap-config 
lando 18:02:22 VERBOSE ==> building proxy config... 
lando 18:02:22 VERBOSE ==> config bootstrap completed. 
lando 18:02:22 VERBOSE ==> tasks bootstrap beginning... 
lando 18:02:22 DEBUG ==> emitting event pre-bootstrap-tasks 
lando 18:02:22 DEBUG ==> autoloaded task config 
lando 18:02:22 DEBUG ==> autoloaded task destroy 
lando 18:02:22 DEBUG ==> autoloaded task info 
lando 18:02:22 DEBUG ==> autoloaded task list 
lando 18:02:22 DEBUG ==> autoloaded task logs 
lando 18:02:22 DEBUG ==> autoloaded task poweroff 
lando 18:02:22 DEBUG ==> autoloaded task rebuild 
lando 18:02:22 DEBUG ==> autoloaded task restart 
lando 18:02:22 DEBUG ==> autoloaded task share 
lando 18:02:22 DEBUG ==> autoloaded task start 
lando 18:02:22 DEBUG ==> autoloaded task stop 
lando 18:02:22 DEBUG ==> autoloaded task version 
lando 18:02:22 DEBUG ==> autoloaded task init 
lando 18:02:22 DEBUG ==> autoloaded task ssh 
lando 18:02:22 DEBUG ==> emitting event post-bootstrap-tasks 
lando 18:02:22 VERBOSE ==> tasks bootstrap completed. 
lando 18:02:22 VERBOSE ==> engine bootstrap beginning... 
lando 18:02:22 DEBUG ==> emitting event pre-bootstrap-engine 
lando 18:02:22 DEBUG ==> automoved scripts from /snapshot/lando/build/cli/plugins/lando-core/scripts to /Users/vinnie/.lando/scripts and set to mode 755 
lando 18:02:22 DEBUG ==> automoved scripts from /snapshot/lando/build/cli/plugins/lando-proxy/scripts to /Users/vinnie/.lando/scripts and set to mode 755 
lando 18:02:22 DEBUG ==> automoved scripts from /snapshot/lando/build/cli/plugins/lando-recipes/scripts to /Users/vinnie/.lando/scripts and set to mode 755 
lando 18:02:22 DEBUG ==> automoved scripts from /snapshot/lando/build/cli/plugins/lando-services/scripts to /Users/vinnie/.lando/scripts and set to mode 755 
lando 18:02:22 DEBUG ==> automoved scripts from /snapshot/lando/build/cli/plugins/lando-sharing/scripts to /Users/vinnie/.lando/scripts and set to mode 755 
lando 18:02:22 DEBUG ==> automoved scripts from /snapshot/lando/build/cli/integrations/lando-acquia/scripts to /Users/vinnie/.lando/scripts and set to mode 755 
lando 18:02:22 DEBUG ==> automoved scripts from /snapshot/lando/build/cli/integrations/lando-lagoon/scripts to /Users/vinnie/.lando/scripts and set to mode 755 
lando 18:02:22 DEBUG ==> automoved scripts from /snapshot/lando/build/cli/integrations/lando-pantheon/scripts to /Users/vinnie/.lando/scripts and set to mode 755 
lando 18:02:22 DEBUG ==> automoved scripts from /snapshot/lando/build/cli/integrations/lando-platformsh/scripts to /Users/vinnie/.lando/scripts and set to mode 755 
lando 18:02:22 DEBUG ==> emitting event post-bootstrap-engine 
lando 18:02:22 VERBOSE ==> engine bootstrap completed. 
lando 18:02:22 VERBOSE ==> app bootstrap beginning... 
lando 18:02:22 DEBUG ==> emitting event pre-bootstrap-app 
lando 18:02:22 DEBUG ==> autoloaded builder LandoCompose 
lando 18:02:22 DEBUG ==> autoloaded builder LandoAppserver 
lando 18:02:22 DEBUG ==> autoloaded builder LandoService 
lando 18:02:22 DEBUG ==> autoloaded builder LandoUtility 
lando 18:02:22 DEBUG ==> autoloaded builder LandoWebServer 
lando 18:02:22 DEBUG ==> autoloaded builder LandoDrupal 
lando 18:02:22 DEBUG ==> autoloaded builder LandoLaemp 
lando 18:02:22 DEBUG ==> autoloaded builder LandoAppserver 
lando 18:02:22 DEBUG ==> autoloaded builder LandoPlatformAppserver 
lando 18:02:22 DEBUG ==> autoloaded builder LandoPlatformService 
lando 18:02:22 DEBUG ==> autoloaded builder LandoCa 
lando 18:02:22 DEBUG ==> autoloaded builder LandoProxy 
lando 18:02:22 DEBUG ==> autoloaded builder LandoInit 
lando 18:02:22 DEBUG ==> autoloaded builder LandoApache 
lando 18:02:22 DEBUG ==> autoloaded builder LandoCompose 
lando 18:02:22 DEBUG ==> autoloaded builder LandoDotNet 
lando 18:02:22 DEBUG ==> autoloaded builder LandoElasticSearch 
lando 18:02:22 DEBUG ==> autoloaded builder LandoGo 
lando 18:02:22 DEBUG ==> autoloaded builder LandoMailHog 
lando 18:02:22 DEBUG ==> autoloaded builder LandoMariaDb 
lando 18:02:22 DEBUG ==> autoloaded builder LandoMemcached 
lando 18:02:22 DEBUG ==> autoloaded builder LandoMongoDb 
lando 18:02:22 DEBUG ==> autoloaded builder LandoMsSql 
lando 18:02:22 DEBUG ==> autoloaded builder LandoMySql 
lando 18:02:22 DEBUG ==> autoloaded builder LandoNginx 
lando 18:02:22 DEBUG ==> autoloaded builder LandoNode 
lando 18:02:22 DEBUG ==> autoloaded builder LandoPhp 
lando 18:02:22 DEBUG ==> autoloaded builder LandoPma 
lando 18:02:22 DEBUG ==> autoloaded builder LandoPostgres 
lando 18:02:22 DEBUG ==> autoloaded builder LandoPython 
lando 18:02:22 DEBUG ==> autoloaded builder LandoRedis 
lando 18:02:22 DEBUG ==> autoloaded builder LandoRuby 
lando 18:02:22 DEBUG ==> autoloaded builder LandoSolr 
lando 18:02:22 DEBUG ==> autoloaded builder LandoTomcat 
lando 18:02:22 DEBUG ==> autoloaded builder LandoVarnish 
lando 18:02:22 DEBUG ==> autoloaded builder LandoMounter 
lando 18:02:22 DEBUG ==> autoloaded builder LandoLagoonElasticsearch 
lando 18:02:22 DEBUG ==> autoloaded builder LandoLagoonMariaDb 
lando 18:02:22 DEBUG ==> autoloaded builder LandoLagoonNginx 
lando 18:02:22 DEBUG ==> autoloaded builder LandoLagoonNone 
lando 18:02:22 DEBUG ==> autoloaded builder LandoLagoonPhp 
lando 18:02:22 DEBUG ==> autoloaded builder LandoLagoonPhp 
lando 18:02:22 DEBUG ==> autoloaded builder LandoLagoonPostgres 
lando 18:02:22 DEBUG ==> autoloaded builder LandoLagoonRedis 
lando 18:02:22 DEBUG ==> autoloaded builder LandoLagoonSolr 
lando 18:02:22 DEBUG ==> autoloaded builder LandoLagoonVarnish 
lando 18:02:22 DEBUG ==> autoloaded builder LandoPlatformshChromeHeadless 
lando 18:02:22 DEBUG ==> autoloaded builder LandoPlatformsElasticsearch 
lando 18:02:22 DEBUG ==> autoloaded builder LandoPlatformshInfluxdb 
lando 18:02:22 DEBUG ==> autoloaded builder LandoPlatformshKafka 
lando 18:02:22 DEBUG ==> autoloaded builder LandoPlatformshMariaDB 
lando 18:02:22 DEBUG ==> autoloaded builder LandoPlatformshMemcached 
lando 18:02:22 DEBUG ==> autoloaded builder LandoPlatformsMongoDB 
lando 18:02:22 DEBUG ==> autoloaded builder LandoPlatformshPhp 
lando 18:02:22 DEBUG ==> autoloaded builder LandoPlatformshPostgres 
lando 18:02:22 DEBUG ==> autoloaded builder LandoPlatformshRabbitmq 
lando 18:02:22 DEBUG ==> autoloaded builder LandoPlatformshRedis 
lando 18:02:22 DEBUG ==> autoloaded builder LandoPlatformshSolr 
lando 18:02:22 DEBUG ==> autoloaded builder LandoPlatformshVarnish 
lando 18:02:22 DEBUG ==> autoloaded builder LandoBackdrop 
lando 18:02:22 DEBUG ==> autoloaded builder LandoDrupal6 
lando 18:02:22 DEBUG ==> autoloaded builder LandoDrupal7 
lando 18:02:22 DEBUG ==> autoloaded builder LandoDrupal8 
lando 18:02:22 DEBUG ==> autoloaded builder LandoDrupal9 
lando 18:02:22 DEBUG ==> autoloaded builder LandoJoomla 
lando 18:02:22 DEBUG ==> autoloaded builder LandoLamp 
lando 18:02:22 DEBUG ==> autoloaded builder LandoLaravel 
lando 18:02:22 DEBUG ==> autoloaded builder LandoLamp 
lando 18:02:22 DEBUG ==> autoloaded builder LandoMean 
lando 18:02:22 DEBUG ==> autoloaded builder LandoSymfony 
lando 18:02:22 DEBUG ==> autoloaded builder LandoWordPress 
lando 18:02:22 DEBUG ==> autoloaded builder LandoAcquia 
lando 18:02:22 DEBUG ==> autoloaded builder LandoLagoon 
lando 18:02:22 DEBUG ==> autoloaded builder LandoPantheon 
lando 18:02:22 DEBUG ==> autoloaded builder LandoPlatformsh 
lando 18:02:22 DEBUG ==> emitting event post-bootstrap-app 
lando 18:02:22 VERBOSE ==> app bootstrap completed. 
lando 18:02:22 VERBOSE ==> bootstrap completed. 
lando 18:02:22 DEBUG ==> emitting event post-bootstrap 
lando 18:02:22 VERBOSE ==> docker-engine exists: true 
lando 18:02:22 VERBOSE ==> docker-compose exists: true 
lando 18:02:22 DEBUG ==> emitting event cli-answers 
lando 18:02:22 DEBUG ==> emitting event cli-restart-answers 
lando 18:02:22 DEBUG ==> emitting event cli-run 
lando 18:02:22 DEBUG ==> emitting event cli-restart-run 
lando 18:02:22 INFO ==> loading app api from config files 0=/Users/vinnie/projects/funnelguard/poc/go-microservices/.lando.yml
lando 18:02:22 DEBUG ==> app api has config name=api, router=[api.lndo.site:8080, router.lndo.site:9876], env_file=[lando/.env], ssl=true, sslExpose=true, type=compose, image=express-gateway, command=[docker-entrypoint.sh, node, -e, require('express-gateway')().run();], ports=[8080, 9876], depends_on=[accounts, auth, journeys, ecomm], volumes=[lando/express-gateway:/var/lib/eg], build_as_root=[go clean --modcache, chmod -R 777 /go/, cd /opt; /bin/sh -c "git clone https://github.com/go-delve/delve; cd delve; go install github.com/go-delve/delve/cmd/dlv"], build=[/bin/sh -c "GO111MODULE=off go get -u github.com/AgentCosmic/xnotify"], type=go:1.14, 
...
... REDACTED
...
depends_on=[pg], ports=[11001:11001, 2341:2345], command=cd cmd/accounts
xnotify --listen "0.0.0.0:11001" --batch 200 --trigger -- ../../lando/lando-app-start-cmd.sh
, build_as_root=[go clean --modcache, chmod -R 777 /go/], build=[/bin/sh -c "GO111MODULE=off go get -u github.com/AgentCosmic/xnotify"], type=go:1.14, 
...
... REDACTED
...
7oquk9s93hnt1jaak5m8hc06vsr59kuv.apps.googleusercontent.com, depends_on=[accounts, pg], ports=[11002:11001], command=cd cmd/authorization
xnotify --listen "0.0.0.0:11001" --batch 200 --trigger -- ../../lando/lando-app-start-cmd.sh
, build_as_root=[go clean --modcache, chmod -R 777 /go/], build=[/bin/sh -c "GO111MODULE=off go get -u github.com/AgentCosmic/xnotify"], type=go:1.14, 
...
... REDACTED
...
, depends_on=[auth, accounts], ports=[11003:11001], command=cd cmd/ecomm
xnotify --listen "0.0.0.0:11001" --batch 200 --trigger -- ../../lando/lando-app-start-cmd.sh
, type=postgres:11, portforward=11999, type=postgres:custom, image=timescale/timescaledb@sha256:9355e54639999ee2f481e5fc3f8e5671ff35d7f9acadce6f91f9a8ce2e504298, POSTGRES_HOST_AUTH_METHOD=trust, command=[docker-entrypoint.sh, postgres], portforward=11998, build_as_root=[go clean --modcache, chmod -R 777 /go/], build=[/bin/sh -c "GO111MODULE=off go get -u github.com/AgentCosmic/xnotify"], type=go:1.14, ALLOWED_HOSTS=accounts.google.com,www.funnelguard.co,localhost:5000,api-dev.funnelguard.io,id-dev.funnelguard.io,app.fg.site, APP_BASE_URL=https://app.fg.site:5001, ENDPOINTS_BASE_URL=https://api.lndo.site, ACCOUNTS_API_HOST=accounts.api.internal, ACCOUNTS_API_PORT=50053, AUTH_API_HOST=auth.api.internal, AUTH_API_PORT=50051, PIPEFY_ENDPOINT=https://app.pipefy.com/queries, SLASHQL_HOST_URL=https://sparkling-pond.us-west-2.aws.cloud.dgraph.io, CONTENTFUL_SPACE=6tm5l10bpu1n, CONTENTFUL_ENV=dev, POSTGRES_HOST=pg.api.internal, POSTGRES_PORT=5432, POSTGRES_USER=postgres, POSTGRES_DB_NAME=database, POSTGRES_PASSWORD=, POSTGRES_SSL=0, depends_on=[auth, accounts], ports=[11004:11001], command=cd cmd/journeys
xnotify --listen "0.0.0.0:11001" --batch 200 --trigger -- ../../lando/lando-app-start-cmd.sh
, build_as_root=[go clean --modcache, chmod -R 777 /go/, cd /opt; /bin/sh -c "git clone https://github.com/go-delve/delve; cd delve; go install github.com/go-delve/delve/cmd/dlv"], build=[/bin/sh -c "GO111MODULE=off go get -u github.com/AgentCosmic/xnotify"], type=go:1.14, 
...
... REDACTED
...
, depends_on=[accounts, auth, pg, timescale], ports=[11005:11001, 2345:2345], command=cd cmd/anomalies
xnotify --listen "0.0.0.0:11001" --batch 200 --trigger -- ../../lando/lando-app-start-cmd.sh
, service=:service, cmd=go clean -cache -modcache -i -r, alias=[s], default=auth
Stopping and restarting your app...Shiny!
api   18:02:22 INFO ==> restarting app... 
api   18:02:22 INFO ==> stopping app... 
api   18:02:22 VERBOSE ==> initiatilizing app at /Users/vinnie/projects/funnelguard/poc/go-microservices... 
lando 18:02:22 DEBUG ==> plugin lando-core loaded from /snapshot/lando/build/cli/plugins/lando-core/app.js 
lando 18:02:22 DEBUG ==> plugin lando-events loaded from /snapshot/lando/build/cli/plugins/lando-events/app.js 
lando 18:02:22 DEBUG ==> plugin lando-networking loaded from /snapshot/lando/build/cli/plugins/lando-networking/app.js 
api   18:02:22 VERBOSE ==> proxy settings detected. 
lando 18:02:22 DEBUG ==> plugin lando-proxy loaded from /snapshot/lando/build/cli/plugins/lando-proxy/app.js 
lando 18:02:22 DEBUG ==> plugin lando-recipes loaded from /snapshot/lando/build/cli/plugins/lando-recipes/app.js 
lando 18:02:22 DEBUG ==> plugin lando-services loaded from /snapshot/lando/build/cli/plugins/lando-services/app.js 
lando 18:02:22 DEBUG ==> plugin lando-sharing loaded from /snapshot/lando/build/cli/plugins/lando-sharing/app.js 
lando 18:02:22 DEBUG ==> plugin lando-tooling loaded from /snapshot/lando/build/cli/plugins/lando-tooling/app.js 
lando 18:02:22 DEBUG ==> plugin lando-acquia loaded from /snapshot/lando/build/cli/integrations/lando-acquia/app.js 
lando 18:02:22 DEBUG ==> plugin lando-lagoon loaded from /snapshot/lando/build/cli/integrations/lando-lagoon/app.js 
lando 18:02:22 DEBUG ==> plugin lando-pantheon loaded from /snapshot/lando/build/cli/integrations/lando-pantheon/app.js 
lando 18:02:22 DEBUG ==> plugin lando-platformsh loaded from /snapshot/lando/build/cli/integrations/lando-platformsh/app.js 
api   18:02:22 DEBUG ==> emitting event pre-init 
lando 18:02:22 VERBOSE ==> proxy is ON. 
lando 18:02:22 VERBOSE ==> Setting the default proxy certificate /certs/cert.crt 
api   18:02:22 VERBOSE ==> building compose service router 
api   18:02:22 VERBOSE ==> building go service accounts 
api   18:02:22 VERBOSE ==> building go service auth 
api   18:02:22 VERBOSE ==> building go service ecomm 
api   18:02:22 VERBOSE ==> building postgres service pg 
api   18:02:22 VERBOSE ==> building postgres service timescale 
api   18:02:22 VERBOSE ==> building go service journeys 
api   18:02:22 VERBOSE ==> building go service anomalies 
api   18:02:22 DEBUG ==> emitting event post-init 
api   18:02:22 DEBUG ==> adding hostnames to the app... 
api   18:02:22 DEBUG ==> hostnames added to router 0=router.api.internal
api   18:02:22 DEBUG ==> hostnames added to accounts 0=accounts.api.internal
api   18:02:22 DEBUG ==> hostnames added to auth 0=auth.api.internal
api   18:02:22 DEBUG ==> hostnames added to ecomm 0=ecomm.api.internal
api   18:02:22 DEBUG ==> hostnames added to pg 0=pg.api.internal
api   18:02:22 DEBUG ==> hostnames added to timescale 0=timescale.api.internal
api   18:02:22 DEBUG ==> hostnames added to journeys 0=journeys.api.internal
api   18:02:22 DEBUG ==> hostnames added to anomalies 0=anomalies.api.internal
api   18:02:22 VERBOSE ==> attempting to find open services... 
lando 18:02:22 VERBOSE ==> checking docker version compatibility... 
lando 18:02:22 DEBUG ==> compatibility results name=desktop, link=https://docs.docker.com/docker-for-mac/release-notes/, wants=2.1.0.0 - 3.3.99, version=3.5.2, semversion=3.5.2, semmin=2.1.0, semmax=3.3.99, dockerVersion=true, satisfied=false
lando 18:02:23 DEBUG ==> engine is up. 
api   18:02:23 DEBUG ==> engine is up. 
lando 18:02:23 DEBUG ==> docker is running. 
api   18:02:23 VERBOSE ==> refreshing certificates... 0=router, 1=accounts, 2=auth, 3=ecomm, 4=pg, 5=timescale, 6=journeys, 7=anomalies
api   18:02:23 VERBOSE ==> perm sweeping flagged non-root containers ... 0=pg, 1=timescale
api   18:02:23 VERBOSE ==> analyzing user ssh keys... using 2 of 2 
api   18:02:23 DEBUG ==> key config...  none 
api   18:02:23 VERBOSE ==> additional tooling detected 
api   18:02:23 DEBUG ==> adding app cli task go-clean-cache 
api   18:02:23 VERBOSE ==> setting LANDO_INFO... 
api   18:02:23 DEBUG ==> ensuring exposed ports on router are bound to 127.0.0.1 
api   18:02:23 DEBUG ==> ensuring exposed ports on router are bound to 127.0.0.1 
api   18:02:23 DEBUG ==> ensuring exposed ports on accounts are bound to 127.0.0.1 
api   18:02:23 DEBUG ==> ensuring exposed ports on accounts are bound to 127.0.0.1 
api   18:02:23 DEBUG ==> ensuring exposed ports on auth are bound to 127.0.0.1 
api   18:02:23 DEBUG ==> ensuring exposed ports on auth are bound to 127.0.0.1 
api   18:02:23 DEBUG ==> ensuring exposed ports on ecomm are bound to 127.0.0.1 
api   18:02:23 DEBUG ==> ensuring exposed ports on ecomm are bound to 127.0.0.1 
api   18:02:23 DEBUG ==> ensuring exposed ports on pg are bound to 127.0.0.1 
api   18:02:23 DEBUG ==> ensuring exposed ports on timescale are bound to 127.0.0.1 
api   18:02:23 DEBUG ==> ensuring exposed ports on journeys are bound to 127.0.0.1 
api   18:02:23 DEBUG ==> ensuring exposed ports on journeys are bound to 127.0.0.1 
api   18:02:23 DEBUG ==> ensuring exposed ports on anomalies are bound to 127.0.0.1 
api   18:02:23 DEBUG ==> ensuring exposed ports on anomalies are bound to 127.0.0.1 
api   18:02:23 VERBOSE ==> app is ready! 
api   18:02:23 DEBUG ==> emitting event ready 
api   18:02:23 VERBOSE ==> discovering dynamic portforward info... 
api   18:02:23 VERBOSE ==> reporting stop action to report=true, url=https://metrics.lando.dev, report=true, url=https://metrics.lando.dev
api   18:02:23 DEBUG ==> reported data command=lando restart, context=local, devMode=false, instance=498cb1efbfe2375f849f53a4771c6a0cf6ce0a7c, nodeVersion=v12.18.1, mode=cli, type=Darwin, platform=darwin, release=20.5.0, arch=x64, product=lando, version=3.1.4, app=2279b51ac59cec7d59a9112c5a60557e0b97a326, type=none, services=[compose, go:1.14, go:1.14, go:1.14, postgres:11, postgres:custom, go:1.14, go:1.14], action=stop, created=2021-08-10T22:02:23.260Z
api   18:02:23 DEBUG ==> emitting event pre-stop 
api   18:02:23 DEBUG ==> process pid6 running /usr/local/bin/docker-compose kill cstdio=inherit, silent=false, mode=spawn, detached=false
WARN[0000] The POSTGRES_PASSWORD variable is not set. Defaulting to a blank string. 
WARN[0000] The POSTGRES_PASSWORD variable is not set. Defaulting to a blank string. 
WARN[0000] The POSTGRES_PASSWORD variable is not set. Defaulting to a blank string. 
WARN[0000] The TIMESCALE_PASSWORD variable is not set. Defaulting to a blank string. 
WARN[0000] The POSTGRES_PASSWORD variable is not set. Defaulting to a blank string. 
api   18:02:23 DEBUG ==> process pid6 finished with exit code 0 
api   18:02:23 DEBUG ==> emitting event post-stop 
api   18:02:23 INFO ==> stopped app. 
api   18:02:23 INFO ==> starting app... 
api   18:02:23 DEBUG ==> emitting event ready 
api   18:02:23 VERBOSE ==> discovering dynamic portforward info... 
api   18:02:23 VERBOSE ==> reporting start action to report=true, url=https://metrics.lando.dev, report=true, url=https://metrics.lando.dev
api   18:02:23 DEBUG ==> reported data command=lando restart, context=local, devMode=false, instance=498cb1efbfe2375f849f53a4771c6a0cf6ce0a7c, nodeVersion=v12.18.1, mode=cli, type=Darwin, platform=darwin, release=20.5.0, arch=x64, product=lando, version=3.1.4, app=2279b51ac59cec7d59a9112c5a60557e0b97a326, type=none, services=[compose, go:1.14, go:1.14, go:1.14, postgres:11, postgres:custom, go:1.14, go:1.14], action=start, created=2021-08-10T22:02:23.508Z
api   18:02:23 DEBUG ==> emitting event pre-start 
lando 18:02:23 DEBUG ==> process pid7 running /usr/local/bin/docker-compose up cstdio=inherit, silent=false, mode=spawn, detached=false
[+] Running 1/0
 ⠿ Container landoproxyhyperion5000gandalfedition_proxy_1  Running                                                                                                                                                                 0.0s
lando 18:02:23 DEBUG ==> process pid7 finished with exit code 0 
api   18:02:23 DEBUG ==> app has proxy compose files 0=/Users/vinnie/.lando/compose/api/proxy-0.yml
api   18:02:23 INFO ==> running build steps... 
api   18:02:23 DEBUG ==> process pid8 running /usr/local/bin/docker-compose up cstdio=inherit, silent=false, mode=spawn, detached=false
WARN[0000] The POSTGRES_PASSWORD variable is not set. Defaulting to a blank string. 
WARN[0000] The POSTGRES_PASSWORD variable is not set. Defaulting to a blank string. 
WARN[0000] The POSTGRES_PASSWORD variable is not set. Defaulting to a blank string. 
WARN[0000] The TIMESCALE_PASSWORD variable is not set. Defaulting to a blank string. 
WARN[0000] The POSTGRES_PASSWORD variable is not set. Defaulting to a blank string. 
services.router.labels.traefik.http.routers.e041f0ca708c57cace93936b0e1295a8497ba9e2-secured.tls must be a string, number or null
api   18:02:23 DEBUG ==> process pid8 finished with exit code 15 
api   18:02:23 ERROR ==>  message=, stack=Error
    at /snapshot/lando/build/cli/lib/shell.js
From previous event:
    at Shell.sh (/snapshot/lando/build/cli/lib/shell.js)
    at Object.dc (/snapshot/lando/build/cli/lib/bootstrap.js)
    at compose (/snapshot/lando/build/cli/lib/bootstrap.js)
    at /snapshot/lando/build/cli/lib/router.js
From previous event:
    at retryEach (/snapshot/lando/build/cli/lib/router.js)
    at Object.start (/snapshot/lando/build/cli/lib/router.js)
From previous event:
    at /snapshot/lando/build/cli/lib/router.js
    at processImmediate (internal/timers.js:456:21)
From previous event:
    at Object.run (/snapshot/lando/build/cli/lib/router.js)
    at run (/snapshot/lando/build/cli/lib/engine.js)
    at /snapshot/lando/build/cli/lib/router.js
From previous event:
    at Object.eventWrapper (/snapshot/lando/build/cli/lib/router.js)
    at Engine.engineCmd (/snapshot/lando/build/cli/lib/engine.js)
    at Engine.run (/snapshot/lando/build/cli/lib/engine.js)
    at Object.runBuild (/snapshot/lando/build/cli/plugins/lando-services/lib/utils.js)
    at AsyncEvents.<anonymous> (/snapshot/lando/build/cli/plugins/lando-services/app.js)
    at AsyncEvents.handle (/snapshot/lando/build/cli/lib/events.js)
    at /snapshot/lando/build/cli/lib/events.js
From previous event:
    at AsyncEvents.emit (/snapshot/lando/build/cli/lib/events.js)
From previous event:
    at App.start (/snapshot/lando/build/cli/lib/app.js)
    at /snapshot/lando/build/cli/lib/app.js
From previous event:
    at App.restart (/snapshot/lando/build/cli/lib/app.js)
    at Object.run (/snapshot/lando/build/cli/plugins/lando-core/tasks/restart.js)
From previous event:
    at /snapshot/lando/build/cli/lib/cli.js
From previous event:
    at Object.handler (/snapshot/lando/build/cli/lib/cli.js)
    at Object.runCommand (/snapshot/lando/build/cli/node_modules/yargs/lib/command.js:238:44)
    at Object.parseArgs [as _parseArgs] (/snapshot/lando/build/cli/node_modules/yargs/yargs.js:1063:30)
    at Function.get [as argv] (/snapshot/lando/build/cli/node_modules/yargs/yargs.js:1004:21)
    at Cli.init (/snapshot/lando/build/cli/lib/cli.js)
    at Cli.run (/snapshot/lando/build/cli/lib/cli.js)
    at Object.<anonymous> (/snapshot/lando/build/cli/bin/lando.js)
    at Module._compile (pkg/prelude/bootstrap.js:1433:22)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1156:10)
    at Module.load (internal/modules/cjs/loader.js:984:32)
    at Function.Module._load (internal/modules/cjs/loader.js:877:14)
    at Function.runMain (pkg/prelude/bootstrap.js:1488:12)
    at internal/main/run_main_module.js:17:47, __stackCleaned__=true
api   18:02:23 DEBUG ==>  message=, stack=Error
    at /snapshot/lando/build/cli/lib/shell.js
From previous event:
    at Shell.sh (/snapshot/lando/build/cli/lib/shell.js)
    at Object.dc (/snapshot/lando/build/cli/lib/bootstrap.js)
    at compose (/snapshot/lando/build/cli/lib/bootstrap.js)
    at /snapshot/lando/build/cli/lib/router.js
From previous event:
    at retryEach (/snapshot/lando/build/cli/lib/router.js)
    at Object.start (/snapshot/lando/build/cli/lib/router.js)
From previous event:
    at /snapshot/lando/build/cli/lib/router.js
    at processImmediate (internal/timers.js:456:21)
From previous event:
    at Object.run (/snapshot/lando/build/cli/lib/router.js)
    at run (/snapshot/lando/build/cli/lib/engine.js)
    at /snapshot/lando/build/cli/lib/router.js
From previous event:
    at Object.eventWrapper (/snapshot/lando/build/cli/lib/router.js)
    at Engine.engineCmd (/snapshot/lando/build/cli/lib/engine.js)
    at Engine.run (/snapshot/lando/build/cli/lib/engine.js)
    at Object.runBuild (/snapshot/lando/build/cli/plugins/lando-services/lib/utils.js)
    at AsyncEvents.<anonymous> (/snapshot/lando/build/cli/plugins/lando-services/app.js)
    at AsyncEvents.handle (/snapshot/lando/build/cli/lib/events.js)
    at /snapshot/lando/build/cli/lib/events.js
From previous event:
    at AsyncEvents.emit (/snapshot/lando/build/cli/lib/events.js)
From previous event:
    at App.start (/snapshot/lando/build/cli/lib/app.js)
    at /snapshot/lando/build/cli/lib/app.js
From previous event:
    at App.restart (/snapshot/lando/build/cli/lib/app.js)
    at Object.run (/snapshot/lando/build/cli/plugins/lando-core/tasks/restart.js)
From previous event:
    at /snapshot/lando/build/cli/lib/cli.js
From previous event:
    at Object.handler (/snapshot/lando/build/cli/lib/cli.js)
    at Object.runCommand (/snapshot/lando/build/cli/node_modules/yargs/lib/command.js:238:44)
    at Object.parseArgs [as _parseArgs] (/snapshot/lando/build/cli/node_modules/yargs/yargs.js:1063:30)
    at Function.get [as argv] (/snapshot/lando/build/cli/node_modules/yargs/yargs.js:1004:21)
    at Cli.init (/snapshot/lando/build/cli/lib/cli.js)
    at Cli.run (/snapshot/lando/build/cli/lib/cli.js)
    at Object.<anonymous> (/snapshot/lando/build/cli/bin/lando.js)
    at Module._compile (pkg/prelude/bootstrap.js:1433:22)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1156:10)
    at Module.load (internal/modules/cjs/loader.js:984:32)
    at Function.Module._load (internal/modules/cjs/loader.js:877:14)
    at Function.runMain (pkg/prelude/bootstrap.js:1488:12)
    at internal/main/run_main_module.js:17:47, __stackCleaned__=true
api   18:02:23 VERBOSE ==> reporting error action to report=true, url=https://metrics.lando.dev, report=true, url=https://metrics.lando.dev
api   18:02:23 DEBUG ==> reported data command=lando restart, context=local, devMode=false, instance=498cb1efbfe2375f849f53a4771c6a0cf6ce0a7c, nodeVersion=v12.18.1, mode=cli, type=Darwin, platform=darwin, release=20.5.0, arch=x64, product=lando, version=3.1.4, , action=error, created=2021-08-10T22:02:23.973Z
api   18:02:23 DEBUG ==> process pid9 running /usr/local/bin/docker-compose up cstdio=inherit, silent=false, mode=spawn, detached=false
WARN[0000] The POSTGRES_PASSWORD variable is not set. Defaulting to a blank string. 
WARN[0000] The POSTGRES_PASSWORD variable is not set. Defaulting to a blank string. 
WARN[0000] The POSTGRES_PASSWORD variable is not set. Defaulting to a blank string. 
WARN[0000] The POSTGRES_PASSWORD variable is not set. Defaulting to a blank string. 
WARN[0000] The TIMESCALE_PASSWORD variable is not set. Defaulting to a blank string. 
services.router.labels.traefik.http.routers.0dbff6d6438a7eba78302f35cd447b9c50ba4e28-secured.tls must be a string, number or null
api   18:02:24 DEBUG ==> process pid9 finished with exit code 15 
api   18:02:24 ERROR ==>  message=, stack=Error
    at /snapshot/lando/build/cli/lib/shell.js
From previous event:
    at Shell.sh (/snapshot/lando/build/cli/lib/shell.js)
    at Object.dc (/snapshot/lando/build/cli/lib/bootstrap.js)
    at compose (/snapshot/lando/build/cli/lib/bootstrap.js)
    at /snapshot/lando/build/cli/lib/router.js
    at /snapshot/lando/build/cli/lib/router.js
    at processImmediate (internal/timers.js:456:21)
From previous event:
    at retryEach (/snapshot/lando/build/cli/lib/router.js)
    at Object.start (/snapshot/lando/build/cli/lib/router.js)
    at /snapshot/lando/build/cli/lib/engine.js
    at /snapshot/lando/build/cli/lib/router.js
From previous event:
    at Object.eventWrapper (/snapshot/lando/build/cli/lib/router.js)
    at Engine.engineCmd (/snapshot/lando/build/cli/lib/engine.js)
    at Engine.start (/snapshot/lando/build/cli/lib/engine.js)
From previous event:
    at App.start (/snapshot/lando/build/cli/lib/app.js)
    at /snapshot/lando/build/cli/lib/app.js
From previous event:
    at App.restart (/snapshot/lando/build/cli/lib/app.js)
    at Object.run (/snapshot/lando/build/cli/plugins/lando-core/tasks/restart.js)
From previous event:
    at /snapshot/lando/build/cli/lib/cli.js
From previous event:
    at Object.handler (/snapshot/lando/build/cli/lib/cli.js)
    at Object.runCommand (/snapshot/lando/build/cli/node_modules/yargs/lib/command.js:238:44)
    at Object.parseArgs [as _parseArgs] (/snapshot/lando/build/cli/node_modules/yargs/yargs.js:1063:30)
    at Function.get [as argv] (/snapshot/lando/build/cli/node_modules/yargs/yargs.js:1004:21)
    at Cli.init (/snapshot/lando/build/cli/lib/cli.js)
    at Cli.run (/snapshot/lando/build/cli/lib/cli.js)
    at Object.<anonymous> (/snapshot/lando/build/cli/bin/lando.js)
    at Module._compile (pkg/prelude/bootstrap.js:1433:22)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1156:10)
    at Module.load (internal/modules/cjs/loader.js:984:32)
    at Function.Module._load (internal/modules/cjs/loader.js:877:14)
    at Function.runMain (pkg/prelude/bootstrap.js:1488:12)
    at internal/main/run_main_module.js:17:47, __stackCleaned__=true

██╗   ██╗██╗  ██╗     ██████╗ ██╗  ██╗██╗
██║   ██║██║  ██║    ██╔═══██╗██║  ██║██║
██║   ██║███████║    ██║   ██║███████║██║
██║   ██║██╔══██║    ██║   ██║██╔══██║╚═╝
╚██████╔╝██║  ██║    ╚██████╔╝██║  ██║██╗
 ╚═════╝ ╚═╝  ╚═╝     ╚═════╝ ╚═╝  ╚═╝╚═╝
                                         

An error occurred while starting up your app!
Here are a few things you can try to get back into a good state:

  ■ Try running lando rebuild
  ■ Try restarting in debug mode lando restart -vvv
  ■ Try checking the logs with lando logs

If those fail then consult the troubleshooting materials:

  ■ https://docs.lando.dev/help/logs.html
  ■ https://docs.lando.dev/help/updating.html

Or post your issue to Slack or GitHub

  ■ Slack - https://launchpass.com/devwithlando
  ■ GitHub - https://github.com/lando/lando/issues/new/choose

lando 18:02:24 ERROR ==> Error
    at /snapshot/lando/build/cli/lib/shell.js
From previous event:
    at Shell.sh (/snapshot/lando/build/cli/lib/shell.js)
    at Object.dc (/snapshot/lando/build/cli/lib/bootstrap.js)
    at compose (/snapshot/lando/build/cli/lib/bootstrap.js)
    at /snapshot/lando/build/cli/lib/router.js
    at /snapshot/lando/build/cli/lib/router.js
    at processImmediate (internal/timers.js:456:21)
From previous event:
    at retryEach (/snapshot/lando/build/cli/lib/router.js)
    at Object.start (/snapshot/lando/build/cli/lib/router.js)
    at /snapshot/lando/build/cli/lib/engine.js
    at /snapshot/lando/build/cli/lib/router.js
From previous event:
    at Object.eventWrapper (/snapshot/lando/build/cli/lib/router.js)
    at Engine.engineCmd (/snapshot/lando/build/cli/lib/engine.js)
    at Engine.start (/snapshot/lando/build/cli/lib/engine.js)
From previous event:
    at App.start (/snapshot/lando/build/cli/lib/app.js)
    at /snapshot/lando/build/cli/lib/app.js
From previous event:
    at App.restart (/snapshot/lando/build/cli/lib/app.js)
    at Object.run (/snapshot/lando/build/cli/plugins/lando-core/tasks/restart.js)
From previous event:
    at /snapshot/lando/build/cli/lib/cli.js
From previous event:
    at Object.handler (/snapshot/lando/build/cli/lib/cli.js)
    at Object.runCommand (/snapshot/lando/build/cli/node_modules/yargs/lib/command.js:238:44)
    at Object.parseArgs [as _parseArgs] (/snapshot/lando/build/cli/node_modules/yargs/yargs.js:1063:30)
    at Function.get [as argv] (/snapshot/lando/build/cli/node_modules/yargs/yargs.js:1004:21)
    at Cli.init (/snapshot/lando/build/cli/lib/cli.js)
    at Cli.run (/snapshot/lando/build/cli/lib/cli.js)
    at Object.<anonymous> (/snapshot/lando/build/cli/bin/lando.js)
    at Module._compile (pkg/prelude/bootstrap.js:1433:22)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1156:10)
    at Module.load (internal/modules/cjs/loader.js:984:32)
    at Function.Module._load (internal/modules/cjs/loader.js:877:14)
    at Function.runMain (pkg/prelude/bootstrap.js:1488:12)
    at internal/main/run_main_module.js:17:47 
lando 18:02:24 VERBOSE ==> reporting error action to report=true, url=https://metrics.lando.dev, report=true, url=https://metrics.lando.dev
lando 18:02:24 DEBUG ==> reported data command=lando restart, context=local, devMode=false, instance=498cb1efbfe2375f849f53a4771c6a0cf6ce0a7c, nodeVersion=v12.18.1, mode=cli, type=Darwin, platform=darwin, release=20.5.0, arch=x64, product=lando, version=3.1.4, message=, stack=Error
    at /snapshot/lando/build/cli/lib/shell.js
From previous event:
    at Shell.sh (shell.js)
    at Object.dc (bootstrap.js)
    at compose (bootstrap.js)
    at /snapshot/lando/build/cli/lib/router.js
    at /snapshot/lando/build/cli/lib/router.js
From previous event:
    at retryEach (router.js)
    at Object.start (router.js)
    at /snapshot/lando/build/cli/lib/engine.js
    at /snapshot/lando/build/cli/lib/router.js
From previous event:
    at Object.eventWrapper (router.js)
    at Engine.engineCmd (engine.js)
    at Engine.start (engine.js)
From previous event:
    at App.start (app.js)
    at /snapshot/lando/build/cli/lib/app.js
From previous event:
    at App.restart (app.js)
    at Object.run (restart.js)
From previous event:
    at /snapshot/lando/build/cli/lib/cli.js
From previous event:
    at Object.handler (cli.js)
    at Object.runCommand (command.js:238:44)
    at Object.parseArgs [as _parseArgs] (yargs.js:1063:30)
    at Function.get [as argv] (yargs.js:1004:21)
    at Cli.init (cli.js)
    at Cli.run (cli.js)
    at Object.<anonymous> (lando.js)
    at Module._compile (bootstrap.js:1433:22)
    at Function.runMain (bootstrap.js:1488:12)
    at internal/main/run_main_module.js:17:47, action=error, created=2021-08-10T22:02:24.203Z

Tell us generally about your bug

I tried to restart the stack after lando start from scratch failed. Error below:

services.router.labels.traefik.http.routers.0dbff6d6438a7eba78302f35cd447b9c50ba4e28-secured.tls must be a string, number or null
api   18:02:24 DEBUG ==> process pid9 finished with exit code 15 
api   18:02:24 ERROR ==>  message=, stack=Error

Steps to Reproduce

  1. Install lastest Docker Desktop (v3.5.2)
  2. Install latest lando (v3.1.4), customizing install to use the already installed docker desktop
  3. run lando start

Tell us more

Pretty sure the issue is traefik/traefik#6919 (comment)

Workaround:

Docker Desktop v3.5.2 introduces:

Compose V2 beta: Docker Desktop now includes the beta version of Compose V2, which supports the docker compose command as part of the Docker CLI. For more information, see Compose V2 beta. While docker-compose is still supported and maintained, Compose V2 implementation relies directly on the compose-go bindings which are maintained as part of the specification. The compose command in the Docker CLI supports most of the docker-compose commands and flags. It is expected to be a drop-in replacement for docker-compose. There are a few remaining flags that have yet to be implemented, see the docker-compose compatibility list for more information about the flags that are supported in the new compose command. If you run into any problems with Compose V2, you can easily switch back to Compose v1 by either by making changes in Docker Desktop Experimental Settings, or by running the command docker-compose disable-v2. Let us know your feedback on the new ‘compose’ command by creating an issue in the Compose-CLI GitHub repository.

Switching back to Compose v1 by making changes in Docker Desktop Experimental Settings and running lando start works for me

@snipebin snipebin added the bug Something aint working right! label Aug 10, 2021
@pirog
Copy link
Sponsor Member

pirog commented Aug 23, 2021

@snipebin closing this in favor of #3075

@pirog pirog closed this as completed Aug 23, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something aint working right!
Projects
None yet
Development

No branches or pull requests

2 participants