Skip to content

nemke/docker-images

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 .