-
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
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -263,7 +263,9 @@ Run `docker harmonia doctor` to print helpful troubleshooting information. | |||||
| - KinD does not run on Project Harmonia due to some hard-coded assumptions to ensure it's running in a privileged container. K3d is a good alternative. | ||||||
| - 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. | ||||||
stevvooe marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||
| - 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. | ||||||
stevvooe marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||
| - 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. | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit:
Suggested change
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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. |
||||||
| - Port-forwarding for UDP is not supported. | ||||||
| - Docker Compose projects relying on `watch` in `sync` mode are not working with the `tar` synchronizer. Configure it to use `docker cp` instead, disable tar sync by setting `COMPOSE_EXPERIMENTAL_WATCH_TAR=0` in your environment. | ||||||
| - Some Docker Engine features that let you access the underlying host, such as `--pid=host`, `--network=host`, and `--ipc=host`, are currently disabled. | ||||||
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