Formatting

This commit is contained in:
Misty Stanley-Jones 2016-10-25 11:58:38 -07:00 committed by GitHub
parent 2da3e4ec97
commit 8bd6719933
1 changed files with 50 additions and 44 deletions

View File

@ -4,10 +4,6 @@ aliases:
description: Deprecated Features.
keywords:
- docker, documentation, about, technology, deprecate
menu:
main:
parent: engine_use
weight: 80
title: Deprecated Engine Features
---
@ -106,9 +102,11 @@ Log tags are now generated in a standard way across different logging drivers.
Because of which, the driver specific log tag options `syslog-tag`, `gelf-tag` and
`fluentd-tag` have been deprecated in favor of the generic `tag` option.
```bash
{% raw %}
docker --log-driver=syslog --log-opt tag="{{.ImageName}}/{{.Name}}/{{.ID}}"
{% endraw %}
```
### LXC built-in exec driver
**Deprecated In Release: [v1.8.0](https://github.com/docker/docker/releases/tag/v1.8.0)**
@ -124,11 +122,14 @@ The built-in LXC execution driver, the lxc-conf flag, and API fields have been r
The flags `-d` and `--daemon` are deprecated in favor of the `daemon` subcommand:
docker daemon -H ...
```bash
$ docker daemon -H ...
```
The following single-dash (`-opt`) variant of certain command line options
are deprecated and replaced with double-dash options (`--opt`):
```none
docker attach -nostdin
docker attach -sig-proxy
docker build -no-cache
@ -157,14 +158,17 @@ are deprecated and replaced with double-dash options (`--opt`):
docker search -t
docker search -trusted
docker tag -force
```
The following double-dash options are deprecated and have no replacement:
```none
docker run --cpuset
docker run --networking
docker ps --since-id
docker ps --before-id
docker search --trusted
```
**Deprecated In Release: [v1.5.0](https://github.com/docker/docker/releases/tag/v1.5.0)**
@ -172,9 +176,11 @@ The following double-dash options are deprecated and have no replacement:
The single-dash (`-help`) was removed, in favor of the double-dash `--help`
docker -help
docker [COMMAND] -help
```bash
$ docker -help
docker [COMMAND] -help
```
### Interacting with V1 registries