Repository: aurora Updated Branches: refs/heads/master edd47d08f -> 692b5d147
Fix containers doc example. Reviewed at https://reviews.apache.org/r/48211/ Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/692b5d14 Tree: http://git-wip-us.apache.org/repos/asf/aurora/tree/692b5d14 Diff: http://git-wip-us.apache.org/repos/asf/aurora/diff/692b5d14 Branch: refs/heads/master Commit: 692b5d147a4af74f2e6eb88aaee91458041f1ae0 Parents: edd47d0 Author: Raymond Khalife <[email protected]> Authored: Fri Jun 3 18:12:08 2016 +0200 Committer: Stephan Erb <[email protected]> Committed: Fri Jun 3 18:12:08 2016 +0200 ---------------------------------------------------------------------- docs/features/containers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/aurora/blob/692b5d14/docs/features/containers.md ---------------------------------------------------------------------- diff --git a/docs/features/containers.md b/docs/features/containers.md index f774f18..729a0ad 100644 --- a/docs/features/containers.md +++ b/docs/features/containers.md @@ -10,7 +10,7 @@ Example (available in the [Vagrant environment](../getting-started/vagrant.md)): $ cat /vagrant/examples/jobs/docker/hello_docker.aurora - hello_docker = Process( + hello_world_proc = Process( name = 'hello', cmdline = """ while true; do @@ -57,4 +57,4 @@ job = Job( container = Mesos(image=DockerImage(name='my-image', tag='my-tag')) ... ) -``` \ No newline at end of file +```
