parent
0dcc67da1c
commit
9f0b2c725f
|
@ -358,6 +358,7 @@ module.exports = {
|
||||||
'opensource/linuxkit',
|
'opensource/linuxkit',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
'podman/',
|
||||||
'appendix/faq/',
|
'appendix/faq/',
|
||||||
{
|
{
|
||||||
title: "热门镜像介绍",
|
title: "热门镜像介绍",
|
||||||
|
|
|
@ -146,6 +146,7 @@
|
||||||
* [VS Code](IDE/vsCode.md)
|
* [VS Code](IDE/vsCode.md)
|
||||||
* [Docker 开源项目](opensource/README.md)
|
* [Docker 开源项目](opensource/README.md)
|
||||||
* [LinuxKit](opensource/linuxkit.md)
|
* [LinuxKit](opensource/linuxkit.md)
|
||||||
|
* [podman -- 下一代 Linux 容器工具](podman/README.md)
|
||||||
* [附录](appendix/README.md)
|
* [附录](appendix/README.md)
|
||||||
* [附录一:常见问题总结](appendix/faq/README.md)
|
* [附录一:常见问题总结](appendix/faq/README.md)
|
||||||
* [附录二:热门镜像介绍](appendix/repo/README.md)
|
* [附录二:热门镜像介绍](appendix/repo/README.md)
|
||||||
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
# podman
|
||||||
|
|
||||||
|
[`podman`](https://github.com/containers/libpod) 是一个无守护程序与 docker 命令兼容的下一代 Linux 容器工具。
|
||||||
|
|
||||||
|
## 安装
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ sudo yum -y install podman
|
||||||
|
```
|
||||||
|
|
||||||
|
## 使用
|
||||||
|
|
||||||
|
`podman` 与 docker 命令完全兼容,只需将 `docker` 替换为 `podman` 即可,例如运行一个容器:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# $ docker run -d -p 80:80 nginx:alpine
|
||||||
|
|
||||||
|
$ podman run -d -p 80:80 nginx:alpine
|
||||||
|
```
|
||||||
|
|
||||||
|
## 参考
|
||||||
|
|
||||||
|
* https://developers.redhat.com/blog/2019/02/21/podman-and-buildah-for-docker-users/
|
Loading…
Reference in New Issue