Pain points
When the author tries to start a new web project, he often falls into the tedious task of re-establishing a Docker environment. I think that when you start a new project, or quickly in order to completely isolate it from previous projects, you will also set up a new docker environment.
What you will get from this article
Use docker-compose
container orchestration technology to start all services in one step. On the official basis, the php container also packs some commonly used extensions (with build source code, you can package it yourself if you have strong hands-on skills), php, nginx, and mysql all come with custom configuration files (easy to configure and adjust for development and testing), all for download .
Structure
The environment built by this article is shown in the picture above.
Environment description
Operating environment
Mac OS 10.13.6 Virtual Box 5.2.14 Ubuntu 16.04.4 Docker 17.07.0-ce
Container
Nginx 1.12.1-alpine PHP-fpm 5.6 MySQL 5.7 Redis 3.2 Memcached 1.4.27
Here to explain the author’s operating environment. I installed the vbox virtual machine on the Mac machine, installed the Docker environment in the debian environment inside the virtual machine, and placed the files in the Mac environment. Through the file mounting method, the Mac environment editing, Docker The environment updates the effect in real time. You have to ask why you don’t install Docker directly under Mac, historical reasons~
Run Materials
. ├── build ## docker image build material │ ├── php5.6 ## php 5.6 │ │ ├── Dockerfile │ │ ├── imagick-3.4.3.tgz │ │ ├── memcached-2.2.0.tgz │ │ ├── redis-4.0.2.tgz │ │ ├── sources.list │ │ └── xdebug-XDEBUG_2_5_5.tar.gz │ └── php-cli ## self-built image of php cli │ ├── amqp-1.9.3.tgz │ ├── Dockerfile │ ├── Dockerfile-php-swoole │ ├── memcached-3.0.4.tgz │ ├── redis-4.1.1.tgz │ ├── sources.list.jessie │ ├── swoole-4.0.4.tgz │ ├── swoole-4.2.6.tgz │ ├── xdebug-2.6.1.tgz │ └── yaf-3.0.7.tgz ├── config ## configuration file │ ├── apt ## Because of the debian series used, so named apt │ │ └── sources.list ## Update to domestic source │ ├── memcached ## memchached configuration │ │ └── memcached.conf │ ├── mysql ## mysql configuration │ │ ├── conf.d │ │ │ └── mysqld_safe_syslog.cnf │ │ └── my.cnf │ ├── nginx ## nginx configuration │ │ ├── conf.d │ │ │ ├── default │ │ │ └── xiuno │ │ ├── mime.types │ │ ├── nginx.conf │ │ └── sites-enabled │ ├── php ## php configuration, sub-cli, and fpm configuration │ │ ├── cli │ │ │ ├── conf.d │ │ │ │ ├── 05-opcache.ini │ │ │ │ ├── 10-pdo.ini │ │ │ │ ├── 20-curl.ini │ │ │ │ ├── 20-gd.ini │ │ │ │ ├── 20-imagick.ini │ │ │ │ ├── 20-json.ini │ │ │ │ ├── 20-memcache.ini │ │ │ │ ├── 20-mysqli.ini │ │ │ │ ├── 20-mysql.ini │ │ │ │ ├── 20-pdo_mysql.ini │ │ │ │ ├── 20-readline.ini │ │ │ │ ├── 20-redis.ini │ │ │ │ ├── 20-xdebug.ini │ │ │ │ └── swoole.ini │ │ │ └── php.ini │ │ ├── fpm │ │ │ ├── conf.d │ │ │ │ ├── docker.conf │ │ │ │ ├── www.conf │ │ │ │ └── zz-docker.conf │ │ │ ├── docker-php-fpm.conf │ │ │ ├── php-fpm.conf │ │ │ ├── php.ini │ │ │ └── pool.d │ │ │ └── www.conf │ │ └── mods-available │ │ ├── curl.ini │ │ ├── gd.ini │ │ ├── imagick.ini │ │ ├── json.ini │ │ ├── memcache.ini │ │ ├── mysqli.ini │ │ ├── mysql.ini │ │ ├── opcache.ini │ │ ├── pdo.ini │ │ ├── pdo_mysql.ini │ │ ├── readline.ini │ │ ├── redis.ini │ │ └── xdebug.ini │ └── redis## redis configuration │ ├── redis.conf │ ├── redis-server.sh │ └── sentinel.conf ├── data ## for data persistence │ ├── mysql ## mysql file mount │ └── redis ## redis persistent data folder ├── docker-compose.yaml ## Container Compose! ! ! ├── log ## Logs generated by each container │ ├── mysql ## mysql log │ │ ├── error.log │ │ └── mysql.log │ ├── nginx ## nginx log │ │ ├── access.log │ │ ├── access_xiuno.log │ │ ├── error.log │ │ └── error_xiuno.log │ └── php ├── php ## php code storage directory │ └── xiunobbs ## php project └── tool ## php some tools ├── composer.phar └── phpunit-4.8.36.phar
Configuration file download
git clone https://gitee.com/xupaul/docker_fast_init
Configuration instructions
At present, the author has not written relevant automation scripts to automatically adapt to the user’s use environment, so here we need to adjust the downloaded configuration file first.
docker-compose.yml file adjustment
This file has a large number of file mounting configurations, this one needs to be adjusted, take an example.
version: "2" services: http: image: nginx:1.12.1-alpine volumes: - ~/config/nginx/nginx.conf:/etc/nginx/nginx.conf:rw ports: - "8080:80" environment: TZ : "Asia/Shanghai" networks: tasker_net: ipv4_address: "192.63.0.11"
In the example, the next line of the last volumes
is to mount the host’s nginx.conf
configuration file and overwrite the nginx.conf file,
~/
The file path can be directly replaced by the directory after the clone git project.
If you also use a virtual machine, then you need to replace ~/
with the path of the runtime environment of docker
!
In ports
, in order not to conflict with the local port 80, the http service can only apply for a port less than 1024 with sudo
permission. Here I use 8080 as the default value. The port configuration of other containers also follows the above rules, so that they can be started with a single command.
A time zone is configured for each container.
For the network ip part, the ip is manually assigned for the convenience of configuration.
Nginx configuration
The tcp communication between php-fpm and the rewrite of php routing are configured. Static resource caching is configured.
MySQL configuration
A general query log is additionally configured, which is convenient for debugging programs.
PHP configuration
php:
image: paulxu/php:5.6-fpm-jessis-pdo-xdebug-mysqli-gd-mb-zip-2
volumes:
- ~/config/php/cli/php.ini:/usr/local/etc/php/php.ini/:rw
ports:
- "9000"
environment:
PHP_IDE_CONFIG: "serverName=bs"
XDEBUG_CONFIG: "remote_host=10.0.2.2 remote_port=9000"
I packaged some commonly used extensions for php, among which xdebug needs to adjust the ip of remote_host
(docker-compose.yaml, ~/config/php/cli/20-xdebug.ini two Each file needs to be adjusted). server_name
needs to be adjusted together with the development IDE, such as what is available under the Preferences | Languages & Frameworks | PHP | Servers
configuration path in PHPStorm record, so what to fill in here.
Redis Configuration
No special configuration
Memecached configuration
No special configuration
Image build
php mirror
It can be pulled by the following command:
docker pull paulxu/php:5.6-fpm-jessis-pdo-xdebug-mysqli-gd-mb-zip-2
Or package it yourself under ~/build/php5.6
:
docker build -t paulxu/php:5.6-fpm-jessis-pdo-xdebug-mysqli-gd-mb-zip-2 -f dockerfile .
If you customize the tag name, you need to adjust docker-compose.yml
Startup
- Download configuration from gitee
- Adjust the configuration according to your own environment
- Ready to mirror
- Start
Start command
## The current thread is running, to stop, type `Ctrl+C`
docker-comose -f ./docker-compose.yaml up
## Background process
docker-comose -f ./docker-compose.yaml up -d
Destroy
docker-comose -f ./docker-compose.yaml down
FAQ
The configuration file mounted by MySQL is ignored and does not work
MySQL requires the permission of the configuration file to be read-only, you need to mount it in read-only mode
I don’t know what to do with remote_host
Disable xdebug, set up the environment and start it, in the environment where the IDE is running (because xdebug
needs to communicate with the IDE) access to http
(access in the browser, pay attention to the port Mapping) to access the code in the php container, check the accessed ip in access.log
of Nginx
is remote_host
.
Last
I hope everyone can get it right in one step. If you have any questions, leave a message. If you encounter difficulties, you can try the solution of running docker containers in a virtual machine locally.
The above is the whole content of this article, I hope it will be helpful to everyone's study, and I hope you can support us a lot
, in the environment where the IDE is running (because xdebug
needs to communicate with the IDE) to access the code in the php container by means of http
(access in the browser, pay attention to port mapping), in The access.log
of Nginx
checks the access IP is remote_host
.
Last
I hope everyone can get it right in one step. If you have any questions, leave a message. If you encounter difficulties, you can try the solution of running docker containers in a virtual machine locally.
The above is the whole content of this article, I hope it will be helpful to everyone's study, and I hope you can support us a lot