摘要:前言拋開那些強大的功能,今天我們來部署下本地的開發環境。提升開發效率和質量是每位程序員必備的技能。這并不是一個非常認真的操作,請勿使用到生產環境。
前言
拋開Docker那些強大的功能,今天我們來部署下本地的開發環境。并寫上幾個腳本來提高開發效率。
本章以MacOs系統的Docker演示,其他系統作者為接觸過。不知是否有差別。
安裝傻瓜式安裝,這里就不再闡述了。下載地址如下
https://www.docker.com/produc...
目錄創建一些目錄,就如在項目開發中創建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容器內
MySQLdocker-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-dockerfile到servicesmysql
Dockerfile
FROM mysql:5.6 MAINTAINER crazycodes <919342864@qq.com> ADD ./config/default.cnf /etc/mysql/conf.d/default.cnfNginx
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 <919342864@qq.com> 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 ginxconfig內,你可以正常配置
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文件內容過多。這里就不貼代碼了。文章最后會貼出源碼地址。
其他活學活用,代碼不僅僅是幫助你開發,也可以幫你提示開發效率。將所有工作變得自動化,更能體現你的本領。
sshssh中放著所有服務器鏈接文件
set -x ssh root@xxx.xxx.xxx.xxx
每次當你需要鏈接服務器時,直接使用
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 migratestart.sh
start.sh文件中存放著一些基本命令,當然你也可以繼續擴展你想要的。例如對composer的操作,php的操作,mysql的操作等等。具體你可以去點擊下方鏈接查看。
致謝習慣將許多命令封裝到執行文件內。方便自己使用。提升開發效率和質量是每位程序員必備的技能。
https://github.com/CrazyCodes...
這并不是一個非常認真的docker“操作”,請勿使用到生產環境。
很高興你看到這里,希望本篇文章可以幫到你。謝謝。
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/27463.html
摘要:前言拋開那些強大的功能,今天我們來部署下本地的開發環境。提升開發效率和質量是每位程序員必備的技能。這并不是一個非常認真的操作,請勿使用到生產環境。 showImg(https://segmentfault.com/img/bVbg72t?w=800&h=528); 前言 拋開Docker那些強大的功能,今天我們來部署下本地的開發環境。并寫上幾個腳本來提高開發效率。 本章以MacOs系統...
閱讀 4607·2021-09-26 09:55
閱讀 1352·2019-12-27 12:16
閱讀 879·2019-08-30 15:56
閱讀 1895·2019-08-30 14:05
閱讀 983·2019-08-30 13:05
閱讀 1261·2019-08-30 10:59
閱讀 1437·2019-08-26 16:19
閱讀 1880·2019-08-26 13:47