From d2385e3c2cca7937cc31b0c85799a94d7edef614 Mon Sep 17 00:00:00 2001 From: Ben Firshman Date: Wed, 1 Oct 2014 11:12:54 -0700 Subject: [PATCH] Fix fig run entrypoint option Slipped through because Wercker didn't report build status. Signed-off-by: Ben Firshman --- fig/cli/main.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/fig/cli/main.py b/fig/cli/main.py index b1d8234eb..4e711e992 100644 --- a/fig/cli/main.py +++ b/fig/cli/main.py @@ -264,13 +264,13 @@ class TopLevelCommand(Command): Usage: run [options] SERVICE [COMMAND] [ARGS...] Options: - -d Detached mode: Run container in the background, print - new container name. - --entrypoint Override the entrypoint of the image. - --no-deps Don't start linked services. - --rm Remove container after run. Ignored in detached mode. - -T Disable pseudo-tty allocation. By default `fig run` - allocates a TTY. + -d Detached mode: Run container in the background, print + new container name. + --entrypoint CMD Override the entrypoint of the image. + --no-deps Don't start linked services. + --rm Remove container after run. Ignored in detached mode. + -T Disable pseudo-tty allocation. By default `fig run` + allocates a TTY. """ service = project.get_service(options['SERVICE'])