Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e4bce35

Browse files
author
Misty Stanley-Jones
committed
Sync vnext-engine branch to docker/docker SHA 2f12d28
This branch will contain forward-looking Engine-specific docs and be the equivalent of docker/docker master for docs
1 parent 4a833da commit e4bce35

File tree

270 files changed

+5085
-3984
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

270 files changed

+5085
-3984
lines changed

engine/admin/ambassador_pattern_linking.md

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
1-
---
2-
aliases:
3-
- /engine/articles/ambassador_pattern_linking/
4-
description: Using the Ambassador pattern to abstract (network) services
5-
keywords:
6-
- Examples, Usage, links, docker, documentation, examples, names, name, container
7-
naming
8-
menu:
9-
main:
10-
parent: engine_admin
11-
weight: 15
12-
title: Link via an ambassador container
13-
---
1+
<!--[metadata]>
2+
+++
3+
aliases = ["/engine/articles/ambassador_pattern_linking/"]
4+
title = "Link via an ambassador container"
5+
description = "Using the Ambassador pattern to abstract (network) services"
6+
keywords = ["Examples, Usage, links, docker, documentation, examples, names, name, container naming"]
7+
[menu.main]
8+
parent = "engine_admin"
9+
weight = 15
10+
+++
11+
<![end-metadata]-->
1412

1513
# Link via an ambassador container
1614

engine/admin/b2d_volume_resize.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
---
2-
description: Resizing a Boot2Docker volume in VirtualBox with GParted
3-
draft: "true"
4-
keywords:
5-
- boot2docker, volume, virtualbox
6-
menu:
7-
main:
8-
parent: smn_win_osx
9-
title: "Resizing a Boot2Docker volume\t"
10-
---
11-
12-
# Getting no space left on device errors with Boot2Docker?
1+
<!--[metadata]>
2+
+++
3+
draft = "true"
4+
title = "Resizing a Boot2Docker volume "
5+
description = "Resizing a Boot2Docker volume in VirtualBox with GParted"
6+
keywords = ["boot2docker, volume, virtualbox"]
7+
[menu.main]
8+
parent = "smn_win_osx"
9+
+++
10+
<![end-metadata]-->
11+
12+
# Getting "no space left on device" errors with Boot2Docker?
1313

1414
If you're using Boot2Docker with a large number of images, or the images you're
1515
working with are very large, your pulls might start failing with "no space left

engine/admin/chef.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
1-
---
2-
aliases:
3-
- /engine/articles/chef/
4-
description: Installation and using Docker via Chef
5-
keywords:
6-
- chef, installation, usage, docker, documentation
7-
menu:
8-
main:
9-
parent: engine_admin
10-
weight: "11"
11-
title: Using Chef
12-
---
1+
<!--[metadata]>
2+
+++
3+
aliases = ["/engine/articles/chef/"]
4+
title = "Using Chef"
5+
description = "Installation and using Docker via Chef"
6+
keywords = ["chef, installation, usage, docker, documentation"]
7+
[menu.main]
8+
parent = "engine_admin"
9+
weight="11"
10+
+++
11+
<![end-metadata]-->
1312

1413
# Using Chef
1514

engine/admin/dsc.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
1-
---
2-
aliases:
3-
- /engine/articles/dsc/
4-
description: Using DSC to configure a new Docker host
5-
keywords:
6-
- powershell, dsc, installation, usage, docker, documentation
7-
menu:
8-
main:
9-
parent: engine_admin
10-
weight: "10"
11-
title: PowerShell DSC Usage
12-
---
1+
<!--[metadata]>
2+
+++
3+
aliases = ["/engine/articles/dsc/"]
4+
title = "PowerShell DSC Usage"
5+
description = "Using DSC to configure a new Docker host"
6+
keywords = ["powershell, dsc, installation, usage, docker, documentation"]
7+
[menu.main]
8+
parent = "engine_admin"
9+
weight="10"
10+
+++
11+
<![end-metadata]-->
1312

1413
# Using PowerShell DSC
1514

engine/admin/formatting.md

Lines changed: 12 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
---
2-
description: CLI and log output formatting reference
3-
keywords:
4-
- format, formatting, output, templates, log
5-
menu:
6-
main:
7-
parent: engine_admin
8-
weight: 7
9-
title: Format command and log output
10-
---
1+
<!--[metadata]>
2+
+++
3+
title = "Format command and log output"
4+
description = "CLI and log output formatting reference"
5+
keywords = ["format, formatting, output, templates, log"]
6+
[menu.main]
7+
parent = "engine_admin"
8+
weight=7
9+
+++
10+
<![end-metadata]-->
1111

1212
# Formatting reference
1313

@@ -20,6 +20,7 @@ list of elements they support in their templates:
2020
- [Docker Log Tag formatting](logging/log_tags.md)
2121
- [Docker Network Inspect formatting](../reference/commandline/network_inspect.md)
2222
- [Docker PS formatting](../reference/commandline/ps.md#formatting)
23+
- [Docker Stats formatting](../reference/commandline/stats.md#formatting)
2324
- [Docker Volume Inspect formatting](../reference/commandline/volume_inspect.md)
2425
- [Docker Version formatting](../reference/commandline/version.md#examples)
2526

@@ -33,46 +34,34 @@ This is the complete list of the available functions with examples:
3334
Join concatenates a list of strings to create a single string.
3435
It puts a separator between each element in the list.
3536

36-
{% raw %}
3737
$ docker ps --format '{{join .Names " or "}}'
38-
{% endraw %}
3938

4039
### Json
4140

4241
Json encodes an element as a json string.
4342

44-
{% raw %}
4543
$ docker inspect --format '{{json .Mounts}}' container
46-
{% endraw %}
4744

4845
### Lower
4946

5047
Lower turns a string into its lower case representation.
5148

52-
{% raw %}
5349
$ docker inspect --format "{{lower .Name}}" container
54-
{% endraw %}
5550

5651
### Split
5752

5853
Split slices a string into a list of strings separated by a separator.
5954

60-
{% raw %}
6155
# docker inspect --format '{{split (join .Names "/") "/"}}' container
62-
{% endraw %}
6356

6457
### Title
6558

6659
Title capitalizes a string.
6760

68-
{% raw %}
6961
$ docker inspect --format "{{title .Name}}" container
70-
{% endraw %}
7162

7263
### Upper
7364

74-
Upper turns a string into its upper case representation.
65+
Upper turms a string into its upper case representation.
7566

76-
{% raw %}
7767
$ docker inspect --format "{{upper .Name}}" container
78-
{% endraw %}

engine/admin/host_integration.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
1-
---
2-
aliases:
3-
- /engine/articles/host_integration/
4-
description: How to generate scripts for upstart, systemd, etc.
5-
keywords:
6-
- systemd, upstart, supervisor, docker, documentation, host integration
7-
menu:
8-
main:
9-
parent: engine_admin
10-
weight: "5"
11-
title: Automatically start containers
12-
---
1+
<!--[metadata]>
2+
+++
3+
aliases = ["/engine/articles/host_integration/"]
4+
title = "Automatically start containers"
5+
description = "How to generate scripts for upstart, systemd, etc."
6+
keywords = ["systemd, upstart, supervisor, docker, documentation, host integration"]
7+
[menu.main]
8+
parent = "engine_admin"
9+
weight="5"
10+
+++
11+
<![end-metadata]-->
1312

1413
# Automatically start containers
1514

engine/admin/index.md

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
1-
---
2-
aliases:
3-
- /engine/articles/configuring/
4-
- /engine/admin/configuring/
5-
description: Configuring and running the Docker daemon on various distributions
6-
keywords:
7-
- docker, daemon, configuration, running, process managers
8-
menu:
9-
main:
10-
parent: engine_admin
11-
weight: 0
12-
title: Configuring and running Docker
13-
---
1+
<!--[metadata]>
2+
+++
3+
aliases = [
4+
"/engine/articles/configuring/",
5+
"/engine/admin/configuring/"
6+
]
7+
title = "Configuring and running Docker"
8+
description = "Configuring and running the Docker daemon on various distributions"
9+
keywords = ["docker, daemon, configuration, running, process managers"]
10+
[menu.main]
11+
parent = "engine_admin"
12+
weight = 0
13+
+++
14+
<![end-metadata]-->
1415

1516
# Configuring and running Docker on various distributions
1617

engine/admin/live-restore.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
---
2-
description: How to keep containers running when the daemon isn't available.
3-
keywords:
4-
- docker, upgrade, daemon, dockerd, live-restore, daemonless container
5-
menu:
6-
main:
7-
parent: engine_admin
8-
weight: "6"
9-
title: Keep containers alive during daemon downtime
10-
---
1+
<!--[metadata]>
2+
+++
3+
title = "Keep containers alive during daemon downtime"
4+
description = "How to keep containers running when the daemon isn't available."
5+
keywords = ["docker, upgrade, daemon, dockerd, live-restore, daemonless container"]
6+
[menu.main]
7+
parent = "engine_admin"
8+
weight="6"
9+
+++
10+
<![end-metadata]-->
1111

1212
# Keep containers alive during daemon downtime
1313

engine/admin/logging/awslogs.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
---
2-
aliases:
3-
- /engine/reference/logging/awslogs/
4-
description: Describes how to use the Amazon CloudWatch Logs logging driver.
5-
keywords:
6-
- AWS, Amazon, CloudWatch, logging, driver
7-
menu:
8-
main:
9-
parent: smn_logging
10-
title: Amazon CloudWatch Logs logging driver
11-
---
1+
<!--[metadata]>
2+
+++
3+
aliases = ["/engine/reference/logging/awslogs/"]
4+
title = "Amazon CloudWatch Logs logging driver"
5+
description = "Describes how to use the Amazon CloudWatch Logs logging driver."
6+
keywords = ["AWS, Amazon, CloudWatch, logging, driver"]
7+
[menu.main]
8+
parent = "smn_logging"
9+
+++
10+
<![end-metadata]-->
1211

1312
# Amazon CloudWatch Logs logging driver
1413

engine/admin/logging/etwlogs.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
---
2-
description: Describes how to use the etwlogs logging driver.
3-
keywords:
4-
- ETW, docker, logging, driver
5-
menu:
6-
main:
7-
parent: smn_logging
8-
title: ETW logging driver
9-
---
1+
<!--[metadata]>
2+
+++
3+
title = "ETW logging driver"
4+
description = "Describes how to use the etwlogs logging driver."
5+
keywords = ["ETW, docker, logging, driver"]
6+
[menu.main]
7+
parent = "smn_logging"
8+
+++
9+
<![end-metadata]-->
10+
1011

1112
# ETW logging driver
1213

0 commit comments

Comments
 (0)