├── .gitignore ├── .travis.yml ├── Makefile ├── README.md ├── Vagrantfile ├── commands ├── common-functions ├── config ├── functions ├── help-functions ├── install ├── plugin.toml ├── pre-delete ├── subcommands ├── create ├── destroy ├── expose ├── info ├── link ├── linked ├── list ├── logs ├── promote ├── restart ├── start ├── stop ├── unexpose └── unlink └── tests ├── hook_pre_delete.bats ├── service_create.bats ├── service_destroy.bats ├── service_expose.bats ├── service_info.bats ├── service_link.bats ├── service_list.bats ├── service_logs.bats ├── service_promote.bats ├── service_restart.bats ├── service_start.bats ├── service_stop.bats ├── service_unexpose.bats ├── service_unlink.bats ├── setup.sh └── test_helper.bash /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/Vagrantfile -------------------------------------------------------------------------------- /commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/commands -------------------------------------------------------------------------------- /common-functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/common-functions -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/config -------------------------------------------------------------------------------- /functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/functions -------------------------------------------------------------------------------- /help-functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/help-functions -------------------------------------------------------------------------------- /install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/install -------------------------------------------------------------------------------- /plugin.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/plugin.toml -------------------------------------------------------------------------------- /pre-delete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/pre-delete -------------------------------------------------------------------------------- /subcommands/create: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/subcommands/create -------------------------------------------------------------------------------- /subcommands/destroy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/subcommands/destroy -------------------------------------------------------------------------------- /subcommands/expose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/subcommands/expose -------------------------------------------------------------------------------- /subcommands/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/subcommands/info -------------------------------------------------------------------------------- /subcommands/link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/subcommands/link -------------------------------------------------------------------------------- /subcommands/linked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/subcommands/linked -------------------------------------------------------------------------------- /subcommands/list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/subcommands/list -------------------------------------------------------------------------------- /subcommands/logs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/subcommands/logs -------------------------------------------------------------------------------- /subcommands/promote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/subcommands/promote -------------------------------------------------------------------------------- /subcommands/restart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/subcommands/restart -------------------------------------------------------------------------------- /subcommands/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/subcommands/start -------------------------------------------------------------------------------- /subcommands/stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/subcommands/stop -------------------------------------------------------------------------------- /subcommands/unexpose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/subcommands/unexpose -------------------------------------------------------------------------------- /subcommands/unlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/subcommands/unlink -------------------------------------------------------------------------------- /tests/hook_pre_delete.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/tests/hook_pre_delete.bats -------------------------------------------------------------------------------- /tests/service_create.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/tests/service_create.bats -------------------------------------------------------------------------------- /tests/service_destroy.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/tests/service_destroy.bats -------------------------------------------------------------------------------- /tests/service_expose.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/tests/service_expose.bats -------------------------------------------------------------------------------- /tests/service_info.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/tests/service_info.bats -------------------------------------------------------------------------------- /tests/service_link.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/tests/service_link.bats -------------------------------------------------------------------------------- /tests/service_list.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/tests/service_list.bats -------------------------------------------------------------------------------- /tests/service_logs.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/tests/service_logs.bats -------------------------------------------------------------------------------- /tests/service_promote.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/tests/service_promote.bats -------------------------------------------------------------------------------- /tests/service_restart.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/tests/service_restart.bats -------------------------------------------------------------------------------- /tests/service_start.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/tests/service_start.bats -------------------------------------------------------------------------------- /tests/service_stop.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/tests/service_stop.bats -------------------------------------------------------------------------------- /tests/service_unexpose.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/tests/service_unexpose.bats -------------------------------------------------------------------------------- /tests/service_unlink.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/tests/service_unlink.bats -------------------------------------------------------------------------------- /tests/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/tests/setup.sh -------------------------------------------------------------------------------- /tests/test_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyatom/dokku-chrome/HEAD/tests/test_helper.bash --------------------------------------------------------------------------------