-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Add a deprecation warning about --link on default nw #4892
base: master
Are you sure you want to change the base?
Changes from all 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 |
---|---|---|
|
@@ -50,6 +50,7 @@ The table below provides an overview of the current status of deprecated feature | |
|
||
| Status | Feature | Deprecated | Remove | | ||
|------------|------------------------------------------------------------------------------------------------------------------------------------|------------|--------| | ||
| Deprecated | [Links on the default bridge network](#links-on-the-default-bridge-network) | v26.0 | - | | ||
| Deprecated | [Deprecate legacy API versions](#deprecate-legacy-api-versions) | v25.0 | v26.0 | | ||
| Deprecated | [Container short ID in network Aliases field](#container-short-id-in-network-aliases-field) | v25.0 | v26.0 | | ||
| Deprecated | [IsAutomated field, and "is-automated" filter on docker search](#isautomated-field-and-is-automated-filter-on-docker-search) | v25.0 | v26.0 | | ||
|
@@ -110,6 +111,18 @@ The table below provides an overview of the current status of deprecated feature | |
| Removed | [`--run` flag on `docker commit`](#--run-flag-on-docker-commit) | v0.10 | v1.13 | | ||
| Removed | [Three arguments form in `docker import`](#three-arguments-form-in-docker-import) | v0.6.7 | v1.12 | | ||
|
||
### Links on the default bridge network | ||
|
||
**Deprecated in Release: v26.0** | ||
**Target for Removal In Release: v28.0** | ||
|
||
The `--link` option on `docker create` and `docker run`, when used with no | ||
`--network` specified, is deprecated in v26.0 and will be removed in a future | ||
release. Custom networks should be used instead. | ||
|
||
Note that, the `--link` option is still supported when a non-default network | ||
is used. | ||
Comment on lines
+119
to
+124
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. It's deprecated for the default bridge, so Maybe something like ...
|
||
|
||
### Deprecate legacy API versions | ||
|
||
**Deprecated in Release: v25.0** | ||
|
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'm tempted to say that we deprecated it since docker 1.10 (when libnetwork was integrated in moby/moby#19198), but as we never added that to
deprecated.md
, perhaps instead we should add some crumble-path / references in the description below.We can already fill in the
Remove
column though, at least if we plan to remove it in v28.0;