2017-02-11 22:37:01 +00:00
|
|
|
import * as plugins from './npmdocker.plugins'
|
|
|
|
import * as paths from './npmdocker.paths'
|
|
|
|
|
|
|
|
// modules
|
|
|
|
import * as ConfigModule from './npmdocker.config'
|
|
|
|
import * as DockerModule from './npmdocker.docker'
|
|
|
|
|
|
|
|
let npmdockerCli = new plugins.smartcli.Smartcli()
|
|
|
|
|
|
|
|
export let run = () => {
|
2017-03-28 23:01:37 +00:00
|
|
|
npmdockerCli.standardTask().then(async (argvArg) => {
|
|
|
|
let configArg = await ConfigModule.run()
|
2017-02-11 22:37:01 +00:00
|
|
|
.then(DockerModule.run)
|
|
|
|
if (configArg.exitCode === 0) {
|
|
|
|
plugins.beautylog.success('container ended all right!')
|
|
|
|
} else {
|
|
|
|
plugins.beautylog.error('container ended with error!')
|
|
|
|
process.exit(1)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2017-03-28 23:01:37 +00:00
|
|
|
npmdockerCli.addCommand('clean').then(async (argvArg) => {
|
|
|
|
plugins.beautylog.ora.start()
|
2017-02-11 22:37:01 +00:00
|
|
|
plugins.beautylog.ora.text('cleaning up docker env...')
|
|
|
|
if (argvArg.all) {
|
|
|
|
plugins.beautylog.ora.text('killing any running docker containers...')
|
2017-03-28 23:01:37 +00:00
|
|
|
await plugins.smartshell.exec(`docker kill $(docker ps -q)`)
|
2017-02-11 22:37:01 +00:00
|
|
|
|
|
|
|
plugins.beautylog.ora.text('removing stopped containers...')
|
2017-03-28 23:01:37 +00:00
|
|
|
await plugins.smartshell.exec(`docker rm $(docker ps -a -q)`)
|
2017-02-11 22:37:01 +00:00
|
|
|
|
|
|
|
plugins.beautylog.ora.text('removing images...')
|
2017-03-28 23:01:37 +00:00
|
|
|
await plugins.smartshell.exec(`docker rmi $(docker images -q -f dangling=true)`)
|
2017-02-11 22:37:01 +00:00
|
|
|
|
|
|
|
plugins.beautylog.ora.text('removing all other images...')
|
2017-03-28 23:01:37 +00:00
|
|
|
await plugins.smartshell.exec(`docker rmi $(docker images -a -q)`)
|
2017-02-12 14:17:59 +00:00
|
|
|
|
|
|
|
plugins.beautylog.ora.text('removing all volumes...')
|
2017-03-28 23:01:37 +00:00
|
|
|
await plugins.smartshell.exec(`docker volume rm $(docker volume ls -f dangling=true -q)`)
|
2017-02-11 22:37:01 +00:00
|
|
|
}
|
|
|
|
plugins.beautylog.ora.endOk('docker environment now is clean!')
|
|
|
|
})
|
|
|
|
|
2017-03-28 23:01:37 +00:00
|
|
|
npmdockerCli.addCommand('speedtest').then(async (argvArg) => {
|
|
|
|
plugins.beautylog.ok('Starting speedtest')
|
|
|
|
await plugins.smartshell.exec(`docker pull tianon/speedtest && docker run --rm tianon/speedtest`)
|
2017-02-12 15:04:27 +00:00
|
|
|
})
|
|
|
|
|
2017-02-11 22:37:01 +00:00
|
|
|
npmdockerCli.startParse()
|
|
|
|
}
|