IDEA project is packaged in a mirror to docker

idea docker container mounting connection on a remote server Centos

1. Install centos7linux system

2. Install docker:yum install docker-ce

3. Modify the file: vi /lib/systemd/system/docker.servicethe fifth line should read: ExecStart=/usr/bin/dockerd -H tcp://0.0.0.0:2375 -H unix://var/run/docker.sock
Note that the port is 2375, when a connection will be used

4. Restart docker:

systemctl daemon-reload

service docker restart | systemctl restart docker

  • 1
  • 2
  • 3

Be sure to restart the docker or may not be connected IDEA
5.idea plugin installed inside docker, 2018 or later default comes with a docker plug-in, IP addresses on IP virtual machines can connect a success.

6. docker disposed in the IDEA

Here Insert Picture Description

Click the + New docker

Here Insert Picture Description
Here Insert Picture Description
Here Insert Picture Description
Here Insert Picture Description

Configuration docker

Here Insert Picture Description

The project labeled jar package, in the same folder with dockerfile

Here Insert Picture Description
dockerfile contents (in fact, the third line is a command to run the jar package java -Dfile.encoding = utf-8 -jar /auth-user-server-1.0.jar)

FROM java
ADD /auth-user-server-1.0.jar //
ENTRYPOINT ["java", "-Dfile.encoding=utf-8","-jar", "/auth-user-server-1.0.jar"]
  • 1
  • 2
  • 3
  • 4

docker configured to run in IDEA

Here Insert Picture Description

You can successfully build a remote server to the top! ! !

                                </div>
            <link href="https://csdnimg.cn/release/phoenix/mdeditor/markdown_views-b6c3c6d139.css" rel="stylesheet">
                                            <div class="more-toolbox">
            <div class="left-toolbox">
                <ul class="toolbox-list">
                    
                    <li class="tool-item tool-active is-like "><a href="javascript:;"><svg class="icon" aria-hidden="true">
                        <use xlink:href="#csdnc-thumbsup"></use>
                    </svg><span class="name">点赞</span>
                    <span class="count"></span>
                    </a></li>
                    <li class="tool-item tool-active is-collection "><a href="javascript:;" data-report-click="{&quot;mod&quot;:&quot;popu_824&quot;}"><svg class="icon" aria-hidden="true">
                        <use xlink:href="#icon-csdnc-Collection-G"></use>
                    </svg><span class="name">收藏</span></a></li>
                    <li class="tool-item tool-active is-share"><a href="javascript:;"><svg class="icon" aria-hidden="true">
                        <use xlink:href="#icon-csdnc-fenxiang"></use>
                    </svg>分享</a></li>
                    <!--打赏开始-->
                                            <!--打赏结束-->
                                            <li class="tool-item tool-more">
                        <a>
                        <svg t="1575545411852" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5717" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M179.176 499.222m-113.245 0a113.245 113.245 0 1 0 226.49 0 113.245 113.245 0 1 0-226.49 0Z" p-id="5718"></path><path d="M509.684 499.222m-113.245 0a113.245 113.245 0 1 0 226.49 0 113.245 113.245 0 1 0-226.49 0Z" p-id="5719"></path><path d="M846.175 499.222m-113.245 0a113.245 113.245 0 1 0 226.49 0 113.245 113.245 0 1 0-226.49 0Z" p-id="5720"></path></svg>
                        </a>
                        <ul class="more-box">
                            <li class="item"><a class="article-report">文章举报</a></li>
                        </ul>
                    </li>
                                        </ul>
            </div>
                        </div>
        <div class="person-messagebox">
            <div class="left-message"><a href="https://blog.csdn.net/wang720813">
                <img src="https://profile.csdnimg.cn/1/D/D/3_wang720813" class="avatar_pic" username="wang720813">
                                        <img src="https://g.csdnimg.cn/static/user-reg-year/1x/1.png" class="user-years">
                                </a></div>
            <div class="middle-message">
                                    <div class="title"><span class="tit"><a href="https://blog.csdn.net/wang720813" data-report-click="{&quot;mod&quot;:&quot;popu_379&quot;}" target="_blank">wang720813</a></span>
                                        </div>
                <div class="text"><span>发布了11 篇原创文章</span> · <span>获赞 0</span> · <span>访问量 4884</span></div>
            </div>
                            <div class="right-message">
                                        <a href="https://im.csdn.net/im/main.html?userName=wang720813" target="_blank" class="btn btn-sm btn-red-hollow bt-button personal-letter">私信
                    </a>
                                                        <a class="btn btn-sm  bt-button personal-watch" data-report-click="{&quot;mod&quot;:&quot;popu_379&quot;}">关注</a>
                                </div>
                        </div>
                </div>
</article>
Released five original articles · won praise 0 · Views 254

idea docker container mounting connection on a remote server Centos

1. Install centos7linux system

2. Install docker:yum install docker-ce

3. Modify the file: vi /lib/systemd/system/docker.servicethe fifth line should read: ExecStart=/usr/bin/dockerd -H tcp://0.0.0.0:2375 -H unix://var/run/docker.sock
Note that the port is 2375, when a connection will be used

4. Restart docker:

systemctl daemon-reload

Guess you like

Origin blog.csdn.net/weixin_32822759/article/details/104402137