From de78cb0dbdea32169b0c30c4950b88033c2d11fa Mon Sep 17 00:00:00 2001 From: Olivier Date: Thu, 31 Dec 2020 21:53:12 +0000 Subject: [PATCH] Update documentation --- scone/default/utensils/docker_utensils.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scone/default/utensils/docker_utensils.py b/scone/default/utensils/docker_utensils.py index 6d6970c..d0b275d 100644 --- a/scone/default/utensils/docker_utensils.py +++ b/scone/default/utensils/docker_utensils.py @@ -76,7 +76,9 @@ class DockerContainerRun(Utensil): ports: Dict[str, Tuple[str, int]] # Volumes to mount inside the container. # Key is either a host path or a container name. - # Value is a dictionary with the keys. + # Value is a dictionary with the keys of: + # bind = path to bind inside the container + # mode = 'rw' or 'ro' volumes: Dict[str, Dict[str, str]] @attr.s(auto_attribs=True)