function getContainerName()

in src/dockerutils.js [69:74]


function getContainerName(container) {
    if (container.Names && container.Names.length >= 1) {
        // remove leading slash
        return container.Names[0].substring(1);
    }
}