聂一澎 发表于 2024-5-7 19:10:39

容器平台

Podman
(01)Install Podman
Podman:安装
  安装容器管理工具的Podman。
 安装 Podman。
root@dlp:~# apt -y install podman 
 下载官方镜像并创建一个容器,并在容器内输出  字样。
# download the official image
root@dlp:~# podman pull ubuntu
# run echo inside a container
root@dlp:~# podman run ubuntu /bin/echo "Welcome to the Podman World"
Welcome to the Podman World
Resolved "ubuntu" as an alias (/etc/containers/registries.conf.d/shortnames.conf)
Trying to pull docker.io/library/ubuntu:latest...
Getting image source signatures
Copying blob 49b384cc7b4a done   |
Copying config bf3dc08bfe done   |
Writing manifest to image destination
bf3dc08bfed031182827888bb15977e316ad797ee2ccb63b4c7a57fdfe7eb31d 
 使用 和 选项连接到容器的交互式会话,如下所示。
  如果 退出容器会话,则容器的过程完成。
root@dlp:~# podman run -it ubuntu /bin/bash
root@591e1ea31c34:/#   # connected
root@591e1ea31c34:/# uname -a
Linux 591e1ea31c34 6.8.0-31-generic #31-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 20 00:40:06 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
root@591e1ea31c34:/# exit
exit
root@dlp:~#   # come back 
 如果要将容器作为守护进程运行,请添加 选项。
root@dlp:~# podman run -itd ubuntu /bin/bash
# show podman processes
root@dlp:~# podman ps
a45d9a04eb16c35c28bf2c223a41613a99c4eaddba7e619decbe27e851eb906b


CONTAINER IDIMAGE                            COMMAND   CREATED         STATUS         PORTS       NAMES
a45d9a04eb16docker.io/library/ubuntu:latest/bin/bash   16 seconds agoUp 16 seconds            angry_driscoll

# attach to container session
root@dlp:~# podman exec -it a45d9a04eb16 /bin/bash
root@a45d9a04eb16:/#   # connected
root@a45d9a04eb16:/# exit
# stop container process
# * if force stop, specify
root@dlp:~# podman stop a45d9a04eb16
root@dlp:~# podman ps
CONTAINER IDIMAGE   COMMANDCREATEDSTATUSPORTS   NAMES 
(02)Add Container Images
Podman:添加容器镜像
  添加修改设置的新容器映像。
 例如,使用安装 更新官方镜像,并将其添加为新的容器镜像。
# show container images
root@dlp:~# podman images
REPOSITORY                TAG         IMAGE ID      CREATED   SIZE
docker.io/library/ubuntulatest      bf3dc08bfed05 days ago78.7 MB

# run a container and install
root@dlp:~# podman run ubuntu /bin/bash -c "apt-get update; apt-get -y install apache2"
root@dlp:~# podman ps -a | tail -1
# add the image that was installed
root@dlp:~# podman commit 8ba738311a1b srv.world/ubuntu-apache2
# show container images
root@dlp:~# podman images
# confirm to run a container
root@dlp:~# podman run srv.world/ubuntu-apache2 /usr/bin/whereis apache2
apache2: /usr/sbin/apache2 /usr/lib/apache2 /etc/apache2 /usr/share/apache2
8ba738311a1bdocker.io/library/ubuntu:latest/bin/bash -c apt-...26 seconds agoExited (0) 8 seconds ago            intelligent_haibt

Getting image source signatures
Copying blob 80098e3d304c skipped: already exists
Copying blob 8b942a48c2d6 done   |
Copying config 38d5083368 done   |
Writing manifest to image destination
38d5083368637cec96e051ebe22f2b5776538eb9ad7dc2143f4d617896ec05f4

REPOSITORY                TAG         IMAGE ID      CREATED         SIZE
srv.world/ubuntu-apache2latest      38d50833686326 seconds ago226 MB
docker.io/library/ubuntulatest      bf3dc08bfed05 days ago      78.7 MB 
(03)容器服务接入
Podman:访问容器上的服务
  如果要访问在容器上作为守护程序运行的 HTTP 或 SSH 等服务,请按如下方式进行配置。
 例如,使用已安装 的容器。
root@dlp:~# podman images
# run a container and also start
# map with [-p xxx:xxx] to [(Host Port):(Container Port)]
root@dlp:~# podman run -dt -p 8081:80 --security-opt apparmor=unconfined srv.world/ubuntu-apache2 /usr/sbin/apachectl -D FOREGROUND
root@dlp:~# podman ps
REPOSITORY                TAG         IMAGE ID      CREATED             SIZE
srv.world/ubuntu-apache2latest      38d508336863About a minute ago226 MB
docker.io/library/ubuntulatest      bf3dc08bfed05 days ago          78.7 MB

77c61575ad7b23c0091e0744cf691d8fb28484bd52a3be00280456e64309b191


CONTAINER IDIMAGE                            COMMAND               CREATED         STATUS         PORTS               NAMES
77c61575ad7bsrv.world/ubuntu-apache2:latest/usr/sbin/apachec...14 seconds agoUp 14 seconds0.0.0.0:8081->80/tcpaffectionate_mirzakhani

# create a test page
root@dlp:~# podman exec 77c61575ad7b /bin/bash -c 'echo "Apache2 on Podman Container" > /var/www/html/index.html'
# verify accesses
root@dlp:~# curl localhost:8081
Apache2 on Podman Container
# also possible to access via container network
root@dlp:~# podman inspect -l | grep \"IPAddress
root@dlp:~# curl 10.88.0.7
Apache2 on Podman Container
            "IPAddress": "10.88.0.7",
                  "IPAddress": "10.88.0.7", 
(04)使用Dockerfile
Podman:使用Dockerfile
  使用Dockerfile并自动创建容器映像。
  它对容器映像的配置管理也很有用。
 例如,创建一个已安装并启动 Nginx 的 Dockerfile。
root@dlp:~# vi Dockerfile
# create new
FROM ubuntu
MAINTAINER ServerWorld <admin@srv.world>

RUN apt-get update
RUN apt-get -y install nginx
RUN echo "Dockerfile Test on Nginx" > /var/www/html/index.html

EXPOSE 80
CMD ["/usr/sbin/nginx", "-g", "daemon off;"]

# build image ⇒ podman build -t : .
root@dlp:~# podman build -t srv.world/ubuntu-nginx:latest .
root@dlp:~# podman images
# run container
root@dlp:~# podman run -d -p 80:80 --security-opt apparmor=unconfined srv.world/ubuntu-nginx
root@dlp:~# podman ps
STEP 1/7: FROM ubuntu
STEP 2/7: MAINTAINER ServerWorld <admin@srv.world>
--> f2fc42956ea5
STEP 3/7: RUN apt-get update

.....
.....

STEP 6/7: EXPOSE 80
--> 79117f75b19a
STEP 7/7: CMD ["/usr/sbin/nginx", "-g", "daemon off;"]
COMMIT srv.world/ubuntu-nginx:latest
--> 1b1a4d3f4f26
Successfully tagged srv.world/ubuntu-nginx:latest
1b1a4d3f4f26fdac6a7556c81a8cee65bfdbaaeff204ccc700f16b91d83e8dec

REPOSITORY                TAG         IMAGE ID      CREATED             SIZE
srv.world/ubuntu-nginx    latest      1b1a4d3f4f26About a minute ago125 MB
srv.world/ubuntu-apache2latest      38d50833686337 minutes ago      226 MB
docker.io/library/ubuntulatest      bf3dc08bfed05 days ago          78.7 MB

1628817a1fa315f96be582e324daf4fad31bc51f1ef015be6dd3f2d2750fb5fd


CONTAINER IDIMAGE                        COMMAND               CREATED         STATUS         PORTS               NAMES
1628817a1fa3srv.world/ubuntu-nginx:latest/usr/sbin/nginx -...18 seconds agoUp 18 seconds0.0.0.0:80->80/tcpintelligent_chatterjee

# verify accesses
root@dlp:~# curl localhost
Dockerfile Test on Nginx
# also possible to access via container network
root@dlp:~# podman inspect -l | grep \"IPAddress
root@dlp:~# curl 10.88.0.2
Dockerfile Test on Nginx
            "IPAddress": "10.88.0.2",
                  "IPAddress": "10.88.0.2", 
Dockerfile 的格式为 。
有关指令,请参阅以下说明。
指令描述FROM它为后续指令设置基础映像。MAINTAINER它设置生成图像的“作者”字段。RUN它将在创建 Docker 映像时执行任何命令。CMD它将在执行 Docker 容器时执行任何命令。ENTRYPOINT它将在执行 Docker 容器时执行任何命令。LABEL它将元数据添加到图像中。EXPOSE它通知 Docker 容器将在运行时侦听指定的网络端口。ENV它设置环境变量。ADD它复制新文件、目录或远程文件 URL。COPY它复制新文件或目录。
的区别在于无法指定远程URL,也不会自动提取存档文件。VOLUME它创建一个具有指定名称的挂载点,并将其标记为持有 从本机主机或其他容器外部挂载的卷。USER它设置用户名或 UID。WORKDIR它设置工作目录。 
(05)使用外部存储
(06)使用外部存储(NFS)
(07)使用注册表
(08)Podman网络基础
(09)使用Docker CLI
(10)使用Docker Compose
(11)创建Pod
(12)普通用户使用
(13)生成Systemd单元文件
(14)容器资源使用情况
 

来源:https://www.cnblogs.com/nc086/p/18176668
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!
页: [1]
查看完整版本: 容器平台