https://github.com/nemke/docker-images
https://github.com/nemke/docker-images
centos6 centos7 docker lemp mysql nginx php php7
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nemke/docker-images
- Owner: nemke
- License: mit
- Created: 2015-10-10T19:41:51.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2020-12-27T18:08:44.000Z (almost 5 years ago)
- Last Synced: 2025-02-15T06:19:27.070Z (8 months ago)
- Topics: centos6, centos7, docker, lemp, mysql, nginx, php, php7
- Language: Dockerfile
- Size: 39.1 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
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 .