docker 再次學習
阿新 • • 發佈:2020-11-24
在Ubuntu中安裝Docker和docker的使用 https://www.cnblogs.com/blog-rui/p/11244023.html
安裝
使用官方安裝指令碼自動安裝 安裝命令如下: curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun 也可以使用國內 daocloud 一鍵安裝命令: curl -sSL https://get.daocloud.io/docker | sh 手動安裝 解除安裝舊版本 Docker 的舊版本被稱為 docker,docker.io 或 docker-engine 。如果已安裝,請解除安裝它們: $ sudo apt-get remove docker docker-engine docker.io containerd runc 當前稱為 Docker Engine-Community 軟體包 docker-ce 。 安裝 Docker Engine-Community,以下介紹兩種方式。 使用 Docker 倉庫進行安裝 在新主機上首次安裝 Docker Engine-Community 之前,需要設定 Docker 倉庫。之後,您可以從倉庫安裝和更新 Docker 。 設定倉庫 更新 apt 包索引。 $ sudo apt-get update 安裝 apt 依賴包,用於通過HTTPS來獲取倉庫: $ sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ gnupg-agent \ software-properties-common 新增 Docker 的官方 GPG 金鑰: $ curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg | sudo apt-key add - 9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88 通過搜尋指紋的後8個字元,驗證您現在是否擁有帶有指紋的金鑰。 $ sudo apt-key fingerprint 0EBFCD88 pub rsa4096 2017-02-22 [SCEA] 9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88 uid [ unknown] Docker Release (CE deb) <[email protected]> sub rsa4096 2017-02-22 [S] 使用以下指令設定穩定版倉庫 $ sudo add-apt-repository \ "deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/ \ $(lsb_release -cs) \ stable" 安裝 Docker Engine-Community 更新 apt 包索引。 $ sudo apt-get update 安裝最新版本的 Docker Engine-Community 和 containerd ,或者轉到下一步安裝特定版本: $ sudo apt-get install docker-ce docker-ce-cli containerd.io 要安裝特定版本的 Docker Engine-Community,請在倉庫中列出可用版本,然後選擇一種安裝。列出您的倉庫中可用的版本: $ apt-cache madison docker-ce docker-ce | 5:18.09.1~3-0~ubuntu-xenial | https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu xenial/stable amd64 Packages docker-ce | 5:18.09.0~3-0~ubuntu-xenial | https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu xenial/stable amd64 Packages docker-ce | 18.06.1~ce~3-0~ubuntu | https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu xenial/stable amd64 Packages docker-ce | 18.06.0~ce~3-0~ubuntu | https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu xenial/stable amd64 Packages ... 使用第二列中的版本字串安裝特定版本,例如 5:18.09.1~3-0~ubuntu-xenial。 $ sudo apt-get install docker-ce=<VERSION_STRING> docker-ce-cli=<VERSION_STRING> containerd.io 測試 Docker 是否安裝成功,輸入以下指令,打印出以下資訊則安裝成功: $ sudo docker run hello-world Unable to find image 'hello-world:latest' locally latest: Pulling from library/hello-world 1b930d010525: Pull complete Digest: sha256:c3b4ada4687bbaa170745b3e4dd8ac3f194ca95b2d0518b417fb47e5879d9b5f Status: Downloaded newer image for hello-world:latest Hello from Docker! This message shows that your installation appears to be working correctly. To generate this message, Docker took the following steps: 1. The Docker client contacted the Docker daemon. 2. The Docker daemon pulled the "hello-world" image from the Docker Hub. (amd64) 3. The Docker daemon created a new container from that image which runs the executable that produces the output you are currently reading. 4. The Docker daemon streamed that output to the Docker client, which sent it to your terminal. To try something more ambitious, you can run an Ubuntu container with: $ docker run -it ubuntu bash Share images, automate workflows, and more with a free Docker ID: https://hub.docker.com/ For more examples and ideas, visit: https://docs.docker.com/get-started/ 使用 Shell 指令碼進行安裝 Docker 在 get.docker.com 和 test.docker.com 上提供了方便指令碼,用於將快速安裝 Docker Engine-Community 的邊緣版本和測試版本。指令碼的原始碼在 docker-install 倉庫中。 不建議在生產環境中使用這些指令碼,在使用它們之前,您應該瞭解潛在的風險: 指令碼需要執行 root 或具有 sudo 特權。因此,在執行指令碼之前,應仔細檢查和稽核指令碼。 這些指令碼嘗試檢測 Linux 發行版和版本,併為您配置軟體包管理系統。此外,指令碼不允許您自定義任何安裝引數。從 Docker 的角度或您自己組織的準則和標準的角度來看,這可能導致不支援的配置。 這些指令碼將安裝軟體包管理器的所有依賴項和建議,而無需進行確認。這可能會安裝大量軟體包,具體取決於主機的當前配置。 該指令碼未提供用於指定要安裝哪個版本的 Docker 的選項,而是安裝了在 edge 通道中釋出的最新版本。 如果已使用其他機制將 Docker 安裝在主機上,請不要使用便捷指令碼。 本示例使用 get.docker.com 上的指令碼在 Linux 上安裝最新版本的Docker Engine-Community。要安裝最新的測試版本,請改用 test.docker.com。在下面的每個命令,取代每次出現 get 用 test。 $ curl -fsSL https://get.docker.com -o get-docker.sh $ sudo sh get-docker.sh 如果要使用 Docker 作為非 root 使用者,則應考慮使用類似以下方式將使用者新增到 docker 組: $ sudo usermod -aG docker your-user
學習命令
docker images 列出本地主機上的映象。 查詢映象 docker search mysql 下拉 docker pull xxxx 1.docker images 列出本地主機上的映象。 2.docker pull 從Docker Hub中拉取或者更新指定映象。 3.docker run -d 標識是讓 docker 容器在後臺執行。 -p 標識通知 Docker 將容器內部使用的網路埠對映到我們使用的主機上。 –name 定義一個容器的名字,如果在執行docker run時沒有指定Name,那麼deamon會自動生成一個隨機數字符串當做UUID。 -e 設定環境變數,或者覆蓋已存在的環境變數。 例如:docker run –name mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=password -dmysql/mysql-server:latest 含義:容器的名字為mysql,將容器的3306埠對映到本機的3306埠,mysql資料庫的密碼為password ,執行的映象為mysql/mysql-server:latest 4.docker ps -a 檢視已經建立的容器 -s 檢視已經啟動的容器 5.docker start con_name 啟動容器名為con_name的容器。 6.docker stop con_name 停止容器名為con_name的容器。 7.docker rm con_name 刪除容器名為con_name的容器。 8.docker rmi img_name 刪除映象名為img_name的映象。 9.docker rename old_name new_name 重新命名一個容器。 4.檢視已經建立的容器 docker ps -a 5.檢視正在執行的容器 docker ps -s >>>>>>>>>>>>>> 換源 /etc/docker/daemon.json 通過配置檔案啟動Docker,修改/etc/docker/daemon.json 檔案並新增上 registry-mirrors 鍵值。 sudo vim /etc/docker/daemon.json { "registry-mirrors": ["https://registry.docker-cn.com"] } 也可選用網易的映象地址:http://hub-mirror.c.163.com { "registry-mirrors": ["http://hub-mirror.c.163.com"] } 修改儲存後,重啟 Docker 以使配置生效。 sudo service docker restart docker info|grep Mirrors -A 1 >>>>>>>>>>>>>>>>>>>>>>. #如何通過容器名得知啟動引數 [root@jenkins ~]# docker inspect redis
安裝Mysql
>>>>>>>>>>>>>>>>>>>>>>. 安裝Mysql docker run --name mysql --restart=always -p 3306:3306 -e MYSQL_ROOT_PASSWORD=rooter -d mysql:latest --character-set-server=utf8mb4 --lower_case_table_names=1 #映入目錄 -v /data/mysql/data:/var/lib/mysql ,/data/mysql/data為真實目錄, docker run --name mariadb --restart=always -p 3306:3306 -v /data/mysql/data:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=rooter -d mariadb:latest --character-set-server=utf8mb4 --lower_case_table_names=1 -v設定容器目錄/var/lib/mysql對映到本地目錄/data/mariadb/data
安裝redies
## redis: docker pull redis #/data/redis/data:/data /data/redis/data,為真機路徑 ,--requirepass "rooter" 這是密碼 docker run --restart=always --name redis -p 6379:6379 -v /data/redis/data:/data -d redis:latest redis-server --appendonly yes --requirepass "rooter" docker run --restart=always --name redis -p 6379:6379 -d redis:latest redis-server --appendonly yes