From 4afcdbdb3c580281577dc13c0a0b5a52c1ef6f41 Mon Sep 17 00:00:00 2001 From: Ben Firshman Date: Fri, 11 Jul 2014 11:11:54 -0700 Subject: [PATCH] Add docs for volumes_from Signed-off-by: Ben Firshman --- docs/yml.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/yml.md b/docs/yml.md index 6204122fb..a299669cc 100644 --- a/docs/yml.md +++ b/docs/yml.md @@ -54,6 +54,11 @@ expose: volumes: - cache/:/tmp/cache +-- Mount all of the volumes from another service or container +volumes_from: + - service_name + - container_name + -- Add environment variables. -- Environment variables with only a key are resolved to values on the host -- machine, which can be helpful for secret or host-specific values.