Skip to content

Commit 88eab7a

Browse files
authored
apply suggestions from PR review
1 parent 7993a33 commit 88eab7a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/container-registry/container-registry-authentication.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,17 +170,17 @@ You can enable the admin user in the Azure portal by navigating your registry, s
170170

171171
![Enable admin user UI in the Azure portal][auth-portal-01]
172172

173-
## Login with alternative container tool instead of docker
174-
In some scenarios, you need to use alternative container tools like `podman` instead of the common container tool `docker`. For example: [docker is no longer available in RHEL 8 and 9][docker-deprecated-redhat-8-9], and hence you will have to switch your container tool.
173+
## Log in with an alternative container tool instead of Docker
174+
In some scenarios, you need to use alternative container tools like `podman` instead of the common container tool `docker`. For example: [Docker is no longer available in RHEL 8 and 9][docker-deprecated-redhat-8-9], so you have to switch your container tool.
175175

176-
The default container tool is being set to `docker` for `az acr login` commands. If you do not set the default container tool and the `docker` command is missing in your environment, the following error will be popped:
176+
The default container tool is set to `docker` for `az acr login` commands. If you don't set the default container tool and the `docker` command is missing in your environment, the following error will be popped:
177177
```bash
178178
az acr login --name <acrName>
179179
2024-03-29 07:30:10.014426 An error occurred: DOCKER_COMMAND_ERROR
180180
Please verify if Docker client is installed and running.
181181
```
182182
183-
To change the default container tool used by `az acr login` command, you can set the environment variable `DOCKER_COMMAND`. For example:
183+
To change the default container tool that the `az acr login` command uses, you can set the environment variable `DOCKER_COMMAND`. For example:
184184
```azurecli
185185
DOCKER_COMMAND=podman \
186186
az acr login --name <acrName>

0 commit comments

Comments
 (0)