Last active
September 15, 2015 03:17
-
-
Save julz/359740faa210b6ce48c9 to your computer and use it in GitHub Desktop.
Revisions
-
julz revised this gist
Sep 2, 2015 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,7 @@ # Operations: The command line should support each operation listed below as its first argument. It operates by default on the 'config.json' in the current directory. ## Start Starts a container from a bundle directory. -
julz revised this gist
Sep 2, 2015 . 1 changed file with 5 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -11,12 +11,12 @@ Example: ~~~~ # in a bundle directory with a process that echos "hello" and exits 42 $ funC start hello $ echo $? 42 ~~~~ ## Stop ... -
julz revised this gist
Sep 2, 2015 . 1 changed file with 6 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ # Operations: ## Start Starts a container from a bundle directory. @@ -11,6 +11,10 @@ Example: ~~~~ # in a bundle directory with a process that echos "hello" and exits 42 $ funC start ## Stop ... hello $ echo $? -
julz created this gist
Sep 2, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ Operations: # Start Starts a container from a bundle directory. *Flags:* none. *Output:* The process output is printed to stdout and stderr, and the process exits with the delegate process exit code. Example: ~~~~ # in a bundle directory with a process that echos "hello" and exits 42 $ funC start hello $ echo $? 42 ~~~~