1
0
mirror of https://github.com/docker/cli.git synced 2026-01-06 05:41:44 +03:00

Merge pull request #3923 from dozjul/master

Added missing backslash to documentation cli snippet
This commit is contained in:
Sebastiaan van Stijn
2022-12-18 11:18:16 +01:00
committed by GitHub

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
```