Commit 4a08aac2 by James Cammarata

Updating version_added for docker net param and adding an example

parent 1051748b
...@@ -185,11 +185,11 @@ options: ...@@ -185,11 +185,11 @@ options:
version_added: "1.6" version_added: "1.6"
net: net:
description: description:
- Set Network mode for the container (bridge, none, container:<name|id>, host) - Set Network mode for the container (bridge, none, container:<name|id>, host). Requires docker >= 0.11.
required: false required: false
default: false default: false
aliases: [] aliases: []
version_added: "1.11" version_added: "1.8"
author: Cove Schneider, Joshua Conner, Pavel Antonov author: Cove Schneider, Joshua Conner, Pavel Antonov
requirements: [ "docker-py >= 0.3.0", "docker >= 0.10.0" ] requirements: [ "docker-py >= 0.3.0", "docker >= 0.10.0" ]
''' '''
...@@ -300,6 +300,14 @@ Create containers with options specified as strings and lists as comma-separated ...@@ -300,6 +300,14 @@ Create containers with options specified as strings and lists as comma-separated
sudo: yes sudo: yes
tasks: tasks:
docker: image=namespace/image_name links=postgresql:db,redis:redis docker: image=namespace/image_name links=postgresql:db,redis:redis
Create a container with no networking:
- hosts: web
sudo: yes
tasks:
docker: image=namespace/image_name net=none
''' '''
HAS_DOCKER_PY = True HAS_DOCKER_PY = True
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment