├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── corebench.tar.gz ├── password.txt ├── run.sh ├── startup.sh └── supervisord.conf /.gitignore: -------------------------------------------------------------------------------- 1 | /corebench 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mboehme/corebench/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mboehme/corebench/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mboehme/corebench/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mboehme/corebench/HEAD/README.md -------------------------------------------------------------------------------- /corebench.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mboehme/corebench/HEAD/corebench.tar.gz -------------------------------------------------------------------------------- /password.txt: -------------------------------------------------------------------------------- 1 | corebench 2 | -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mboehme/corebench/HEAD/run.sh -------------------------------------------------------------------------------- /startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mboehme/corebench/HEAD/startup.sh -------------------------------------------------------------------------------- /supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mboehme/corebench/HEAD/supervisord.conf --------------------------------------------------------------------------------