Skip to content

bearjaws/docker-names

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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: bearjaws

Usage

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

const 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' ...);

About

Generates Docker Style names i.e. {{adjective}}_{{surname}}

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published