From a398fce15b7b861740daaabf1f889f594c2b786b Mon Sep 17 00:00:00 2001 From: ryane Date: Mon, 26 Oct 2015 17:24:48 -0400 Subject: [PATCH] entrypoint support for docker_container resource --- r/container.html.markdown | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/r/container.html.markdown b/r/container.html.markdown index 91a4714b..f1f9707b 100644 --- a/r/container.html.markdown +++ b/r/container.html.markdown @@ -37,6 +37,11 @@ The following arguments are supported: * `command` - (Optional, list of strings) The command to use to start the container. For example, to run `/usr/bin/myprogram -f baz.conf` set the command to be `["/usr/bin/myprogram", "-f", "baz.conf"]`. +* `entrypoint` - (Optional, list of strings) The command to use as the + Entrypoint for the container. The Entrypoint allows you to configure a + container to run as an executable. For example, to run `/usr/bin/myprogram` + when starting a container, set the entrypoint to be + `["/usr/bin/myprogram"]`. * `dns` - (Optional, set of strings) Set of DNS servers. * `env` - (Optional, set of strings) Environmental variables to set. * `links` - (Optional, set of strings) Set of links for link based