in generators/guestcontainer/index.js [10:22]
    constructor(args, opts) {
        super(args, opts);
        this.option('serviceName', { type: String, required: false });    
        this.option('imageName', { type: String, required: false });
        this.option('commands', { type: String, required: false });
        this.option('instanceCount', { type: Number, required: false }); 
        this.option('isAddNewService', { type: Boolean, required: true });
        this.isAddNewService = this.options.isAddNewService;
        this.generatorConfig = {};
    } // constructor()