Skip to content

Latest commit

 

History

History
215 lines (162 loc) · 8.71 KB

config.md

File metadata and controls

215 lines (162 loc) · 8.71 KB

Container Configuration file

The container's top-level directory MUST contain a configuration file called config.json. For now the canonical schema is defined in config.go and config_linux.go, but this will be moved to a formal JSON schema over time.

The configuration file contains metadata necessary to implement standard operations against the container. This includes the process to run, environment variables to inject, sandboxing features to use, etc.

Below is a detailed description of each field defined in the configuration format.

Specification version

  • ociVersion (string, required) must be in SemVer v2.0.0 format and specifies the version of the OpenContainer specification with which the bundle complies. The OpenContainer spec follows semantic versioning and retains forward and backward compatibility within major versions. For example, if an implementation is compliant with version 1.0.1 of the spec, it is compatible with the complete 1.x series. NOTE that there is no guarantee for forward or backward compatibility for version 0.x.

Example

    "ociVersion": "0.1.0"

Root Configuration

Each container has exactly one root filesystem, specified in the root object:

  • path (string, required) Specifies the path to the root filesystem for the container, relative to the path where the manifest is. A directory MUST exist at the relative path declared by the field.
  • readonly (bool, optional) If true then the root filesystem MUST be read-only inside the container. Defaults to false.

Example

"root": {
    "path": "rootfs",
    "readonly": true
}

Mounts

You can add array of mount points inside container as mounts. The runtime MUST mount entries in the listed order. The parameters are similar to the ones in the Linux mount system call.

  • destination (string, required) Destination of mount point: path inside container.
  • type (string, required) Linux, filesystemtype argument supported by the kernel are listed in /proc/filesystems (e.g., "minix", "ext2", "ext3", "jfs", "xfs", "reiserfs", "msdos", "proc", "nfs", "iso9660"). Windows: ntfs
  • source (string, required) a device name, but can also be a directory name or a dummy. Windows, the volume name that is the target of the mount point. \?\Volume{GUID}\ (on Windows source is called target)
  • options (list of strings, optional) in the fstab format https://wiki.archlinux.org/index.php/Fstab.

Linux Example

"mounts": [
    {
        "destination": "/tmp",
        "type": "tmpfs",
        "source": "tmpfs",
        "options": ["nosuid","strictatime","mode=755","size=65536k"]
    },
    {
        "destination": "/data",
        "type": "bind",
        "source": "/volumes/testing",
        "options": ["rbind","rw"]
    }
]

Windows Example

"mounts": [
    "myfancymountpoint": {
        "destination": "C:\\Users\\crosbymichael\\My Fancy Mount Point\\",
        "type": "ntfs",
        "source": "\\\\?\\Volume\\{2eca078d-5cbc-43d3-aff8-7e8511f60d0e}\\",
        "options": []
    }
]

See links for details about mountvol and SetVolumeMountPoint in Windows.

Process configuration

  • terminal (bool, optional) specifies whether you want a terminal attached to that process. Defaults to false.
  • cwd (string, required) is the working directory that will be set for the executable. This value MUST be an absolute path.
  • env (array of strings, optional) contains a list of variables that will be set in the process's environment prior to execution. Elements in the array are specified as Strings in the form "KEY=value". The left hand side must consist solely of letters, digits, and underscores _ as outlined in IEEE Std 1003.1-2001.
  • args (string, required) executable to launch and any flags as an array. The executable is the first element and must be available at the given path inside of the rootfs. If the executable path is not an absolute path then the search $PATH is interpreted to find the executable.

The user for the process is a platform-specific structure that allows specific control over which user the process runs as. For Linux-based systems the user structure has the following fields:

  • uid (int, required) specifies the user id.
  • gid (int, required) specifies the group id.
  • additionalGids (array of ints, optional) specifies additional group ids to be added to the process.

Example (Linux)

"process": {
    "terminal": true,
    "user": {
        "uid": 1,
        "gid": 1,
        "additionalGids": [5, 6]
    },
    "env": [
        "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
        "TERM=xterm"
    ],
    "cwd": "/root",
    "args": [
        "sh"
    ]
}

Hostname

  • hostname (string, optional) as it is accessible to processes running inside. On Linux, you can only set this if your bundle creates a new UTS namespace.

Example

"hostname": "mrsdalloway"

Platform-specific configuration

  • os (string, required) specifies the operating system family this image must run on. Values for os must be in the list specified by the Go Language document for $GOOS.
  • arch (string, required) specifies the instruction set for which the binaries in the image have been compiled. Values for arch must be in the list specified by the Go Language document for $GOARCH.
"platform": {
    "os": "linux",
    "arch": "amd64"
}

Interpretation of the platform section of the JSON file is used to find which platform-specific sections may be available in the document. For example, if os is set to linux, then a JSON object conforming to the Linux-specific schema SHOULD be found at the key linux in the config.json.

Hooks

Lifecycle hooks allow custom events for different points in a container's runtime. Presently there are Prestart, Poststart and Poststop.

  • Prestart is a list of hooks to be run before the container process is executed
  • Poststart is a list of hooks to be run immediately after the container process is started
  • Poststop is a list of hooks to be run after the container process exits

Hooks allow one to run code before/after various lifecycle events of the container. Hooks MUST be called in the listed order. The state of the container is passed to the hooks over stdin, so the hooks could get the information they need to do their work.

Hook paths are absolute and are executed from the host's filesystem.

Prestart

The pre-start hooks are called after the container process is spawned, but before the user supplied command is executed. They are called after the container namespaces are created on Linux, so they provide an opportunity to customize the container. In Linux, for e.g., the network namespace could be configured in this hook.

If a hook returns a non-zero exit code, then an error including the exit code and the stderr is returned to the caller and the container is torn down.

Poststart

The post-start hooks are called after the user process is started. For example this hook can notify user that real process is spawned.

If a hook returns a non-zero exit code, then an error is logged and the remaining hooks are executed.

Poststop

The post-stop hooks are called after the container process is stopped. Cleanup or debugging could be performed in such a hook. If a hook returns a non-zero exit code, then an error is logged and the remaining hooks are executed.

Example

    "hooks" : {
        "prestart": [
            {
                "path": "/usr/bin/fix-mounts",
                "args": ["fix-mounts", "arg1", "arg2"],
                "env":  [ "key1=value1"]
            },
            {
                "path": "/usr/bin/setup-network"
            }
        ],
        "poststart": [
            {
                "path": "/usr/bin/notify-start"
            }
        ],
        "poststop": [
            {
                "path": "/usr/sbin/cleanup.sh",
                "args": ["cleanup.sh", "-f"]
            }
        ]
    }

path is required for a hook. args and env are optional. The semantics are the same as Path, Args and Env in golang Cmd.