前往小程序,Get更优阅读体验!
立即前往
发布
社区首页 >专栏 >如何在 Fedora 上使用 Podman | Linux 中国

如何在 Fedora 上使用 Podman | Linux 中国

作者头像
用户8639654
修改2021-09-06 18:00:59
修改2021-09-06 18:00:59
1K00
代码可运行
举报
文章被收录于专栏:云计算运维云计算运维
运行总次数:0
代码可运行

是非常简单和干净的。

安装 Podman

Podman 的命令就与 docker 相同,如果你已经安装了 Docker,只需在终端输入 alias docker=podman

在 Fedora 中,Podman 是默认安装的。但是如果你因为任何原因没有安装,你可以用下面的命令安装它:

代码语言:javascript
代码运行次数:0
复制
sudo dnf install podman

对于 Fedora silverblue 用户,Podman 已经安装在你的操作系统中了。

安装后,运行 “hello world” 镜像,以确保一切正常:

代码语言:javascript
代码运行次数:0
复制
podman pull hello-world
podman run hello-world

如果一切运行良好,你将在终端看到以下输出:

代码语言:javascript
代码运行次数:0
复制
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/

简单的 Nodejs 应用

首先,我们将创建一个文件夹 webapp,在终端输入以下命令:

代码语言:javascript
代码运行次数:0
复制
mkdir webapp && cd webapp

现在创建文件 package.json,该文件包括项目运行所需的所有依赖项。在文件 package.json 中复制以下代码:

代码语言:javascript
代码运行次数:0
复制
{
       "dependencies": {
               "express": "*"
       },
       "scripts": {
               "start": "node index.js"
       }
}

创建文件 index.js,并在其中添加以下代码:

代码语言:javascript
代码运行次数:0
复制
const express = require('express')

const app = express();

app.get('/', (req, res)=> {
       res.send("Hello World!")
});
app.listen(8081, () => {
       console.log("Listing on port 8080");
});

你可以从 这里 下载源代码。

创建 Dockerfile

首先,创建一个名为 Dockerfile 的文件,并确保第一个字符是大写,而不是小写,然后在那里添加以下代码:

代码语言:javascript
代码运行次数:0
复制
FROM node:alpine
WORKDIR usr/app
COPY ./ ./
RUN npm install
CMD ["npm", "start"]

确保你在 webapp 文件夹内,然后显示镜像,然后输入以下命令:

代码语言:javascript
代码运行次数:0
复制
podman build .

确保加了 .。镜像将在你的机器上创建,你可以用以下命令显示它:

代码语言:javascript
代码运行次数:0
复制
podman images

最后一步是输入以下命令在容器中运行该镜像:

代码语言:javascript
代码运行次数:0
复制
podman run -p 8080:8080 <image-name>

现在在你的浏览器中打开 localhost:8080,你会看到你的应用已经工作。

停止和删除容器

使用 CTRL-C 退出容器,你可以使用容器 ID 来删除容器。获取 ID 并使用这些命令停止容器:

代码语言:javascript
代码运行次数:0
复制
podman ps -a
podman stop <container_id>

你可以使用以下命令从你的机器上删除镜像:

代码语言:javascript
代码运行次数:0
复制
podman rmi <image_id>

本文系转载,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文系转载前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 安装 Podman
  • 简单的 Nodejs 应用
  • 创建 Dockerfile
  • 停止和删除容器
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档