ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

Deepin20.1系统安装运行docker.ce,设置IDE远程访问docker

2021-03-03 23:30:11  阅读:287  来源: 互联网

标签:Deepin20.1 service sudo ce io world docker Docker


Deepin20.1系统安装运行docker.ce,设置IDE远程访问docker

​ 最近因为需要学习搭建低代码开发环境,急需在Deepin系统内安装运行docker。最开始使用apt install docker.io。但是调试远程连接docker时很不顺利。经过一点搜索,发现安装docker.ce可以很方便的开启远程访问docker。于是愉快的跳进docker.ce的坑。

​ “有人说docker.io是早期的版本。但是当你安装docker.io然后查看版本会发现,docker.io的版本可能是比docker-ce高的。所以说docker.io是旧版本是不对的。事实上,docker-ce是docker 官方维护的,docker.io是 Debian团队维护的并且,docker.io采用apt的方式管理依赖。docker-ce用go的方式管理依赖,会自己管理所有的依赖。”

上一段引用自https://blog.csdn.net/harryhare/article/details/106015022

下面开始记录操作步骤:

1.卸载docker.io

sudo apt-get remove docker docker-engine docker.io

2.安装密钥

(以下步骤引用自deepin官网百科:https://wiki.deepin.org/wiki/Docker)

sudo apt-get install apt-transport-https ca-certificates curl python-software-properties software-properties-common

3.查看密钥是否安装成功

sudo apt-key fingerprint 0EBFCD88

4.使用 docker-cn 提供的镜像源

4.1编辑 /etc/docker/daemon.json 文件

sudo nano /etc/docker/daemon.json

4.2输入 docker-cn 镜像源地址

输入以下内容:

{
  "registry-mirrors": ["https://registry.docker-cn.com"]
}

4.3重启 docker 服务

sudo service docker restart

4.4测试docker

sudo docker run hello-world

屏幕提示:

Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
0e03bdcc26d7: Pull complete 
Digest: sha256:7e02330c713f93b1d3e4c5003350d0dbe215ca269dd1d84a4abc577908344b30
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/

5.修改docker远程访问

5.1编辑docker.service文件内容

sudo vi /lib/systemd/system/docker.service

在ExecStart语句中加入-H tcp://0.0.0.0:2375

修改后的语句如下:

ExecStart=/usr/bin/dockerd -H tcp://0.0.0.0:2375 -H fd:// --containerd=/run/containerd/containerd.sock

5.2保存重启服务

sudo systemctl daemon-reload
sudo service docker restart

5.3查看docker服务是否启动成功

sudo service docker status
root@aft-laptop-t430-home:~# service docker status                                                                                                                               
 docker.service - Docker Application Container Engine                                                                                                                           
   Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled)                                                                                          
   Active: active (running) since Wed 2021-03-03 22:30:33 CST; 27min ago                                                                                                         
     Docs: https://docs.docker.com                                                                                                                                               
 Main PID: 21670 (dockerd)                                                                                                                                                       
    Tasks: 10                                                                                                                                                                    
   Memory: 39.0M                                                                                                                                                                 
   CGroup: /system.slice/docker.service                                                                                                                                          
           └─21670 /usr/bin/dockerd -H tcp://0.0.0.0:2375 -H fd:// --containerd=/run/containerd/containerd.sock               

5.4测试远程访问

root@aft-laptop-t430-home:~# docker -H tcp://127.0.0.1:2375 images
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
hello-world         latest              bf756fb1ae65        14 months ago       13.3kB
root@aft-laptop-t430-home:~# docker -H tcp://192.168.3.2:2375 images
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
hello-world         latest              bf756fb1ae65        14 months ago       13.3kB

6.设置InterliJ IDEA

点击docker

点击“Edit Configuration”,设置连接模式为TCP,根据你的ip地址输入(本人的是局域网192.168.3.2):

tcp://192.168.3.2:2375

7.运行docker并远程连接成功

右键点击Dockerfile, 点击绿色三角"Run ’ jeecg-boot…’ Ctrl + shift + F10",系统顺利运行打包镜像。

标签:Deepin20.1,service,sudo,ce,io,world,docker,Docker
来源: https://blog.csdn.net/tfa123/article/details/114340736

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有