1 建立Dockerfile 文件 (考虑到安全稳定性,这里基于UBI镜像,为了安全起见,可以不要使用root)
1 | FROM registry.redhat.io/ubi8/ubi |
2 创建容器
1 | # podman build -t etherpad:v1 . |
3 容器镜像建立完毕,直接运行容器 (这样就可以本机的9001端口访问到etherpad了)
1 | # podman run -d -p 9001:9001 localhost/etherpad:v1 |
1 | FROM registry.redhat.io/ubi8/ubi |
1 | # podman build -t etherpad:v1 . |
1 | # podman run -d -p 9001:9001 localhost/etherpad:v1 |