#!/usr/bin/env node

/**
 * Undeploy {{snakecase name}} container.
 *
 * Generated by {{generator}} on {{today}},
 * from a template provided by {{ pkg.name }}.
 */

'use strict'

process.chdir(__dirname + '/../..')

const apeman = require('apeman')

apeman.dply('{{name}}', {
  /** Delete the container */
  delete: true,
  /** Delete even if the container running */
  force: true
})
