-
Notifications
You must be signed in to change notification settings - Fork 8.1k
harmonia: one more pass for bind volumes #21582
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
Conversation
✅ Deploy Preview for docsdocker ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
rodnymolina
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
content/manuals/harmonia/_index.md
Outdated
| - Containers cannot access host through DNS `host.docker.internal`. | ||
| - File binds (non-directory binds) are currently static, meaning changes will not be reflected until the container is restarted. This also affects Compose configs and secrets directives. | ||
| - Bind mounts, such as `-v /localpath:/incontainer` in the `docker run` command, are not supported without using a file-sync. | ||
| - Bind _mounts_, such as `-v /localpath:/incontainer` in the `docker run` command, require starting a file-sync. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s / starting / creating
Co-authored-by: Nick Sieger <nicksieger@gmail.com>
| - Bind mounts, such as `-v /localpath:/incontainer` in the `docker run` command, are not supported without using a file-sync. | ||
| - Bind _mounts_, such as `-v /localpath:/incontainer` in the `docker run` command, require creating a file-sync. | ||
| - Starting a file-sync for a directory with a large amount of may take extra time to sync and become ready for use in a container. | ||
| - Bind _volumes_, such as those created with `docker volume create --driver local --opt type=none --opt o=bind --opt device=/some/host/path myvolname` or via the compose equivalent, are not supported. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: local is the default driver, so can be omitted in this example for brevity.
| - Bind _volumes_, such as those created with `docker volume create --driver local --opt type=none --opt o=bind --opt device=/some/host/path myvolname` or via the compose equivalent, are not supported. | |
| - Bind _volumes_, such as those created with `docker volume create --opt type=none --opt o=bind --opt device=/some/host/path myvolname` or via the compose equivalent, are not supported. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I actually left this in so the context would be clear. Feel free to commit suggestion if you think its not necessary.
Co-authored-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
Description
After some discussion with the team, we've added a few more conditions.
Related issues or tickets
Reviews