Update 06_bind_mounts.md

There were some vocabulary errors in the above corrected (committed) changes.
This commit is contained in:
Anand Pabbineedi 2023-05-27 14:56:51 +05:30 committed by GitHub
parent c572de1b40
commit 158939d71a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -50,13 +50,13 @@ command prompt (`cmd`).
2. Run the following command to start `bash` in an `ubuntu` container with a
bind mount.
If you are using an Mac or Linux device, then use the following command.
If you are using a Mac or Linux device, then use the following command:
```console
$ docker run -it --mount type=bind,src="$(pwd)",target=/src ubuntu bash
```
If you are using Windows, then use the following command in PowerShell.
If you are using Windows, then use the following command in PowerShell:
```powershell
$ docker run -it --mount "type=bind,src=$pwd,target=/src" ubuntu bash