一,安裝docker
個人開發環境是windows電腦,騰訊雲服務器Ubuntu系統
1.1,更新 apt 包索引
sudo apt-get update
1.2,安裝 apt 依賴包,用於經過HTTPS來獲取倉庫
sudo apt-get install \html
apt-transport-https \ ca-certificates \ curl \ gnupg-agent \ software-properties-common
1.3,添加 Docker 的官方 GPG 密鑰
curl -fsSL https://mirrors.ustc.edu.cn/d... | sudo apt-key add -
1.4,安裝Docker CE
sudo apt-get update
sudo apt-get install docker-ce
1.5,安裝成功之後測試一下
docker run hello-world
這時候若是出現hello from docker說明安裝成功了!
二,docker安裝nginx
docker pull nginx等待安裝完成
三,安裝完成後docker 容器的信息查看鏡像
docker images
這時候能夠看到已經有nginx了
四,查看nginx的容器id
docker ps
五,建立index.html
我是在/home/ubuntu/www目錄下建立的index.html
index.html 裏邊簡單寫了hello docker!!!
六,在終端中運行以下命令,在本機8080端口運行Nginx服務器
docker run -p 8080:80 -d nginx
七,複製index.html到指定id的//usr/share/nginx/html目錄下
sudo docker cp /home/ubuntu/www/index.html beed460086fa://usr/share/nginx/html
八,能夠在瀏覽器查看了,本身的ip加上端口8080
訪問成功了
九,須要注意的點
複製文件的時候要注意
sudo docker cp /home/ubuntu/www/index.html beed460086fa://usr/share/nginx/html
/home/ubuntu/www/index.html,index.html必定要寫完整的地址,
我以前一直只寫index.html結果一直不能啓動,後來把地址寫完整了就ok了
內容比較簡單適合新手同窗,記錄下學習過程,歡迎指正!linux