Skip to content

Instantly share code, notes, and snippets.

@julz
Last active September 15, 2015 03:17
Show Gist options
  • Select an option

  • Save julz/359740faa210b6ce48c9 to your computer and use it in GitHub Desktop.

Select an option

Save julz/359740faa210b6ce48c9 to your computer and use it in GitHub Desktop.

Revisions

  1. julz revised this gist Sep 2, 2015. 1 changed file with 2 additions and 0 deletions.
    2 changes: 2 additions & 0 deletions runtime.md
    Original 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.
  2. julz revised this gist Sep 2, 2015. 1 changed file with 5 additions and 5 deletions.
    10 changes: 5 additions & 5 deletions runtime.md
    Original 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
    ## Stop
    ...
    hello
    $ echo $?
    42
    ~~~~
    ~~~~

    ## Stop

    ...
  3. julz revised this gist Sep 2, 2015. 1 changed file with 6 additions and 2 deletions.
    8 changes: 6 additions & 2 deletions runtime.md
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,6 @@
    Operations:
    # Operations:

    # Start
    ## 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 $?
  4. julz created this gist Sep 2, 2015.
    18 changes: 18 additions & 0 deletions runtime.md
    Original 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
    ~~~~