npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@viperidae/pequod

v1.8.0

Published

utility for issuing Docker CLI commands (image tagging)

Downloads

3

Readme

pequod

A lib and command line utility to help with manipulating the Docker CLI. Built to work nicely with buildGoggles.

Primary use case (for now) is to read the .buildinfo.json file and tag a Docker image with all the tags found. Yeah, it is simple, but it turns out this is an immense pain in the neck to pull off in most CIs/bash and pretty simple in Node.

Testing

A local Docker registry for the push integration tests.

Start local registry

./setup-registry.sh

Tear down local registry

./kill-registry.sh

API

All calls return promises which resolve or reject with the output of the command.

var pequod = require( "pequod" )( false, logger ); // sets sudo to false
  • logger - optional log call that accepts string output from Docker process

build( tag, workingPath, file, cacheFrom )

build ( tag, [options] )

options is a hash of fields:

  • working - default: "./"
  • file - default: "Dockerfile"
  • cacheFrom - provide a image specification for Docker to build off of
  • args - a hash of key/values used to populate ARGs defined in the Dockerfile
pequod
  .build( "test-image" )
  .then( function( list ) {
    // the list of console lines output
  } );

create( imageName, [options] )

Creates a container from an image with the following available options:

  • name - a string providing a friendly name
  • entrypoint - the entrypoint to use for the container
  • env - a hash of key/value pairs to use as environment variables
  • links - an array of named container links to other containers
  • ports - a hash of key/value pairs to use for host -> container port mappings
  • volumes - a hash of host paths to mount to to container paths

exportContainer( container, [options] )

Exports a container either as a tarball or to a pipe with the following options:

  • output - the path to the tarball file to save the container's state in

If the output option is left off, the call will resolve the output stream which can then be piped to something else.

importContainer( source, target, [options])

Imports either a stream or a tarball into a new, single image layer. If source is a path to a file, it will use the tarball, if source is set to the string "pipe" then it will expect the option pipe to be set to the stream containing the image.

Options:

  • changes - an array of legal Docker image changes to make to the image during import. See [ https://docs.docker.com/engine/reference/commandline/import/#extended-description](Docker's documentation) for details.
  • message - a custom commit message to set when creating the new layer

info()

pequod
  .info()
  .then( function( list ) {
    // the list of console lines output
  } );

inspect( image )

pequod.inspect('repo/image:tag')
  .then( function( data ) {
    // process data
  } );

Data structure:

{
  Id: 'sha256:[sha]',
  RepoTags: [
    'repo/image:tag'
  ],
  RepoDigests: [
    'repo/image@sha256:[sha]'
  ],
  Parent: '',
  Comment: '',
  Created: 'ISO timestamp',
  Container: 'attached container id',
  ContainerConfig: {
    Hostname: '',
    Domainname: '',
    User: '',
    AttachStdin: Boolean,
    AttachStdout: Boolean,
    AttachStderr: Boolean,
    Tty: Boolean,
    OpenStdin: Boolean,
    StdinOnce: Boolean,
    Env: [
      'ENV=value'
    ],
    Cmd: [
      '/bin/sh',
      '-c',
      '#(nop) ',
      'CMD [\"/bin/sh\" \"-c\" \"./kick.sh\"]'
    ],
    ArgsEscaped: Boolean,
    Image: 'sha256:[sha]',
    Volumes: [] | null,
    WorkingDir: '/',
    Entrypoint: '' | null,
    OnBuild: [],
    Labels: {}
  },
  DockerVersion: '',
  Author: '',
  Config: {
    Hostname: '',
    Domainname: '',
    User: '',
    AttachStdin: Boolean,
    AttachStdout: Boolean,
    AttachStderr: Boolean,
    Tty: Boolean,
    OpenStdin: Boolean,
    StdinOnce: Boolean,
    Env: [
      'ENV=value'
    ],
    Cmd: [
      '/bin/sh',
      '-c',
      './kick.sh'
    ],
    ArgsEscaped: Boolean,
    Image: 'sha256:[sha]',
    Volumes: [] | null,
    WorkingDir: '/',
    Entrypoint: '' | null,
    OnBuild: [],
    Labels: null
  },
  Architecture: 'amd64',
  Os: 'linux',
  Size: #,
  VirtualSize: #,
  GraphDriver: {
    Data: {
      LowerDir: '/var/lib/docker/overlay2...',
      MergedDir: '',
      UpperDir: '',
      WorkDir: ''
    },
    Name: 'overlay2'
  },
  RootFS: {
    Type: 'layers',
    Layers: [
      'sha256:[sha]',
      ...
    ]
  },
  Metadata: {
    LastTagTime: 'ISO '
  }
}

login( user, pass, server )

server is optional and defaults to the official Docker hub.

pequod
  .login( '$DOCKER_USER', '$DOCKER_PASS' )
  .then( function( list ) {
    // the list of console lines output
  } );

pull( image )

Pulls an image.

pequod
  .pull( 'test-image' )
  .then( function( list ) {
    // the list of console lines output
  } );

push( image )

Pushes the image.

pequod
  .push( 'test-image' )
  .then( function( list ) {
    // the list of console lines output
  } );

pushTags( image )

Pushes all tags specified in ./.buildinfo.json.

pequod.pushTags('test-image');

tag( source, target )

Tags the source image with the specified target tag.

pequod
  .tag( 'test-image', 'test-image:1.1' )
  .then( function( list ) {
    // the list of console lines output
  } );

tagImage( source )

Tags the source image according to a ./.buildinfo.json.

pequod.tagImage('test-image');

removeContainer( containerName/containerId )

Removes the container from the local daemon by name or id.

pequod
  .removeContainer('')

removeImage( imageName )

Removes the image (or untags it).

pequod
  .removeImage( 'test-image' )
  .then( function( list ) {
    // the list of console lines output
  } );

version()

pequod
  .version()
  .then( function( list ) {
    // the list of console lines output
  } );

There's more to it than this, but give this is really the primary reason for its existence, I'm gonna keep things boring for now √