docker-names

1.2.1 • Public • Published

Docker-Names

Docker Names generates semi-random, easy to remember names similar to how docker names its containers. For example, desperate_fermi, cranky_heyrovsky or tender_mahavira.

Or as seen from the docker client container list: Docker container list

Current Build Status: Build Status

Usage

Usage is very simple as this module only exports one method:

var dockerNames = require('docker-names');
console.log(dockerNames.getRandomName());
$ angry_nobel

Additionally, per dockers specification they have a "retry" counter that appends a random* number if set to true or a number greater than 0. For example:

console.log(dockerNames.getRandomName(true));
$ jolly_mclean3

console.log(dockerNames.getRandomName(3));
$ backstabbing_roentgen5

* This uses Math.random which means its not very random. These names should never be used as any sort of unique id. The names are mostly applicable for small lists of ephemeral objects that you want to have easy to remember identifiers for.

Word Lists

This module exports the full docker name lists as two arrays.

// This contains all adjectives i.e. "left words"
dockerNames.adjectives = Array('admiring', 'adoring'...);

// This contains all surnames to use as "right words"
dockerNames.surnames = Array('albattani', 'allen' ...);

Package Sidebar

Install

npm i docker-names

Weekly Downloads

3,522

Version

1.2.1

License

ISC

Unpacked Size

71.4 kB

Total Files

6

Last publish

Collaborators

  • bearjaws