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

Make sure the meUser gets set to the host user. #178

Merged
merged 5 commits into from
Jun 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion builders/lando-v4.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ module.exports = {

// add some upstream stuff and legacy stuff
upstream.appMount = config['app-mount'].destination;
upstream.legacy = merge({}, {meUser: username}, upstream.legacy ?? {});
upstream.legacy = merge({}, upstream.legacy ?? {}, {meUser: username});
// this will change but for right now i just need the image stuff to passthrough
upstream.config = {image: config.image};

Expand Down
3 changes: 3 additions & 0 deletions examples/lando-v4/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ Run the following commands to verify things work as expected
```bash
# should do something
true

# should run container operations as the host user
true
```

Destroy tests
Expand Down
Loading