Skip to content
Snippets Groups Projects
Commit ad46466c authored by Achilleas Pipinellis's avatar Achilleas Pipinellis
Browse files

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
No related branches found
No related tags found
No related merge requests found
Loading
@@ -239,8 +239,8 @@ is specific to your project.
Loading
@@ -239,8 +239,8 @@ is specific to your project.
Then create some service containers: Then create some service containers:
   
``` ```
docker run -d -n service-mysql mysql:latest docker run -d --name service-mysql mysql:latest
docker run -d -n service-postgres postgres:latest docker run -d --name service-postgres postgres:latest
``` ```
   
This will create two service containers, named `service-mysql` and This will create two service containers, named `service-mysql` and
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment