Skip to content
Snippets Groups Projects
Commit 24c7eafb authored by Kamil Trzcińśki's avatar Kamil Trzcińśki
Browse files

Merge branch 'fix-docker-syntax' into 'master'

Update Docker Syntax

I think this documentation is using an out-of-date docker client. I guess that `-n` means `--name` (there is no `-n` in up-to-date docker) and `-l` means `--link` (`-l` is short for `--label` now).

See merge request !2001
parents bd5fb1b4 8a0507d5
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -190,7 +190,7 @@ This will create two service containers (MySQL and PostgreSQL).
 
1. Create a build container and execute script in its context:
```
$ cat build_script | docker run -n build -i -l mysql:service-mysql -l postgres:service-postgres ruby:2.1 /bin/bash
$ docker run --name build -i --link=service-mysql:mysql --link=service-postgres:postgres ruby:2.1 /bin/bash < build_script
```
This will create build container that has two service containers linked.
The build_script is piped using STDIN to bash interpreter which executes the build script in container.
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