Skip to content

Latest commit

 

History

History
67 lines (64 loc) · 999 Bytes

README.md

File metadata and controls

67 lines (64 loc) · 999 Bytes

docker-images

Requirements:

  • docker
  • docker-compose

Centos 6 Images

Every image is dependent on centos6/base image, so it need to be compiled first.

cd centos6/base && docker build -t centos6/base .

After that you can compile any of images you need:

  • Nginx 1.99 image:

    cd centos6/nginx && docker build -t centos6/nginx .
  • PHP 5.6 image:

    cd centos6/php56 && docker build -t centos6/php56 .
  • PHP 7.0 image:

    cd centos6/php70 && docker build -t centos6/php70 .
  • MySQL 5.6 image:

    cd centos6/mysql56 && docker build -t centos6/mysql56 .
  • Nginx 1.99/PHP FPM 5.6 image:

    cd centos6/nginx-php-fpm56 && docker build -t centos6/nginx-php-fpm56 .