Preface Tip: Here you can add the approximate content to be recorded in this article: Tip: The following is the main content of this article. The following cases can be used for reference 1. Mysql?1. Pull the mysql imagedocker pull mysql:5.6 2. Run to start the mysql containerdocker run -d -p 3307:3306 -e MYSQL_ROOT_PASSWORD=xy123456 --name xy_mysql mysql:5.6 Parameter Description: 2. Install php-fpm1. Pull the php-fpm imagedocker pull php:7.0-fpm You can also pull docker pull php:7.4.20-fpm docker pull php:7.3.28-fpm These versions are in the warehouse, feel free to pull 2. Run to start the php-fpm containerdocker run -d -v D:/docker/nginx:/var/www/html -p 9000:9000 --link xy_mysql:mysql --name xy_phpfpm php:7.0-fpm Parameter Description: 3. Enter the php-fpm containerdocker exec -it xy_phpfpm bash Parameter Description After creating an index.php file in /var/www/html/, you will find that it also exists locally, which means it is synchronized because the corresponding directories of the host and the container have been mapped when the container is started; 4. Install the pdo_mysql moduleSince we will use the pdo module for testing later, we will install the pdo_mysql module. docker-php-ext-install pdo_mysql php -m prints to see if the installation is successful; After installation, the extension may not be displayed after printing in phpinfo(). There will be modified steps in the subsequent test. 3. Install nginx1. Pull the nginx imagedocker pull nginx:1.10.3 2. Run the nginx containerdocker run -d -p 80:80 -v D:/docker/nginx:/var/www/html --link xy_phpfpm:phpfpm --name xy_nginx nginx:1.10.3 3. Enter the nginx container and modify the nginx configuration file to support PHPdocker exec -it xy_nginx bash It is recommended to change it in /etc/nginx/conf.d/default.conf; 4. Test whether the installation is successfulModify index.php code <?php phpinfo(); After using the previously installed command, phpinfo() does not have mysql, so you need to go into php.ini to change it. 5. Modify the configurationdocker exec -it xy_phpfpm bash In this container, php.ini is in /usr/local/etc/php php.ini-development php.ini-production 6. Link to mysql testModify index.php code try { $con = new PDO('mysql:host=xy_mysql;dbname=mysql', 'root', 'xy123456'); $con->query('SET NAMES UTF8'); $res = $con->query('select * from user'); while ($row = $res->fetch(PDO::FETCH_ASSOC)) { // echo "id:{$row['id']} name:{$row['name']}"; print_r($row); } } catch (PDOException $e) { echo 'Error reason:' . $e->getMessage(); } If no error is reported, it is successful SummarizeIf successful, the primary environment is set up. Be careful during the entire process and check more information when configuring the file. The above is the details of how to build an LNMP environment with Docker. For more information about how to build an LNMP environment with Docker, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Is your website suitable for IE8?
The Docker package is already included in the def...
Table of contents illustrate 1. Blob object 2. Fr...
In the previous article - The charm of one line o...
Shopify Plus is the enterprise version of the e-c...
I always thought that Docker had no IP address. I...
Required effect: After clicking to send the verif...
[LeetCode] 185. Department Top Three Salaries The...
Introduction 1.<iframe> tag: iframe is an i...
When we check the source code of many websites, w...
When customizing the installation of software, yo...
The cursor size in the input box is inconsistent T...
1. HTML font color setting In HTML, we use the fo...
Element form and code display For details, please...
Table of contents Use of Vue mixin Data access in...
Table of contents Primary key constraint Unique C...