diff --git a/_data/engine-cli/docker_config_inspect.yaml b/_data/engine-cli/docker_config_inspect.yaml index b72c086af33..41b001263ca 100644 --- a/_data/engine-cli/docker_config_inspect.yaml +++ b/_data/engine-cli/docker_config_inspect.yaml @@ -6,7 +6,7 @@ long: |- By default, this renders all results in a JSON array. If a format is specified, the given template will be executed for each result. - Go's [text/template](http://golang.org/pkg/text/template/) package + Go's [text/template](https://golang.org/pkg/text/template/) package describes all the details of the format. For detailed information about using configs, refer to [store configuration data using Docker Configs](https://docs.docker.com/engine/swarm/configs/). diff --git a/_data/engine-cli/docker_events.yaml b/_data/engine-cli/docker_events.yaml index 2e5b825c1e1..f5eda10eaff 100644 --- a/_data/engine-cli/docker_events.yaml +++ b/_data/engine-cli/docker_events.yaml @@ -174,11 +174,11 @@ long: |- If a format (`--format`) is specified, the given template will be executed instead of the default - format. Go's [text/template](http://golang.org/pkg/text/template/) package + format. Go's [text/template](https://golang.org/pkg/text/template/) package describes all the details of the format. If a format is set to `{{json .}}`, the events are streamed as valid JSON - Lines. For information about JSON Lines, please refer to http://jsonlines.org/. + Lines. For information about JSON Lines, please refer to https://jsonlines.org/. usage: docker events [OPTIONS] pname: docker plink: docker.yaml diff --git a/_data/engine-cli/docker_info.yaml b/_data/engine-cli/docker_info.yaml index 8dd60c80b76..88643e32862 100644 --- a/_data/engine-cli/docker_info.yaml +++ b/_data/engine-cli/docker_info.yaml @@ -7,7 +7,7 @@ long: |- under different names is counted only once. If a format is specified, the given template will be executed instead of the - default format. Go's [text/template](http://golang.org/pkg/text/template/) package + default format. Go's [text/template](https://golang.org/pkg/text/template/) package describes all the details of the format. Depending on the storage driver in use, additional information can be shown, such diff --git a/_data/engine-cli/docker_kill.yaml b/_data/engine-cli/docker_kill.yaml index 8fe16991c46..d13cb948c41 100644 --- a/_data/engine-cli/docker_kill.yaml +++ b/_data/engine-cli/docker_kill.yaml @@ -64,7 +64,7 @@ examples: |- $ docker kill --signal=1 my_container ``` - Refer to the [`signal(7)`](http://man7.org/linux/man-pages/man7/signal.7.html) + Refer to the [`signal(7)`](https://man7.org/linux/man-pages/man7/signal.7.html) man-page for a list of standard Linux signals. deprecated: false experimental: false diff --git a/_data/engine-cli/docker_node_inspect.yaml b/_data/engine-cli/docker_node_inspect.yaml index 174a6f5d888..29ad73d0f5e 100644 --- a/_data/engine-cli/docker_node_inspect.yaml +++ b/_data/engine-cli/docker_node_inspect.yaml @@ -4,7 +4,7 @@ long: |- Returns information about a node. By default, this command renders all results in a JSON array. You can specify an alternate format to execute a given template for each result. Go's - [text/template](http://golang.org/pkg/text/template/) package describes all the + [text/template](https://golang.org/pkg/text/template/) package describes all the details of the format. > **Note** diff --git a/_data/engine-cli/docker_secret_inspect.yaml b/_data/engine-cli/docker_secret_inspect.yaml index e63acbf08d4..0e21f0ce089 100644 --- a/_data/engine-cli/docker_secret_inspect.yaml +++ b/_data/engine-cli/docker_secret_inspect.yaml @@ -6,7 +6,7 @@ long: |- By default, this renders all results in a JSON array. If a format is specified, the given template will be executed for each result. - Go's [text/template](http://golang.org/pkg/text/template/) package + Go's [text/template](https://golang.org/pkg/text/template/) package describes all the details of the format. For detailed information about using secrets, refer to [manage sensitive data with Docker secrets](https://docs.docker.com/engine/swarm/secrets/). diff --git a/_data/engine-cli/docker_service_create.yaml b/_data/engine-cli/docker_service_create.yaml index 3105c7a11e4..d3d5359a3c4 100644 --- a/_data/engine-cli/docker_service_create.yaml +++ b/_data/engine-cli/docker_service_create.yaml @@ -1588,7 +1588,7 @@ examples: |- ### Create services using templates You can use templates for some flags of `service create`, using the syntax - provided by the Go's [text/template](http://golang.org/pkg/text/template/) package. + provided by the Go's [text/template](https://golang.org/pkg/text/template/) package. The supported flags are the following : diff --git a/_data/engine-cli/docker_service_inspect.yaml b/_data/engine-cli/docker_service_inspect.yaml index 7f31a8ce9e1..346c9db0bd6 100644 --- a/_data/engine-cli/docker_service_inspect.yaml +++ b/_data/engine-cli/docker_service_inspect.yaml @@ -6,7 +6,7 @@ long: |- By default, this renders all results in a JSON array. If a format is specified, the given template will be executed for each result. - Go's [text/template](http://golang.org/pkg/text/template/) package + Go's [text/template](https://golang.org/pkg/text/template/) package describes all the details of the format. > **Note** diff --git a/_data/engine-cli/docker_system_events.yaml b/_data/engine-cli/docker_system_events.yaml index 5c538dfb210..5f07232a069 100644 --- a/_data/engine-cli/docker_system_events.yaml +++ b/_data/engine-cli/docker_system_events.yaml @@ -127,11 +127,11 @@ long: |- If a format (`--format`) is specified, the given template will be executed instead of the default - format. Go's [text/template](http://golang.org/pkg/text/template/) package + format. Go's [text/template](https://golang.org/pkg/text/template/) package describes all the details of the format. If a format is set to `{{json .}}`, the events are streamed as valid JSON - Lines. For information about JSON Lines, please refer to http://jsonlines.org/ . + Lines. For information about JSON Lines, please refer to https://jsonlines.org/ . usage: docker system events [OPTIONS] pname: docker system plink: docker_system.yaml diff --git a/_data/engine-cli/docker_version.yaml b/_data/engine-cli/docker_version.yaml index 3c03a2ab77b..dd9b0e9b1e6 100644 --- a/_data/engine-cli/docker_version.yaml +++ b/_data/engine-cli/docker_version.yaml @@ -4,7 +4,7 @@ long: |- By default, this will render all version information in an easy to read layout. If a format is specified, the given template will be executed instead. - Go's [text/template](http://golang.org/pkg/text/template/) package + Go's [text/template](https://golang.org/pkg/text/template/) package describes all the details of the format. usage: docker version [OPTIONS] pname: docker diff --git a/_data/engine-cli/docker_volume_create.yaml b/_data/engine-cli/docker_volume_create.yaml index 50ffefdabb6..720764b5967 100644 --- a/_data/engine-cli/docker_volume_create.yaml +++ b/_data/engine-cli/docker_volume_create.yaml @@ -93,7 +93,7 @@ examples: |- `mount` command. You can provide multiple options by passing the `--opt` flag multiple times. Some `mount` options (such as the `o` option) can take a comma-separated list of options. Complete list of available mount options can be - found [here](http://man7.org/linux/man-pages/man8/mount.8.html). + found [here](https://man7.org/linux/man-pages/man8/mount.8.html). For example, the following creates a `tmpfs` volume called `foo` with a size of 100 megabyte and `uid` of 1000. diff --git a/_data/engine-cli/docker_volume_inspect.yaml b/_data/engine-cli/docker_volume_inspect.yaml index 06ff4248ddb..fc70b3008be 100644 --- a/_data/engine-cli/docker_volume_inspect.yaml +++ b/_data/engine-cli/docker_volume_inspect.yaml @@ -4,7 +4,7 @@ long: |- Returns information about a volume. By default, this command renders all results in a JSON array. You can specify an alternate format to execute a given template for each result. Go's - [text/template](http://golang.org/pkg/text/template/) package describes all the + [text/template](https://golang.org/pkg/text/template/) package describes all the details of the format. usage: docker volume inspect [OPTIONS] VOLUME [VOLUME...] pname: docker volume diff --git a/_data/glossary.yaml b/_data/glossary.yaml index d3b58d8da08..712070357aa 100644 --- a/_data/glossary.yaml +++ b/_data/glossary.yaml @@ -4,13 +4,13 @@ aufs: | aufs (advanced multi layered unification filesystem) is a Linux [filesystem](#filesystem) that Docker supports as a storage backend. It implements the - [union mount](http://en.wikipedia.org/wiki/Union_mount) for Linux file systems. + [union mount](https://en.wikipedia.org/wiki/Union_mount) for Linux file systems. base image: | A **base image** has no parent image specified in its Dockerfile. It is created using a Dockerfile with the `FROM scratch` directive. btrfs: | btrfs (B-tree file system) is a Linux [filesystem](#filesystem) that Docker - supports as a storage backend. It is a [copy-on-write](http://en.wikipedia.org/wiki/Copy-on-write) + supports as a storage backend. It is a [copy-on-write](https://en.wikipedia.org/wiki/Copy-on-write) filesystem. build: | build is the process of building Docker images using a [Dockerfile](#dockerfile). @@ -170,7 +170,7 @@ Machine: | *Also known as : docker-machine* namespace: | - A [Linux namespace](http://man7.org/linux/man-pages/man7/namespaces.7.html) + A [Linux namespace](https://man7.org/linux/man-pages/man7/namespaces.7.html) is a Linux kernel feature that isolates and virtualizes system resources. Processes which are restricted to a namespace can only interact with resources or processes that are part of the same namespace. Namespaces are an important part of Docker's isolation model. Namespaces exist for each type of @@ -189,7 +189,7 @@ overlay network driver: | for docker containers in a cluster. overlay storage driver: | OverlayFS is a [filesystem](#filesystem) service for Linux which implements a - [union mount](http://en.wikipedia.org/wiki/Union_mount) for other file systems. + [union mount](https://en.wikipedia.org/wiki/Union_mount) for other file systems. It is supported by the Docker daemon as a storage driver. parent image: | An image's **parent image** is the image designated in the `FROM` directive diff --git a/_includes/footer.html b/_includes/footer.html index be229ae4e09..6c45066d48a 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -88,8 +88,8 @@