From 32daaff5fd6ef203d1198c0ab1dd56b5b85e350c Mon Sep 17 00:00:00 2001 From: Azat <8280770+azataiot@users.noreply.github.com> Date: Mon, 15 Apr 2024 10:47:58 +0300 Subject: [PATCH] fix typo in Update 05-services.md (#19802) fix typo in Update 05-services.md, in line 1415, from `procotol` to `protocol` --- content/compose/compose-file/05-services.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/compose/compose-file/05-services.md b/content/compose/compose-file/05-services.md index e6d2af8109..04a92bc71f 100644 --- a/content/compose/compose-file/05-services.md +++ b/content/compose/compose-file/05-services.md @@ -1412,7 +1412,7 @@ expressed in the short form. - `published`: The publicly exposed port. It is defined as a string and can be set as a range using syntax `start-end`. It means the actual port is assigned a remaining available port, within the set range. - `host_ip`: The Host IP mapping, unspecified means all network interfaces (`0.0.0.0`). - `protocol`: The port protocol (`tcp` or `udp`). Defaults to `tcp`. -- `app_protocol`: The application procotol (TCP/IP level 4 / OSI level 7) this port is used for. This is optional and can be used as a hint for Compose to offer richer behavior for protocols that it understands. Introduced in Docker Compose version [2.26.0](../release-notes.md#2260). +- `app_protocol`: The application protocol (TCP/IP level 4 / OSI level 7) this port is used for. This is optional and can be used as a hint for Compose to offer richer behavior for protocols that it understands. Introduced in Docker Compose version [2.26.0](../release-notes.md#2260). - `mode`: `host`: For publishing a host port on each node, or `ingress` for a port to be load balanced. Defaults to `ingress`. - `name`: A human-readable name for the port, used to document it's usage within the service.