在Docker中安裝NG需要按照以下步驟進行:
1. 拉取NG的鏡像 docker pull nginx 2. 創建并運行NG容器 docker run -d --name mynginx nginx 3. 進入NG容器 docker exec -it mynginx /bin/bash 4. 安裝vim編輯器 apt-get update apt-get install vim -y 5. 修改NG配置文件 vim /etc/nginx/nginx.conf 6. 在配置文件中添加server塊 server { listen 80; server_name localhost; location / { root /usr/share/nginx/html; index index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; } } 7. 保存修改并退出 :wq 8. 重啟NG容器 docker restart mynginx 9. 打開瀏覽器訪問NG http://localhost 10. 完成NG的安裝和配置