Skip to content

Commit

Permalink
API documentation update for Privileged
Browse files Browse the repository at this point in the history
The 1.7 API docs show the ability to pass Privileged
when creating a container. This is not supported as.
Privileged is now part of hostConfig and can only be
passed when starting a container.

This fixes the documentation issue.
  • Loading branch information
jamtur01 committed Dec 23, 2013
1 parent 1e5f933 commit bf17383
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/sources/api/docker_remote_api_v1.7.rst
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ Create a container
"AttachStdout":true,
"AttachStderr":true,
"PortSpecs":null,
"Privileged": false,
"Tty":false,
"OpenStdin":false,
"StdinOnce":false,
Expand Down Expand Up @@ -364,7 +363,8 @@ Start a container
{
"Binds":["/tmp:/tmp"],
"LxcConf":{"lxc.utsname":"docker"},
"PortBindings":null
"PortBindings":null,
"Privileged":false,
"PublishAllPorts":false
}
Expand Down

0 comments on commit bf17383

Please sign in to comment.