diff --git a/docs/alpine-server-setup/post-install/users.md b/docs/alpine-server-setup/post-install/users.md index 4f89996..ba5a6db 100644 --- a/docs/alpine-server-setup/post-install/users.md +++ b/docs/alpine-server-setup/post-install/users.md @@ -4,7 +4,7 @@ To run containers securely; in an environment with fewer privileges, a user is n ## Wheel -Before creating the user install `doas`, to use when root is required: +Before creating the user, install `doas`. To be able to "do as" root when it is required: ``` # apk add doas @@ -18,10 +18,10 @@ permit persist :wheel as root ## Adding a user -Adding a user in Alpine Linux can be done using the `setup-user` script. Here we can specify the name, groups and more: +A user can be added in Alpine Linux with the `setup-user` script. Here we can specify the name, groups and more: ``` -# setup-user -g wheel,_power +# setup-user -g wheel # passwd ```