切換root許可權
sudo su
linux給使用者新增sudo許可權:
編輯/etc/sudoers檔案。也就是輸入命令"vim /etc/sudoers",進入編輯模式,找到這一 行:"root ALL=(ALL) ALL"在起下面新增"xxx ALL=(ALL) ALL"(這裡的xxx是你的使用者名稱),然後儲存退出。
安裝docker
(1)yum install docker--yum類似於mac下的homebrew (2)啟動docker--service docker start
拉取程式碼
git clone...
建立Dockerfile
建立並啟動nginx服務
驗證Dockerfile
(1)建立一個映象(dev_react是名字)
docker build -f Dockerfile -t dev_react .
複製程式碼
(2)建立一個名稱為react-front-dev8的容器,並啟動
docker run -p4200:3002 --name react-front-dev8 --link mysql_inst dev_react
複製程式碼
(3)進入容器目錄,檢視該目錄資訊
docker exec -it react-front-dev8 bash
複製程式碼
(4)瀏覽器開啟localhost:4200