├── .gitignore ├── LICENSE ├── README.md ├── _release ├── create_release_artifacts.sh └── release.sh ├── configparser.go ├── consts └── consts.go ├── container └── container.go ├── example ├── Dockerfile ├── bluegreen │ └── capitan.cfg.sh └── std │ └── capitan.cfg.sh ├── glide.lock ├── glide.yaml ├── helpers ├── dockerhelper.go ├── slicehelp.go └── stringhelp.go ├── logger ├── containerlog.go └── logger.go ├── main.go ├── output.gif ├── projectconfig.go ├── shellsession └── shellsession.go └── version.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byrnedo/capitan/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byrnedo/capitan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byrnedo/capitan/HEAD/README.md -------------------------------------------------------------------------------- /_release/create_release_artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byrnedo/capitan/HEAD/_release/create_release_artifacts.sh -------------------------------------------------------------------------------- /_release/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byrnedo/capitan/HEAD/_release/release.sh -------------------------------------------------------------------------------- /configparser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byrnedo/capitan/HEAD/configparser.go -------------------------------------------------------------------------------- /consts/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byrnedo/capitan/HEAD/consts/consts.go -------------------------------------------------------------------------------- /container/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byrnedo/capitan/HEAD/container/container.go -------------------------------------------------------------------------------- /example/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM tutum/hello-world 2 | 3 | EXPOSE 2222 4 | -------------------------------------------------------------------------------- /example/bluegreen/capitan.cfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byrnedo/capitan/HEAD/example/bluegreen/capitan.cfg.sh -------------------------------------------------------------------------------- /example/std/capitan.cfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byrnedo/capitan/HEAD/example/std/capitan.cfg.sh -------------------------------------------------------------------------------- /glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byrnedo/capitan/HEAD/glide.lock -------------------------------------------------------------------------------- /glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byrnedo/capitan/HEAD/glide.yaml -------------------------------------------------------------------------------- /helpers/dockerhelper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byrnedo/capitan/HEAD/helpers/dockerhelper.go -------------------------------------------------------------------------------- /helpers/slicehelp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byrnedo/capitan/HEAD/helpers/slicehelp.go -------------------------------------------------------------------------------- /helpers/stringhelp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byrnedo/capitan/HEAD/helpers/stringhelp.go -------------------------------------------------------------------------------- /logger/containerlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byrnedo/capitan/HEAD/logger/containerlog.go -------------------------------------------------------------------------------- /logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byrnedo/capitan/HEAD/logger/logger.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byrnedo/capitan/HEAD/main.go -------------------------------------------------------------------------------- /output.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byrnedo/capitan/HEAD/output.gif -------------------------------------------------------------------------------- /projectconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byrnedo/capitan/HEAD/projectconfig.go -------------------------------------------------------------------------------- /shellsession/shellsession.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byrnedo/capitan/HEAD/shellsession/shellsession.go -------------------------------------------------------------------------------- /version.go: -------------------------------------------------------------------------------- 1 | package main 2 | const VERSION = "0.24" 3 | --------------------------------------------------------------------------------