Added missing backslash to documentation sites cli snippet

I think the cli code block misses a backslash to brevent line break when copy/pasting it to a terminal.
I doubt that this is intentional, if it is, feel free to reject the pr.

Signed-off-by: Julian <gitea+julian@ic.thejulian.uk>
This commit is contained in:
Julian 2022-12-18 10:47:51 +01:00
parent 51f36c6be1
commit 895e7a3df8
No known key found for this signature in database
GPG Key ID: 2C60F70C51E5ACFC
1 changed files with 1 additions and 1 deletions

View File

@ -291,7 +291,7 @@ service with two labels:
```console
$ docker service create \
--name redis_2 \
--label com.example.foo="bar"
--label com.example.foo="bar" \
--label bar=baz \
redis:3.0.6
```