Skip to content

Commit

Permalink
docs: replace and with or
Browse files Browse the repository at this point in the history
Fixes docker/docs#20436.

Signed-off-by: Arkadiusz Drabczyk <[email protected]>
  • Loading branch information
ardrabczyk committed Aug 6, 2024
1 parent 031233d commit e9292f4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions frontend/dockerfile/docs/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -669,13 +669,13 @@ This can be used to:

The supported mount types are:

| Type | Description |
| ---------------------------------------- | --------------------------------------------------------------------------------------------------------- |
| [`bind`](#run---mounttypebind) (default) | Bind-mount context directories (read-only). |
| [`cache`](#run---mounttypecache) | Mount a temporary directory to cache directories for compilers and package managers. |
| [`tmpfs`](#run---mounttypetmpfs) | Mount a `tmpfs` in the build container. |
| [`secret`](#run---mounttypesecret) | Allow the build container to access secure files such as private keys without baking them into the image and build cache. |
| [`ssh`](#run---mounttypessh) | Allow the build container to access SSH keys via SSH agents, with support for passphrases. |
| Type | Description |
| ---------------------------------------- | --------------------------------------------------------------------------------------------------------- |
| [`bind`](#run---mounttypebind) (default) | Bind-mount context directories (read-only). |
| [`cache`](#run---mounttypecache) | Mount a temporary directory to cache directories for compilers and package managers. |
| [`tmpfs`](#run---mounttypetmpfs) | Mount a `tmpfs` in the build container. |
| [`secret`](#run---mounttypesecret) | Allow the build container to access secure files such as private keys without baking them into the image or build cache. |
| [`ssh`](#run---mounttypessh) | Allow the build container to access SSH keys via SSH agents, with support for passphrases. |

### RUN --mount=type=bind

Expand Down

0 comments on commit e9292f4

Please sign in to comment.