You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
474 B

5 years ago
  1. # 热爱web团队Docker开发环境
  2. ## 环境启动
  3. ```shell
  4. $ docker-compose up -d
  5. ```
  6. ## 环境停止
  7. ```shell
  8. $ docker-compose down
  9. ```
  10. ## 重要文件文件
  11. ### mysql/nginx/log
  12. ```shell
  13. ./mysql/etc/my.cnf # MySQL配置文件
  14. ```
  15. ### nginx
  16. ```shell
  17. ./nginx/conf/nginx.conf # nginx配置文件
  18. ./nginx/conf/vhost # nginx vhost目录
  19. ./nginx/logs # nginx 日志
  20. ./nginx/www # nginx 代码目录
  21. ```
  22. ### php-fpm
  23. ```shell
  24. ./php-fpm/etc/php.ini # php配置文件
  25. ```