Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion _vale/config/vocabularies/Docker/accept.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(?-i)[A-Z]{2,}'?s
(?i)[A-Z]{2,}'?s
Amazon
Anchore
Apple
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ $ docker compose --env-file ./config/.env.dev up
$ docker compose --env-file .env.dev up -e DATABASE_URL=mysql://new_user:new_password@new_db:3306/new_database
```

### local `.env` file versus <project directory> `.env` file
### local `.env` file versus &lt;project directory&gt; `.env` file

An `.env` file can also be used to declare [pre-defined environment variables](envvars.md) used to control Compose behavior and files to be loaded.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@ In general, use your `.syncignore` file to exclude items that aren't critical to

- POSIX-style Windows paths are not supported. Avoid setting the [`COMPOSE_CONVERT_WINDOWS_PATHS`](/manuals/compose/how-tos/environment-variables/envvars.md#compose_convert_windows_paths) environment variable in Docker Compose.

- If you don't have the correct permissions to create symbolic links and your container attempts to create symbolic links in your file share instance, an **unable to create symbolic link** error message displays. For Windows users, see Microsoft's [Create symbolic links documentation](https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-10/security/threat-protection/security-policy-settings/create-symbolic-links) for best practices and location of the **Create symbolic links** security policy setting. For Mac and Linux users, check that you have write permissions on the folder.

## Feedback and support

To give feedback or report bugs, visit:
Expand Down
2 changes: 2 additions & 0 deletions content/manuals/desktop/features/vmm.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ These improvements directly impact developers who rely on frequent file access a
>
> Docker VMM requires a minimum of 4GB of memory to be allocated to the Docker Linux VM. The memory needs to be increased before Docker VMM is enabled, and this can be done from the **Resources** tab in **Settings**.

Docker VMM is based on [libkrun](https://github.com/containers/libkrun).

### Known issues

As Docker VMM is still in Beta, there are a few known limitations:
Expand Down
3 changes: 0 additions & 3 deletions content/manuals/engine/security/rootless.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,6 @@ testuser:231072:65536
{{< tab name="Debian GNU/Linux" >}}
- Install `dbus-user-session` package if not installed. Run `sudo apt-get install -y dbus-user-session` and relogin.

- For Debian 10, add `kernel.unprivileged_userns_clone=1` to `/etc/sysctl.conf` (or
`/etc/sysctl.d`) and run `sudo sysctl --system`. This step is not required on Debian 11.

- For Debian 11, installing `fuse-overlayfs` is recommended. Run `sudo apt-get install -y fuse-overlayfs`.
This step is not required on Debian 12.

Expand Down
Loading