Docker初学者指南-如何创建您的第一个Docker应用程序

您是一名开发人员,并且想要开始使用Docker? 本文是为您准备的。 (You are a developer and you want to start with Docker? This article is made for you.)

After a short introduction on what Docker is and why to use it, you will be able to create your first application with Docker.

在简要介绍了什么是Docker以及为什么使用它之后,您将能够使用Docker创建第一个应用程序。

什么是Docker? (What is Docker?)

Docker is a free software developed by Docker Inc. It was presented to the general public on March 13, 2013 and has become since that day a must in the world of IT development.

Docker是由Docker Inc.开发的免费软件。它于2013年3月13日向公众展示,从那一天开始,它已成为IT开发领域的必备工具。

It allows users to create independent and isolated environments to launch and deploy its applications. These environments are then called containers.

它允许用户创建独立的隔离环境来启动和部署其应用程序。 这些环境然后称为容器。

This will let the developer run a container on any machine.

这将使开发人员可以在任何计算机上运行容器。

As you can see, with Docker, there are no more dependency or compilation problems. All you have to do is launch your container and your application will launch immediately.

如您所见,有了Docker,不再有依赖或编译问题。 您所要做的就是启动容器,您的应用程序将立即启动。

但是,Docker是虚拟机吗? (But, is Docker a virtual machine?)

Here is one of the most asked question about Docker. The answer is: actually, not quite.

这是关于Docker的最常见问题之一。 答案是:实际上并不完全。

It may look like a virtual machine at first but the functionality is not the same.

乍一看可能看起来像是虚拟机,但功能并不相同。

Unlike Docker, a virtual machine will include a complete operating system. It will work independently and act like a computer.

与Docker不同,虚拟机将包含完整的操作系统。 它可以独立工作并像计算机一样工作。

Docker will only share the resources of the host machine in order to run its environments.

Docker将仅共享主机的资源以运行其环境。

为什么要使用Docker作为开发人员? (Why use Docker as a developer?)

This tool can really change a developer’s daily life. In order to best answer this question, I have written a non-exhaustive list of the benefits you will find:

该工具确实可以改变开发人员的日常生活。 为了最好地回答这个问题,我写了一份详尽的清单,列出了您会发现的好处:

  • Docker is fast. Unlike a virtual machine, your application can start in a few seconds and stop just as quickly.

    Docker很快。 与虚拟机不同,您的应用程序可以在几秒钟内启动,然后停止一样快。
  • Docker is multi-platform. You can launch your container on any system.

    Docker是多平台的。 您可以在任何系统上启动容器。
  • Containers can be built and destroyed faster than a virtual machine.

    可以比虚拟机更快地构建和销毁容器。
  • No more difficulties setting up your working environment. Once your Docker is configured, you will never have to reinstall your dependencies manually again. If you change computers or if an employee joins your company, you only have to give them your configuration.

    设置工作环境不再困难。 配置了Docker之后,您将无需再次手动重新安装依赖项。 如果您要更换计算机或员工加入公司,则只需为他们提供配置。
  • You keep your work-space clean, as each of your environments will be isolated and you can delete them at any time without impacting the rest.

    您可以保持工作空间整洁,因为每个环境都会被隔离,您可以随时删除它们而不会影响其余环境。
  • It will be easier to deploy your project on your server in order to put it online.

    将项目部署到服务器以使其联机更容易。

现在让我们创建您的第一个应用程序 (Now let’s create your first application)

Now that you know what Docker is, it’s time to create your first application!

现在您已经知道Docker是什么了,是时候创建您的第一个应用程序了!

The purpose of this short tutorial is to create a Python program that displays a sentence. This program will have to be launched through a Dockerfile.

本简短教程的目的是创建一个显示句子的Python程序。 该程序必须通过Dockerfile启动。

You will see, it’s not very complicated once you understand the process.

您将看到,一旦了解了过程,它并不是很复杂。

Note: You will not need to install Python on your computer. It will be up to the Docker environment to contain Python in order to execute your code.
注意:您无需在计算机上安装Python。 Docker环境将由Python来执行代码。

1.在您的机器上安装Docker (1. Install Docker on your machine)

For Ubuntu:

对于Ubuntu:

First, update your packages:

首先,更新您的软件包:

$ sudo apt update

Next, install docker with apt-get:

接下来,使用apt-get安装docker:

$ sudo apt install docker.io

Finally, verify that Docker is installed correctly:

最后,验证Docker是否正确安装:

$ sudo docker run hello-world
  • For MacOSX: you can follow this link.

    对于MacOSX:您可以点击此链接 。

  • For Windows: you can follow this link.

    对于Windows:您可以点击此链接 。

2.创建您的项目 (2. Create your project)

In order to create your first Docker application, I invite you to create a folder on your computer. It must contain the following two files:

为了创建您的第一个Docker应用程序,我邀请您在计算机上创建一个文件夹。 它必须包含以下两个文件:

  • A ‘main.py’ file (python file that will contain the code to be executed).

    一个“ main.py ”文件(将包含要执行的代码的python文件)。

  • A ‘Dockerfile’ file (Docker file that will contain the necessary instructions to create the environment).

    Dockerfile ”文件(将包含创建环境的必要说明的Docker文件)。

Normally you should have this folder architecture:

通常,您应该具有以下文件夹体系结构:

.
├── Dockerfile
└── main.py
0 directories, 2 files

3.编辑Python文件 (3. Edit the Python file)

You can add the following code to the ‘main.py’ file:

您可以将以下代码添加到“ main.py ”文件中:

#!/usr/bin/env python3print("Docker is magic!")

Nothing exceptional, but once you see “Docker is magic!” displayed in your terminal you will know that your Docker is working.

没什么特别的,但是一旦您看到“ Docker就是魔术! ”显示在您的终端上,您将知道Docker正在工作。

3.编辑Docker文件 (3. Edit the Docker file)

Some theory: the first thing to do when you want to create your Dockerfile is to ask yourself what you want to do. Our goal here is to launch Python code.

一些理论:要创建Dockerfile时要做的第一件事是问自己要做什么。 我们的目标是启动Python代码。

To do this, our Docker must contain all the dependencies necessary to launch Python. A linux (Ubuntu) with Python installed on it should be enough.

为此,我们的Docker必须包含启动Python所需的所有依赖项。 安装了Python的Linux(Ubuntu)应该足够了。

The first step to take when you create a Docker file is to access the DockerHub website. This site contains many pre-designed images to save your time (for example: all images for linux or code languages).

创建Docker文件时采取的第一步是访问DockerHub网站。 该站点包含许多预先设计的映像,以节省您的时间(例如:Linux或代码语言的所有映像)。

In our case, we will type ‘Python’ in the search bar. The first result is the official image created to execute Python. Perfect, we’ll use it!

在本例中,我们将在搜索栏中键入“ Python”。 第一个结果是创建执行Python 的官方映像 。 完美,我们将使用它!

# A dockerfile must always start by importing the base image.
# We use the keyword 'FROM' to do that.
# In our example, we want import the python image.
# So we write 'python' for the image name and 'latest' for the version.
FROM python:latest# In order to launch our python code, we must import it into our image.
# We use the keyword 'COPY' to do that.
# The first parameter 'main.py' is the name of the file on the host.
# The second parameter '/' is the path where to put the file on the image.
# Here we put the file at the image root folder.
COPY main.py /# We need to define the command to launch when we are going to run the image.
# We use the keyword 'CMD' to do that.
# The following command will execute "python ./main.py".
CMD [ "python", "./main.py" ]

4.创建Docker映像 (4. Create the Docker image)

Once your code is ready and the Dockerfile is written, all you have to do is create your image to contain your application.

一旦代码准备就绪并编写了Dockerfile,您要做的就是创建映像以包含您的应用程序。

$ docker build -t python-test .

The ’-t’ option allows you to define the name of your image. In our case we have chosen ’python-test’ but you can put what you want.

-t选项允许您定义图像的名称。 在我们的例子中,我们选择了“ python-test ”,但是您可以放置​​所需的内容。

5.运行Docker映像 (5. Run the Docker image)

Once the image is created, your code is ready to be launched.

创建映像后,即可启动代码。

$ docker run python-test

You need to put the name of your image after ‘docker run’.

您需要将图像的名称放在“ docker run ”之后。

There you go, that’s it. You should normally see “Docker is magic!” displayed in your terminal.

到了,就是这样。 您通常应该看到“ Docker是不可思议的!” 显示在您的终端中。

代码可用 (Code is available)

If you want to retrieve the complete code to discover it easily or to execute it, I have put it at your disposal on my GitHub.

如果您想检索完整的代码以轻松发现或执行它,我已将其放在我的GitHub上供您使用。

-> GitHub: Docker First Application example

-> GitHub:Docker First Application示例

Docker的有用命令 (Useful commands for Docker)

Before I leave you, I have prepared a list of commands that may be useful to you on Docker.

在离开您之前,我已经准备了一份命令列表,这些命令可能对您在Docker上有用。

  • List your images.

    列出您的图像。
$ docker image ls
  • Delete a specific image.

    删除特定的图像。
$ docker image rm [image name]
  • Delete all existing images.

    删除所有现有图像。
$ docker image rm $(docker images -a -q)
  • List all existing containers (running and not running).

    列出所有现有容器(正在运行和未运行)。
$ docker ps -a
  • Stop a specific container.

    停止特定的容器。
$ docker stop [container name]
  • Stop all running containers.

    停止所有正在运行的容器。
$ docker stop $(docker ps -a -q)
  • Delete a specific container (only if stopped).

    删除特定的容器(仅在停止时)。
$ docker rm [container name]
  • Delete all containers (only if stopped).

    删除所有容器(仅在停止时)。
$ docker rm $(docker ps -a -q)
  • Display logs of a container.

    显示容器的日志。
$ docker logs [container name]

下一步是什么? (What’s next?)

After all your feedback, I decided to write the next part of this beginner’s guide. In this article, you will discover how to use docker-compose to create your first client/server-side application with Docker.

在收到您的所有反馈后,我决定编写本初学者指南的下一部分。 在本文中,您将发现如何使用docker-compose和Docker创建您的第一个客户端/服务器端应用程序。

-> A beginner’s guide to Docker — how to create a client/server side with docker-compose

-> Docker初学者指南-如何使用docker-compose创建客户端/服务器端

结论 (Conclusion)

You can refer to this post every time you need a simple and concrete example on how to create your first Docker application. If you have any questions or feedback, feel free to ask.

每当您需要有关如何创建第一个Docker应用程序的简单而具体的示例时,都可以参考这篇文章。 如果您有任何问题或反馈,请随时提出。

Don't miss my content by following me on Twitter and Instagram.

在Twitter和Instagram上关注我,不要错过我的内容。

You can find other articles like this on my website: herewecode.io.

您可以在我的网站上找到其他类似的文章: herewecode.io 。

想要更多? (Want more?)

  • Each week get a motivational quote with some advice, a short tutorial into a few slides, and one developer's picture on Instagram.

    每周都会收到励志名言,并提供一些建议,简短的教程,几张幻灯片以及Instagram上一位开发人员的照片。

  • Sign-up for the newsletter and get the latest articles, courses, tutorials, tips, books, motivation, and other exclusive content.

    注册时事通讯并获取最新文章,课程,教程,技巧,书籍,动机和其他独家内容。

翻译自: https://www.freecodecamp.org/news/a-beginners-guide-to-docker-how-to-create-your-first-docker-application-cc03de9b639f/

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/391875.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

mybatis if-else(写法)

mybaits 中没有else要用chose when otherwise 代替 范例一 <!--批量插入用户--> <insert id"insertBusinessUserList" parameterType"java.util.List">insert into business_user (id , user_type , user_login )values<foreach collection…

spring—拦截器和异常

SpringMVC的拦截器 SpringMVC拦截器-拦截器的作用 Spring MVC 的拦截器类似于 Servlet 开发中的过滤器 Filter&#xff0c;用于对处理器进行预处理和后处理。 将拦截器按一定的顺序联结成一条链&#xff0c;这条链称为拦截器链&#xff08;InterceptorChain&#xff09;。在…

29/07/2010 sunrise

** .. We can only appreciate the miracle of a sunrise if we have waited in the darkness .. 人们在黑暗中等待着&#xff0c;那是期盼着如同日出般的神迹出现 .. 附&#xff1a;27/07/2010 sunrise ** --- 31 July 改动转载于:https://www.cnblogs.com/orderedchaos/archi…

密度聚类dbscan_DBSCAN —基于密度的聚类方法的演练

密度聚类dbscanThe idea of having newer algorithms come into the picture doesn’t make the older ones ‘completely redundant’. British statistician, George E. P. Box had once quoted that, “All models are wrong, but some are useful”, meaning that no model…

node aws 内存溢出_在AWS Elastic Beanstalk上运行生产Node应用程序的现实

node aws 内存溢出by Jared Nutt贾里德努特(Jared Nutt) 在AWS Elastic Beanstalk上运行生产Node应用程序的现实 (The reality of running a production Node app on AWS Elastic Beanstalk) 从在AWS的ELB平台上运行生产Node应用程序两年的经验教训 (Lessons learned from 2 y…

Day2-数据类型

数据类型与内置方法 数据类型 数字字符串列表字典元组集合字符串 1.用途 用来描述某个物体的特征&#xff1a;姓名&#xff0c;性别&#xff0c;爱好等 2.定义方式 变量名 字符串 如&#xff1a;name huazai 3.常用操作和内置方法 1.按索引取值&#xff1a;&#xff08;只能取…

嵌套路由

父组件不能用精准匹配&#xff0c;否则只组件路由无法展示 转载于:https://www.cnblogs.com/dianzan/p/11308146.html

leetcode 992. K 个不同整数的子数组(滑动窗口)

给定一个正整数数组 A&#xff0c;如果 A 的某个子数组中不同整数的个数恰好为 K&#xff0c;则称 A 的这个连续、不一定独立的子数组为好子数组。 &#xff08;例如&#xff0c;[1,2,3,1,2] 中有 3 个不同的整数&#xff1a;1&#xff0c;2&#xff0c;以及 3。&#xff09; …

从完整的新手到通过TensorFlow开发人员证书考试

I recently graduated with a bachelor’s degree in Civil Engineering and was all set to start with a Master’s degree in Transportation Engineering this fall. Unfortunately, my plans got pushed to the winter term because of COVID-19. So as of January this y…

微信开发者平台如何编写代码_编写超级清晰易读的代码的初级开发者指南

微信开发者平台如何编写代码Writing code is one thing, but writing clean, readable code is another thing. But what is “clean code?” I’ve created this short clean code for beginners guide to help you on your way to mastering and understanding the art of c…

【转】PHP面试题总结

PHP面试总结 PHP基础1&#xff1a;变量的传值与引用。 2&#xff1a;变量的类型转换和判断类型方法。 3&#xff1a;php运算符优先级&#xff0c;一般是写出运算符的运算结果。 4&#xff1a;PHP中函数传参&#xff0c;闭包&#xff0c;判断输出的echo&#xff0c;print是不是函…

Winform控件WebBrowser与JS脚本交互

1&#xff09;在c#中调用js函数 如果要传值&#xff0c;则可以定义object[]数组。 具体方法如下例子&#xff1a; 首先在js中定义被c#调用的方法: function Messageaa(message) { alert(message); } 在c#调用js方法Messageaa private void button1_Click(object …

从零开始撸一个Kotlin Demo

####前言 自从google将kotlin作为亲儿子后就想用它撸一管app玩玩&#xff0c;由于工作原因一直没时间下手&#xff0c;直到项目上线后才有了空余时间&#xff0c;期间又由于各种各样烦人的事断了一个月&#xff0c;现在终于开发完成项目分为服务器和客户端&#xff1b;服务器用…

移动平均线ma分析_使用动态移动平均线构建交互式库存量和价格分析图

移动平均线ma分析I decided to code out my own stock tracking chart despite a wide array of freely available tools that serve the same purpose. Why? Knowledge gain, it’s fun, and because I recognize that a simple project can generate many new ideas. Even t…

敏捷开发创始人_开发人员和技术创始人如何将他们的想法转化为UI设计

敏捷开发创始人by Simon McCade西蒙麦卡德(Simon McCade) 开发人员和技术创始人如何将他们的想法转化为UI设计 (How developers and tech founders can turn their ideas into UI design) Discover how to turn a great idea for a product or service into a beautiful UI de…

在ubuntu怎样修改默认的编码格式

ubuntu修改系统默认编码的方法是&#xff1a;1. 参考 /usr/share/i18n/SUPPORTED 编辑/var/lib/locales/supported.d/* gedit /var/lib/locales/supported.d/localgedit /var/lib/locales/supported.d/zh-hans如&#xff1a;more /var/lib/locales/supported.d/localzh_CN GB18…

JAVA中PO,BO,VO,DTO,POJO,Entity

https://my.oschina.net/liaodo/blog/2988512转载于:https://www.cnblogs.com/dianzan/p/11311217.html

【Lolttery】项目开发日志 (三)维护好一个项目好难

项目的各种配置开始出现混乱的现象了 在只有一个人开发的情况下也开始感受到维护一个项目的难度。 之前明明还好用的东西&#xff0c;转眼就各种莫名其妙的报错&#xff0c;完全不知道为什么。 今天一天的工作基本上就是整理各种配置。 再加上之前数据库设计出现了问题&#xf…

leetcode 567. 字符串的排列(滑动窗口)

给定两个字符串 s1 和 s2&#xff0c;写一个函数来判断 s2 是否包含 s1 的排列。 换句话说&#xff0c;第一个字符串的排列之一是第二个字符串的子串。 示例1: 输入: s1 “ab” s2 “eidbaooo” 输出: True 解释: s2 包含 s1 的排列之一 (“ba”). 解题思路 和s1每个字符…

静态变数和非静态变数_统计资料:了解变数

静态变数和非静态变数Statistics 101: Understanding the different type of variables.统计101&#xff1a;了解变量的不同类型。 As we enter the latter part of the year 2020, it is safe to say that companies utilize data to assist in making business decisions. F…