Skip to content
Merged
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
12 changes: 6 additions & 6 deletions website/docs/Usage/Advanced/SharedUser.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ sidebar_label: Eth Docker with multiple users

You may want to run Eth Docker on one user, and then have other users be able to administer it. For this
example, the user that installs Eth Docker will be `node`, the two admin users will be `alice` and `bob`,
and all three belong to the `node-admin` group.
and all three belong to the `node-admins` group.

`alice` can `sudo`

As `alice`, create the `node` user and `node-admin` group
As `alice`, create the `node` user and `node-admins` group
- `sudo adduser node`
- `sudo addgroup node-admin`
- `sudo adduser node node-admin`
- `sudo adduser alice node-admin`
- `sudo adduser bob node-admin`
- `sudo addgroup node-admins`
- `sudo adduser node node-admins`
- `sudo adduser alice node-admins`
- `sudo adduser bob node-admins`

Keep `node` from logging in via ssh
- `sudo nano /etc/ssh/ssh_config.d/99-disable-node-login.conf`
Expand Down