You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to test lando against a locally built image, it makes an attempt to call docker-compose pull to pull, but crashes because the docker image doesn't exist in an upstream repo.
We should probably be building with docker-compose build --pull instead rather than have it as two separate commands (it's probably more performant too).
Example .lando.yml file:
# file: .lando.ymlname: docker-testservices:
test:
type: composeapp_mount: delegatedoverrides:
# This image only exists locally for now, so Lando should be able to use it just fine.image: docker-test/only-locally-availablecommand: tail -f /dev/null
The text was updated successfully, but these errors were encountered:
When trying to test lando against a locally built image, it makes an attempt to call
docker-compose pull
to pull, but crashes because the docker image doesn't exist in an upstream repo.We should probably be building with
docker-compose build --pull
instead rather than have it as two separate commands (it's probably more performant too).Example
.lando.yml
file:The text was updated successfully, but these errors were encountered: