We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have a custom mount for my image.
type: node:18 app_mount: false overrides: volumes: - "./frontend:/nuxt"
This works but when I do lando ssh I'm always at /app which is empty. How can I tell lando to go to /nuxt when I login?
lando ssh
/app
/nuxt
The text was updated successfully, but these errors were encountered:
I don't think this is possible in Lando v3, but I do know that having a configurable app root is part of Lando v4's spec.
Sorry, something went wrong.
As a workaround you could make your own alternate tooling command that does this. Something like this:
services: front: type: node:18 app_mount: false overrides: volumes: - "./frontend:/nuxt" tooling: ssh-front: service: front cmd: bash dir: /nuxt
No branches or pull requests
I have a custom mount for my image.
This works but when I do
lando ssh
I'm always at/app
which is empty.How can I tell lando to go to
/nuxt
when I login?The text was updated successfully, but these errors were encountered: