docker 提供了在称为容器的松散隔离环境中包装和运行应用程序的能力。它是开发,运输和运行应用程序的开放平台。
在本文中,我们将演示如何停靠Python烧瓶应用程序。为此,我们将使用我们的blockchain project。
获取申请
对于运行应用程序,我们需要遵循某些步骤:
- 克隆来自github的存储库
git clone https://github.com/itsvinayak/blockchain.git
- 查看克隆存储库的内容ð
在Ubuntu(Linux)中安装Docker
sudo apt-get update -y
sudo apt-get install \
ca-certificates \
curl \
gnupg \
lsb-release -y
添加GPG“ gnuprivacy Guard ”钥匙
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
添加APT来源
sudo echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update -y && sudo apt-get install docker-ce docker-ce-cli containerd.io -y
开始码头
systemctl start docker
systemctl enable docker
docker --version
编写Docker文件
在此项目中,我们将创建一个带有名称 dockerfile的Docker文件。
FROM python
LABEL maintainer="vinayak"
LABEL version="1.0"
LABEL description="This is a blockchain implementation in python"
LABEL website="https://github.com/itsvinayak/blockchain"
LABEL email="itssvinayak@gmail.com"
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
EXPOSE 8080
CMD ["python", "server.py"]
构建Docker图像
sudo docker build --tag blockchain .
运行Docker Image
列出所有图像
sudo docker image ls
sudo docker run -d -p 8080:8080 blockchain
服务器现在在端口8080的PRIVIN上运行。
停止Docker图像
列出运行Docker容器
sudo docker container ls
停止运行容器
sudo docker container stop a2115d1010b5
其中 A2115D1010B5 正在运行容器ID