<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/docker.git/docs/reference/commandline/exec.md, branch 1.13.x</title>
<subtitle>github.com: dotcloud/docker.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker.git/'/>
<entry>
<title>docs: added support for CLI yaml file generation</title>
<updated>2017-04-03T23:11:17+00:00</updated>
<author>
<name>French Ben</name>
<email>frenchben@docker.com</email>
</author>
<published>2017-01-28T00:47:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker.git/commit/?id=5f730ed8578dc73841fb62ed94520ca292813708'/>
<id>5f730ed8578dc73841fb62ed94520ca292813708</id>
<content type='text'>
Signed-off-by: French Ben &lt;frenchben@docker.com&gt;
Signed-off-by: Tibor Vass &lt;tibor@docker.com&gt;
(cherry picked from commit 5443f0152f77eb983e6475474b02c2e11d975f1c)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: French Ben &lt;frenchben@docker.com&gt;
Signed-off-by: Tibor Vass &lt;tibor@docker.com&gt;
(cherry picked from commit 5443f0152f77eb983e6475474b02c2e11d975f1c)
</pre>
</div>
</content>
</entry>
<entry>
<title>Standardized formatting of CLI reference commands</title>
<updated>2017-04-03T22:12:33+00:00</updated>
<author>
<name>Misty Stanley-Jones</name>
<email>misty@docker.com</email>
</author>
<published>2017-04-03T21:16:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker.git/commit/?id=68e914ce620d4ab30afa59c8b5fc4b9ccd9c6b02'/>
<id>68e914ce620d4ab30afa59c8b5fc4b9ccd9c6b02</id>
<content type='text'>
Command name should be a H1

Only Description, Examples, and Related Commands should be H2

Changed 'Related information' heading to 'Related commands' since 99% it is only linking commands

Added some examples where relevant

Signed-off-by: Misty Stanley-Jones &lt;misty@docker.com&gt;
(cherry picked from commit 52df69f00d966904ba230dc2e3a0646cc52b7688)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Command name should be a H1

Only Description, Examples, and Related Commands should be H2

Changed 'Related information' heading to 'Related commands' since 99% it is only linking commands

Added some examples where relevant

Signed-off-by: Misty Stanley-Jones &lt;misty@docker.com&gt;
(cherry picked from commit 52df69f00d966904ba230dc2e3a0646cc52b7688)
</pre>
</div>
</content>
</entry>
<entry>
<title>fix frontmatter keywords value type (string, instead of []string) in /docs/reference</title>
<updated>2016-11-03T22:48:30+00:00</updated>
<author>
<name>Gaetan de Villele</name>
<email>gdevillele@gmail.com</email>
</author>
<published>2016-11-03T22:48:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker.git/commit/?id=248c699ec88bb249ce9fd03001d13f29ac0b4b99'/>
<id>248c699ec88bb249ce9fd03001d13f29ac0b4b99</id>
<content type='text'>
Signed-off-by: Gaetan de Villele &lt;gdevillele@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Gaetan de Villele &lt;gdevillele@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Sync docker/docker refs with files mistakenly edited in docker.github.io repo</title>
<updated>2016-10-20T17:51:30+00:00</updated>
<author>
<name>Misty Stanley-Jones</name>
<email>misty@docker.com</email>
</author>
<published>2016-10-19T17:25:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker.git/commit/?id=3b36f02c03ec050aa46f9a01cd2d6c60ffd93652'/>
<id>3b36f02c03ec050aa46f9a01cd2d6c60ffd93652</id>
<content type='text'>
Signed-off-by: Misty Stanley-Jones &lt;misty@docker.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Misty Stanley-Jones &lt;misty@docker.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Exec: Add ability to set environment variables</title>
<updated>2016-10-19T14:39:25+00:00</updated>
<author>
<name>Jonh Wendell</name>
<email>jonh.wendell@redhat.com</email>
</author>
<published>2016-07-13T17:24:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker.git/commit/?id=e03bf1221ee2c863f25a57af4d415e2d8ff4f26c'/>
<id>e03bf1221ee2c863f25a57af4d415e2d8ff4f26c</id>
<content type='text'>
Keeping the current behavior for exec, i.e., inheriting
variables from main process. New variables will be added
to current ones. If there's already a variable with that
name it will be overwritten.

Example of usage: docker exec -it -e TERM=vt100 &lt;container&gt; top

Closes #24355.

Signed-off-by: Jonh Wendell &lt;jonh.wendell@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Keeping the current behavior for exec, i.e., inheriting
variables from main process. New variables will be added
to current ones. If there's already a variable with that
name it will be overwritten.

Example of usage: docker exec -it -e TERM=vt100 &lt;container&gt; top

Closes #24355.

Signed-off-by: Jonh Wendell &lt;jonh.wendell@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Convert Markdown frontmatter to YAML</title>
<updated>2016-10-14T22:44:55+00:00</updated>
<author>
<name>Misty Stanley-Jones</name>
<email>misty@docker.com</email>
</author>
<published>2016-10-14T22:30:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker.git/commit/?id=b30609446d212624e3d4ce814c70130b75c552a0'/>
<id>b30609446d212624e3d4ce814c70130b75c552a0</id>
<content type='text'>
Some frontmatter such as the weights, menu stuff, etc is no longer used
'draft=true' becomes 'published: false'

Signed-off-by: Misty Stanley-Jones &lt;misty@docker.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Some frontmatter such as the weights, menu stuff, etc is no longer used
'draft=true' becomes 'published: false'

Signed-off-by: Misty Stanley-Jones &lt;misty@docker.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>update option for docker commands</title>
<updated>2016-09-12T11:10:45+00:00</updated>
<author>
<name>yuexiao-wang</name>
<email>wang.yuexiao@zte.com.cn</email>
</author>
<published>2016-09-12T10:34:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker.git/commit/?id=7084aa24c77bde6ed46b2a0b727d049b86ecffec'/>
<id>7084aa24c77bde6ed46b2a0b727d049b86ecffec</id>
<content type='text'>
Signed-off-by: yuexiao-wang &lt;wang.yuexiao@zte.com.cn&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: yuexiao-wang &lt;wang.yuexiao@zte.com.cn&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Updates on cli reference documentation</title>
<updated>2016-07-07T18:43:18+00:00</updated>
<author>
<name>Vincent Demeester</name>
<email>vincent@sbr.pm</email>
</author>
<published>2016-07-07T18:43:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker.git/commit/?id=f4cfc6b9830ed236eb588d6a4dddca7455145e70'/>
<id>f4cfc6b9830ed236eb588d6a4dddca7455145e70</id>
<content type='text'>
- Update ps with `--last` flag
- Update commands with current output
- Make sure hugo does not detect the wrong language
- Update usage for `tag` command to be more coherent with the other ones

Signed-off-by: Vincent Demeester &lt;vincent@sbr.pm&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Update ps with `--last` flag
- Update commands with current output
- Make sure hugo does not detect the wrong language
- Update usage for `tag` command to be more coherent with the other ones

Signed-off-by: Vincent Demeester &lt;vincent@sbr.pm&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Implement configurable detach key</title>
<updated>2016-01-03T22:03:39+00:00</updated>
<author>
<name>Vincent Demeester</name>
<email>vincent@sbr.pm</email>
</author>
<published>2016-01-03T22:03:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker.git/commit/?id=15aa2a663b47b6126a66efefcadb64edfbffb9f5'/>
<id>15aa2a663b47b6126a66efefcadb64edfbffb9f5</id>
<content type='text'>
Implement configurable detach keys (for `attach`, exec`, `run` and
`start`) using the client-side configuration

- Adds a `--detach-keys` flag to `attach`, `exec`, `run` and `start`
  commands.
- Adds a new configuration field (in `~/.docker/config.json`) to
  configure the default escape keys for docker client.

Signed-off-by: Vincent Demeester &lt;vincent@sbr.pm&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Implement configurable detach keys (for `attach`, exec`, `run` and
`start`) using the client-side configuration

- Adds a `--detach-keys` flag to `attach`, `exec`, `run` and `start`
  commands.
- Adds a new configuration field (in `~/.docker/config.json`) to
  configure the default escape keys for docker client.

Signed-off-by: Vincent Demeester &lt;vincent@sbr.pm&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>remove =false from options that default to false in the docs</title>
<updated>2015-12-23T15:11:35+00:00</updated>
<author>
<name>Doug Davis</name>
<email>dug@us.ibm.com</email>
</author>
<published>2015-12-23T14:37:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker.git/commit/?id=e6115a6c1c02768898b0a47e550e6c67b433c436'/>
<id>e6115a6c1c02768898b0a47e550e6c67b433c436</id>
<content type='text'>
This re-aligns the docs with what the cmd line now does.

Signed-off-by: Doug Davis &lt;dug@us.ibm.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This re-aligns the docs with what the cmd line now does.

Signed-off-by: Doug Davis &lt;dug@us.ibm.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
