Commit ad46466c authored by Achilleas Pipinellis's avatar Achilleas Pipinellis

Merge branch 'fix/ci-docker-images-documentation' into 'master'

Replace '-n' with '--name' in docker related documentation

`-n` for `docker run` is outdated. We should use `--name` instead. This MR fixes the example in documentation.

Fixes #15174

See merge request !3908
parents 19fc0ea7 9bd0f46a
......@@ -239,8 +239,8 @@ is specific to your project.
Then create some service containers:
```
docker run -d -n service-mysql mysql:latest
docker run -d -n service-postgres postgres:latest
docker run -d --name service-mysql mysql:latest
docker run -d --name service-postgres postgres:latest
```
This will create two service containers, named `service-mysql` and
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment