阿里雲輕量應用服務器環境搭建-Docker部署靜態網站

阿里雲輕量應用服務器環境搭建-Docker部署靜態網站

參考鏈接:https://www.cnblogs.com/longdb/p/10770661.html

我這裏使用的文件上傳工具是FileZilla Client

  • 將本地的newera文件夾上傳到/usr/share目錄下
    在這裏插入圖片描述
  • 在本地新建Dockerfile文件(等下也上傳到/usr/share目錄下),內容如下:
# 設置基礎鏡像
FROM nginx
# 定義作者
MAINTAINER lexiaoyuan
# 將newera文件中的內容複製到 /usr/share/nginx/html/ 這個目錄下面
COPY newera/  /usr/share/nginx/html/
COPY nginx.conf /etc/nginx/nginx.conf
RUN echo 'echo init ok!!'
  • 在本地新建nginx.conf文件(等下也上傳到/usr/share目錄下),內容如下:
worker_processes auto;
#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       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  logs/access.log  main;
 
    sendfile        on;
    #tcp_nopush     on;
 
    #keepalive_timeout  0;
    keepalive_timeout  65;
 
    #gzip  on;
 
    client_max_body_size   20m;
    server {
        listen       80;
        server_name  www.lexiaoyuan.club;
 
        #charset koi8-r;
 
        #access_log  logs/host.access.log  main;
     location / {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
        try_files $uri $uri/ /index.html;
        }
        #error_page  404              /404.html;
 
        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
 
        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}
 
        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}
 
        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }
 
 
    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;
 
    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}
}
  • Dockerfilenginx.conf上傳到/usr/share目錄下
    在這裏插入圖片描述
  • cd 進入share目錄構建鏡像
cd /usr/share

在這裏插入圖片描述

docker build -t newera:V1.0.0 .

在這裏插入圖片描述

  • 運行生成成功的鏡像
docker run -p 3000:80 -d --name newera 69c97374abb3 # 注意,這裏的3000端口請根據自己的習慣任意指定,69c97374abb3也是根據上面構建成功的值指定

在這裏插入圖片描述

  • 查看本地鏡像
docker ps

在這裏插入圖片描述

  • 在服務器開啓3000端口訪問

[外鏈圖片轉存失敗,源站可能有防盜鏈機制,建議將圖片保存下來直接上傳(img-mSBanZtG-1593773677478)(markdown-img/image-20200312204016613.png)]

創作不易,喜歡的話加個關注點個贊,謝謝謝謝謝謝!

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章