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

docker.md #2052

Merged
merged 3 commits into from
May 2, 2024
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
10 changes: 5 additions & 5 deletions docs/gemstones/containers/docker.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
---
title: Docker - Install Engine
author: wale soyinka
contributors: neelchauhan, nishaaaaaant, sastorsl
author: Wale Soyinka
contributors: Neel Chauhan, Srinivas Nishant Viswanadha, Stein Arne Storslett, Ganna Zhyrnova
date: 2021-08-04
tags:
- docker
---

# Introduction

The Docker Engine can be used running native Docker style container workloads on Rocky Linux servers. This is sometimes preferred to running the full Docker Desktop environment.
The Docker Engine can run native Docker-style container workloads on Rocky Linux servers. This is sometimes preferred when running the full Docker Desktop environment.

## Add the Docker repository

Expand Down Expand Up @@ -39,7 +39,7 @@ sudo systemctl --now enable docker

Add a non-root user to the `docker` group to allow the user to manage `docker` without `sudo`.

This is an optional step, but can be a convenience if you are the main user on the system, or if you want to allow multiple users to manage docker, but do not want to grant them `sudo` permissions.
This is an optional step, but it can be convenient if you are the system's main user or if you want to allow multiple users to manage docker but do not want to grant them `sudo` permissions.

Type:

Expand All @@ -51,7 +51,7 @@ sudo usermod -a -G docker $(whoami)
sudo usermod -a -G docker custom-user
```

It is required to log out and in again to be assigned the new group. Check with the `id` command to verify that the group has been added.
To be assigned the new group, you must log out and in again. Check with the `id` command to verify that the group has been added.

### Notes

Expand Down
Loading