├── .gitignore ├── README.md ├── binary ├── Dockerfile ├── bin.conf ├── build └── scribed.conf ├── nodejs ├── Dockerfile ├── build ├── nodejs.conf └── scribed.conf ├── php ├── Dockerfile ├── build ├── nginx.conf ├── nginxphp.conf ├── php-fpm.conf ├── php.ini └── scribed.conf ├── python ├── Dockerfile ├── build ├── gunicorn.conf ├── requirements.txt └── scribed.conf ├── scribed.tar.gz ├── tomcat6 ├── Dockerfile ├── build ├── scribed.conf └── tomcat.conf └── tomcat7 ├── Dockerfile ├── build ├── scribed.conf └── tomcat.conf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/README.md -------------------------------------------------------------------------------- /binary/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/binary/Dockerfile -------------------------------------------------------------------------------- /binary/bin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/binary/bin.conf -------------------------------------------------------------------------------- /binary/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/binary/build -------------------------------------------------------------------------------- /binary/scribed.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/binary/scribed.conf -------------------------------------------------------------------------------- /nodejs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/nodejs/Dockerfile -------------------------------------------------------------------------------- /nodejs/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/nodejs/build -------------------------------------------------------------------------------- /nodejs/nodejs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/nodejs/nodejs.conf -------------------------------------------------------------------------------- /nodejs/scribed.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/nodejs/scribed.conf -------------------------------------------------------------------------------- /php/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/php/Dockerfile -------------------------------------------------------------------------------- /php/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/php/build -------------------------------------------------------------------------------- /php/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/php/nginx.conf -------------------------------------------------------------------------------- /php/nginxphp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/php/nginxphp.conf -------------------------------------------------------------------------------- /php/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/php/php-fpm.conf -------------------------------------------------------------------------------- /php/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/php/php.ini -------------------------------------------------------------------------------- /php/scribed.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/php/scribed.conf -------------------------------------------------------------------------------- /python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/python/Dockerfile -------------------------------------------------------------------------------- /python/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/python/build -------------------------------------------------------------------------------- /python/gunicorn.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/python/gunicorn.conf -------------------------------------------------------------------------------- /python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/python/requirements.txt -------------------------------------------------------------------------------- /python/scribed.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/python/scribed.conf -------------------------------------------------------------------------------- /scribed.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/scribed.tar.gz -------------------------------------------------------------------------------- /tomcat6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/tomcat6/Dockerfile -------------------------------------------------------------------------------- /tomcat6/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/tomcat6/build -------------------------------------------------------------------------------- /tomcat6/scribed.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/tomcat6/scribed.conf -------------------------------------------------------------------------------- /tomcat6/tomcat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/tomcat6/tomcat.conf -------------------------------------------------------------------------------- /tomcat7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/tomcat7/Dockerfile -------------------------------------------------------------------------------- /tomcat7/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/tomcat7/build -------------------------------------------------------------------------------- /tomcat7/scribed.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/tomcat7/scribed.conf -------------------------------------------------------------------------------- /tomcat7/tomcat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/Dockerfile/HEAD/tomcat7/tomcat.conf --------------------------------------------------------------------------------