Skip to content
Snippets Groups Projects
Commit 8a0507d5 authored by Michael A. Smith's avatar Michael A. Smith
Browse files

Update Docker Syntax

parent bd5fb1b4
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