Add clarification on username in code snippet

Following the convention e.g. [on this page](https://docs.docker.com/docker-hub/#step-4-build-and-push-a-container-image-to-docker-hub-from-your-computer)
Making it more clear it's to be modified by the user, not copied verbatim
This commit is contained in:
Shu 2020-12-14 12:44:41 -05:00 committed by GitHub
parent c4a4b9c302
commit e8ce7016d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ If you would like to use Docker as a non-root user, you should now consider
adding your user to the "docker" group with something like:
```bash
sudo usermod -aG docker your-user
sudo usermod -aG docker <your-user>
```
Remember to log out and back in for this to take effect!