docker部署前端項(xiàng)目比傳統(tǒng)的方式稍微簡單认轨?其實(shí)也不見得,還是得看負(fù)責(zé)運(yùn)維的同事能力如何月培。閑話少敘嘁字,開始正題。
一杉畜、查詢鏡像
docker search nginx
二纪蜒、下載鏡像
docker pull nginx
三、創(chuàng)建掛載目錄
mkdir -p ./nginx/{html,logs,conf}
四此叠、運(yùn)行鏡像容器
運(yùn)行容器之前先將前端項(xiàng)目dist目錄下的文件上傳到掛載出來的html目錄纯续,然后設(shè)置端口號(hào)和時(shí)區(qū)。
docker run --name nginx -m 400m -p 8088:80 \
-v /home/nginx/nginx.conf:/etc/nginx/nginx.conf \
-v /home/nginx/logs:/var/log/nginx \
-v /home/nginx/html:/usr/share/nginx/html \
-v /home/nginx/conf:/etc/nginx/conf.d \
-e TZ=Asia/Shanghai \
--privileged=true -d nginx
五灭袁、配置文件
1猬错、nginx.conf文件
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
#gzip on;
include /etc/nginx/conf.d/*.conf; }
2、default.conf文件
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
location /api{
proxy_pass 地址xxxx/api;
# access_log "logs/test.log";
}
}
PS:nginx的知識(shí)點(diǎn)還是比較多的茸歧,有需要的童鞋還是得系統(tǒng)的進(jìn)行學(xué)習(xí)倦炒,以打下堅(jiān)實(shí)的基礎(chǔ)。