Documentationcurrent version
Help us improve the docs by fixing typos and proposing enhancements.

Nikita

Action "docker.pause"

Pause all processes within a container.

Output

  • err
    Error object if any.
  • $status
    True if container was pulled.

Example

const {$status} = await nikita.docker.pause({
  container: 'toto'
})
console.info(`Container was paused: ${$status}`)

Schema definitions

definitions =
  config:
    type: 'object'
    properties:
      'container':
        type: 'string'
        description: '''
        Name/ID of the container.
        '''
      'docker':
        $ref: 'module://@nikitajs/docker/src/tools/execute#/definitions/docker'
    required: ['container']

Handler

handler = ({config}) ->
  await @docker.tools.execute
    command: "pause #{config.container}"

Exports

module.exports =
  handler: handler
  metadata:
    global: 'docker'
    definitions: definitions
Edit on GitHub
Navigate
About

Nikita is an open source project hosted on GitHub and developed by Adaltas.