1. 程式人生 > >Grace development

Grace development

clipboard.png

前言

拋開Docker那些強大的功能,今天我們來部署下本地的開發環境。並寫上幾個指令碼來提高開發效率。

本章以MacOs系統的Docker演示,其他系統作者為接觸過。不知是否有差別。

安裝

傻瓜式安裝,這裡就不再闡述了。下載地址如下

目錄

建立一些目錄,就如在專案開發中建立Controller,Model,Service一樣。我們將本地的Docker開發環境先從目錄開始整理以下。

目錄名 用途
app 專案目錄,源程式存放的地方
services 服務目錄,例如mysql,php等
ssh 遠端伺服器目錄,用於連結伺服器
web 前端目錄,正常node會指向它

部分檔案列表

檔名 用途
.env 配置公共檔案
docker-compose.yml docker-composer 配置檔案
hosts 系統 hosts 檔案
php.sh php 相關操作檔案
start.sh 本地環境操作指令碼

因是個人使用,所以對命名和規範稍有出入。請諒解

配置服務

配置你所需要的服務到Docker容器內

MySQL

docker-composer.yml

db:
    container_name: 'dev_db'
    build: ./services/mysql // 指向dockerfile檔案
    environment:
      MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD} // .env檔案的配置項
    ports:
      - "3306:3306"
    volumes:
      - ${MYSQL_DATA_PATH}:/var/lib/mysql

建立mysql-dockerfileservices\mysqlDockerfile

FROM mysql:5.6
MAINTAINER crazycodes <[email protected]>

ADD ./config/default.cnf /etc/mysql/conf.d/default.cnf

Nginx

docker-composer.yml

web:
    container_name: 'dev_nginx'
    build: ./services/nginx
    ports:
      - "80:80"
    depends_on:
      - php
    volumes_from:
      - php
    volumes:
      - ${NGINX_VOLUME_CONFIG_PATH}:/etc/nginx/conf.d
    dns: 8.8.8.8

Dockerfile

FROM nginx:latest
MAINTAINER crazycodes <[email protected]>

RUN apt-get update && apt-get install -y vim sudo gcc make unzip wget mercurial libpcre3-dev zlib1g-dev libssl-dev devscripts debhelper dpkg-dev quilt lsb-release

COPY nginx.conf /etc/nginx/nginx.conf
COPY nginx-rtmp-module /etc/nginx/nginx-rtmp-module
COPY nginx-1.13.9 /etc/nginx/nginx-1.13.9

WORKDIR /etc/nginx/nginx-1.13.9
RUN ./configure --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-compat --with-file-aio --with-threads --with-http_addition_module --with-http_auth_request_module --with-http_dav_module --with-http_flv_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_mp4_module --with-http_random_index_module --with-http_realip_module --with-http_secure_link_module --with-http_slice_module --with-http_ssl_module --with-http_stub_status_module --with-http_sub_module --with-http_v2_module --with-mail --with-mail_ssl_module --with-stream --with-stream_realip_module --with-stream_ssl_module --with-stream_ssl_preread_module --with-cc-opt='-g -O2 -fdebug-prefix-map=/data/builder/debuild/nginx-1.13.7/debian/debuild-base/nginx-1.13.7=. -specs=/usr/share/dpkg/no-pie-compile.specs -fstack-protector-strong -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fPIC' --with-ld-opt='-specs=/usr/share/dpkg/no-pie-link.specs -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -pie' --add-module=../nginx-rtmp-module
RUN make && make install

站點配置在services\nginx\config內,你可以正常配置

server {
  listen       80;
  server_name  localhost;
  root          /mnt/app/flarum;
  index         index.php index.html index.htm;

  location / { try_files $uri $uri/ /index.php?$query_string; }
  location /api { try_files $uri $uri/ /api.php?$query_string; }
  location /admin { try_files $uri $uri/ /admin.php?$query_string; }

  location /flarum {
    deny all;
    return 404;
  }
  location ~ .php$  {
     fastcgi_split_path_info ^(.+.php)(/.+)$;
     fastcgi_pass   php:9000; // 容器內,此處要填 容器名稱:容器對映埠
     fastcgi_index  index.php;
     include        fastcgi_params;
  }
}

PHP

dockerfile檔案內容過多。這裡就不貼程式碼了。文章最後會貼出原始碼地址。

其他

活學活用,程式碼不僅僅是幫助你開發,也可以幫你提示開發效率。將所有工作變得自動化,更能體現你的本領。

ssh

ssh中放著所有伺服器連結檔案

set -x
ssh [email protected]

每次當你需要連結伺服器時,直接使用

sh dev.sh

即可

php.sh

如果想要操作容器內php的命令。命令過長,不方便。我們可以將程式碼放入sh檔案中

set -x

docker exec -it dev_php /bin/sh -c "cd /mnt/app/${1} && ${2}"

這時你如果需要操作容器內的PHP,就可以這樣寫

sh php.sh My_Blog artisan migrate

start.sh

start.sh檔案中存放著一些基本命令,當然你也可以繼續擴充套件你想要的。例如對composer的操作,php的操作,mysql的操作等等。具體你可以去點選下方連結檢視。

致謝

習慣將許多命令封裝到執行檔案內。方便自己使用。提升開發效率和質量是每位程式設計師必備的技能。

https://github.com/CrazyCodes...這並不是一個非常認真的docker“操作”,請勿使用到生產環境。很高興你看到這裡,希望本篇文章可以幫到你。謝謝。