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

cccf-docker-instructions

v3.1.1

Published

cccf and cccf-docker -> docker cli instructions

Downloads

20

Readme

CCCF Docker Instructions

NPM

This module takes a cccf or a cccf-docker (coming sooner or later) structure and turns it into docker instructions.

Install

npm install cccf-docker-instructions

Use

var cdi = require('cccf-docker-instructions')
cdi.run(require('containers.json'))
// =>
	[
		"docker run ...",
	 	"docker run ..."
	]

API

cdi.run(<cccf>)     // run instructions
cdi.start(<cccf>)   // start instructions
cdi.stop(<cccf>)    // stop instructions
cdi.kill(<cccf>)    // kill instructions
cdi.rm(<cccf>)      // remove instructions

API Options

All the API functions can take an optional options object.

{
    detach  : false,    // (default true)
    exclude : ['scale'] // Additional properties on the container object to exclude from the output
}

CLI

As of version 3.0.0 cdi will execute the instructions directly. You can revert to printing by passing the --print flag.

npm install -g cccf-docker-instructions
cdi run config.json
// => <exec>
cdi run config.json --print
// => "docker run ..."

CLI Options

--print             // Prints the instructions instead of executing them
--var MEH=BAH       // Replaces all occurances of ${MEH} with BAH

// ANY other cli argument passed to cdi will be reflected in ALL instructions

--env FOO=BAR
--dns 8.8.8.8
// => "docker run --dns=8.8.8.8 --env=FOO=BAR --name container1 ..."
// => "docker run --dns=8.8.8.8 --env=FOO=BAR --name container2 ..."

Changelog

3.1.0

  • Support for excluding properties on the container object from the output

3.0.0

  • Execute instructions by default :space_invader:
  • Support for variables!!! :rocket:
  • Forwarding any other arguments (besides print and var) to ALL instructions

2.4.0

  • Added support for kill command

2.3.1

  • Bugfix where --env would break container with no env

2.3.0

  • Added ability to pass --env args to cli
  • Added ability to pass --var args to cli for replacing variables in the config file !! :rocket:

2.2.0

  • Added missing CLI docs

2.1.0

  • Brought back the cli :stuck_out_tongue: :see_no_evil:

2.0.0

  • Using cccf v3.0.0
  • Removed cli (moving to separate module)

1.1.0

  • Adding detach flag by default but support overwriting

1.0.3

  • Fixed bug returning undefined for missing cmd

1.0.2

  • Smore silly doc fixes

1.0.1

  • Added some cli docs

1.0.0

  • Initial release :tada:

enjoy.