├── LICENSE ├── README.md ├── apache └── Dockerfile ├── config.yaml ├── env.sh ├── ghost ├── Dockerfile └── start.sh ├── hipache ├── Dockerfile ├── config.json └── start.sh ├── jdk-oracle └── Dockerfile ├── jenkins └── Dockerfile ├── jmeter-abh └── Dockerfile ├── maven └── Dockerfile ├── mongodb └── Dockerfile ├── mysql ├── Dockerfile ├── my.cnf └── start.sh ├── nodejs └── Dockerfile ├── php-apache └── Dockerfile ├── postgres ├── Dockerfile └── start.sh ├── rails-sample-app ├── Dockerfile └── start.sh ├── redis └── Dockerfile ├── ruby-rails └── Dockerfile ├── ruby └── Dockerfile ├── ssg ├── Dockerfile └── start.sh ├── tomcat └── Dockerfile ├── ubuntu ├── Dockerfile ├── create_db_mysql.sh ├── create_db_pg.sh └── tcp_wait.sh └── wordpress ├── Dockerfile └── start.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/README.md -------------------------------------------------------------------------------- /apache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/apache/Dockerfile -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/config.yaml -------------------------------------------------------------------------------- /env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/env.sh -------------------------------------------------------------------------------- /ghost/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/ghost/Dockerfile -------------------------------------------------------------------------------- /ghost/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/ghost/start.sh -------------------------------------------------------------------------------- /hipache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/hipache/Dockerfile -------------------------------------------------------------------------------- /hipache/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/hipache/config.json -------------------------------------------------------------------------------- /hipache/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/hipache/start.sh -------------------------------------------------------------------------------- /jdk-oracle/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/jdk-oracle/Dockerfile -------------------------------------------------------------------------------- /jenkins/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/jenkins/Dockerfile -------------------------------------------------------------------------------- /jmeter-abh/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/jmeter-abh/Dockerfile -------------------------------------------------------------------------------- /maven/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/maven/Dockerfile -------------------------------------------------------------------------------- /mongodb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/mongodb/Dockerfile -------------------------------------------------------------------------------- /mysql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/mysql/Dockerfile -------------------------------------------------------------------------------- /mysql/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/mysql/my.cnf -------------------------------------------------------------------------------- /mysql/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/mysql/start.sh -------------------------------------------------------------------------------- /nodejs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/nodejs/Dockerfile -------------------------------------------------------------------------------- /php-apache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/php-apache/Dockerfile -------------------------------------------------------------------------------- /postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/postgres/Dockerfile -------------------------------------------------------------------------------- /postgres/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/postgres/start.sh -------------------------------------------------------------------------------- /rails-sample-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/rails-sample-app/Dockerfile -------------------------------------------------------------------------------- /rails-sample-app/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/rails-sample-app/start.sh -------------------------------------------------------------------------------- /redis/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/redis/Dockerfile -------------------------------------------------------------------------------- /ruby-rails/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/ruby-rails/Dockerfile -------------------------------------------------------------------------------- /ruby/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/ruby/Dockerfile -------------------------------------------------------------------------------- /ssg/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/ssg/Dockerfile -------------------------------------------------------------------------------- /ssg/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/ssg/start.sh -------------------------------------------------------------------------------- /tomcat/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/tomcat/Dockerfile -------------------------------------------------------------------------------- /ubuntu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/ubuntu/Dockerfile -------------------------------------------------------------------------------- /ubuntu/create_db_mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/ubuntu/create_db_mysql.sh -------------------------------------------------------------------------------- /ubuntu/create_db_pg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/ubuntu/create_db_pg.sh -------------------------------------------------------------------------------- /ubuntu/tcp_wait.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/ubuntu/tcp_wait.sh -------------------------------------------------------------------------------- /wordpress/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/wordpress/Dockerfile -------------------------------------------------------------------------------- /wordpress/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komljen/dockerfile-examples/HEAD/wordpress/start.sh --------------------------------------------------------------------------------