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

[ci skip]
This commit is contained in:
Tomasz Maczukin 2016-04-25 12:10:56 +02:00
parent 2eee6a0cbc
commit 9bd0f46a85
No known key found for this signature in database
GPG Key ID: 7E9EB2E4B0F625CD
1 changed files with 2 additions and 2 deletions

View File

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