From a465db0200b0688aeb2a94325fe2202570977308 Mon Sep 17 00:00:00 2001 From: Tinywan <756684177@qq.com> Date: Sat, 26 Jun 2021 11:19:59 +0800 Subject: [PATCH] Start the Docker container --- README.md | 26 +------------------------- 1 file changed, 1 insertion(+), 25 deletions(-) diff --git a/README.md b/README.md index 43f2f00..87fa24f 100644 --- a/README.md +++ b/README.md @@ -1,32 +1,8 @@ -# Docker PHP-FPM 7.4 & Nginx 1.16 on Alpine Linux -Example PHP-FPM 7.4 & Nginx 1.16 setup for Docker, build on [Alpine Linux](http://www.alpinelinux.org/). -The image is only +/- 35MB large. - - -* Built on the lightweight and secure Alpine Linux distribution -* Very small Docker image size (+/-35MB) -* Uses PHP 7.4 for better performance, lower cpu usage & memory footprint -* Optimized for 100 concurrent users -* Optimized to only use resources when there's traffic (by using PHP-FPM's ondemand PM) -* The servers Nginx, PHP-FPM and supervisord run under a non-privileged user (nobody) to make it more secure -* The logs of all the services are redirected to the output of the Docker container (visible with `docker logs -f `) -* Follows the KISS principle (Keep It Simple, Stupid) to make it easy to understand and adjust the image - - ## Usage Start the Docker container: -docker run -p 80:8080 gsviec/nginx-php:7.4 - -See the PHP info on http://localhost, or the static html page on http://localhost/test.html - -Or mount your own code to be served by PHP-FPM & Nginx - ``` -docker run -it tinywan/docker-php-nginx:7.4.14 +docker run -p 8088:8080 -name dnmp-webman -v d:/dnmp/www/webman.tinywan.com:/app tinywan/docker-php-cli:latest ``` -``` -docker run -p 80:8080 -v ~/my-codebase:/var/www/html gsviec/nginx-php:7.4 -```