Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
prefer newgrp over log out/in
  • Loading branch information
EdwardAngert committed Oct 16, 2024
commit 78d0dbcef93d9bafe6076773044c4c073a9915e6
13 changes: 9 additions & 4 deletions docs/tutorials/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,16 @@ persistent environment from your main device, a tablet, or your phone.
sudo usermod -aG docker $USER
```

1. Log out and log back in so that your group membership is re-evaluated or run:
1. Run `newgrp` to activate the groups changes:

```shell
newgrp docker
```
```shell
newgrp docker
```

You might need to log out and back in or restart the machine for changes to
take effect.

Log out and log back in so that your group membership is re-evaluated or run:

1. Install Coder:

Expand Down