rkt-prepare(1) Prepare to run image(s) in a pod in rkt

SYNOPSIS

rkt prepare [OPTIONS]

DESCRIPTION

Prepares the pod and returns its UUID for a subsequent call to run-prepared.

Prepare is useful to get the UUID of the pod before running or when preparing takes a long time.

IMAGE should be a string referencing an image; either a hash, local file on disk, or URL. They will be checked in that order and the first match will be used.

An "--" may be used to inhibit rkt prepare's parsing of subsequent arguments, which will instead be appended to the preceding image app's exec arguments. End the image arguments with a lone "---" to resume argument parsing.

OPTIONS

--exec=
    override the exec command for the preceding image

--group=
    group override for the preceding image (example: '--group=group')

--inherit-env[=false]
    inherit all environment variables not set by apps

--mount=
    mount point binding a volume to a path within an app

--no-overlay[=false]
    disable overlay filesystem

--no-store[=false]
    fetch images ignoring the local store

--pod-manifest=""
    the path to the pod manifest. If it's non-empty, then only '--quiet' and '--no-overlay' will have effect

--port=
    ports to expose on the host (requires contained network). Syntax: --port=NAME:HOSTPORT

--private-users[=false]
    run within user namespaces.

--quiet[=false]
    suppress superfluous output on stdout, print only the UUID on success

--set-env=
    environment variable to set for apps in the form name=value

--set-env-file=
    the path to an environment variables file

--signature=
    local signature file to use in validating the preceding image

--stage1-from-dir=
    filename of an image in stage1 images directory to use as stage1

--stage1-hash=
    hash of an image to use as stage1

--stage1-name=
    name of an image to use as stage1

--stage1-path=
    absolute or relative path to an image to use as stage1

--stage1-url=
    URL to an image to use as stage1

--store-only[=false]
    use only available images in the store (do not discover or download from remote URLs)

--user=
    user override for the preceding image (example: '--user=user')

--volume=
    volumes to make available in the pod

OPTIONS INHERITED FROM PARENT COMMANDS

--debug[=false]
    print out more debug information to stderr

--dir=/var/lib/rkt
    rkt data directory

--insecure-options=none
    comma-separated list of security features to disable. Allowed values: "none", "image", "tls", "ondisk", "http", "pubkey", "all"

--local-config=/etc/rkt
    local configuration directory

--system-config=/usr/lib/rkt
    system configuration directory

--trust-keys-from-https[=false]
    automatically trust gpg keys fetched from https

--user-config=
    user configuration directory

HISTORY

9-Jul-2016 Auto generated by spf13/cobra