| 作者: Witton Bell
| 293 字
| 1 分钟
首先创建容器 1sudo podman pull golang:1.21 2sudo podman run -itd --name go-dlv golang:1.21 然后使用命令 1sudo podman exec -it go-dlv /bin/bash 进入容器,在容器内执行下面的命令安装go调试器dlv: 1go env -w GOPROXY=https://goproxy.cn,direct ……
阅读全文
| 作者: Witton Bell
| 3397 字
| 7 分钟
随着容器的应用越来越多,将nginx部署在容器中也是常有之事。可能事先创建容器时只暴露了一个端口给浏览器连接,后面又想根 ……
阅读全文
| 作者: Witton Bell
| 2505 字
| 5 分钟
在使用Goland的时候,可以直接使用它集成的功能来向远程主机部署容器,但是如果直接使用命令行的方式该如何操作?查看he ……
阅读全文
| 作者: Witton Bell
| 822 字
| 2 分钟
之前在使用podman容器时都一切正常,可以在Windows下使用Goland的Docker工具直接部署容器到远程Lin ……
阅读全文
| 作者: Witton Bell
| 890 字
| 2 分钟
笔者前面的博文 使用nexus3作为Docker镜像仓库介绍了如何使用nexus3来作为容器的镜像仓库,在生成证书时,使用 ……
阅读全文
| 作者: Witton Bell
| 2428 字
| 5 分钟
今天给Gitlab做了一个备份,并且设置了每天自动备份,记录一下。 一、导出全部项目 由于Gitlab Web页面并没有自动备 ……
阅读全文
| 作者: Witton Bell
| 1015 字
| 3 分钟
公司服务器的一些软件使用了容器技术,比如Podman、Docker,从架设到现在已经稳定运行了1年半了,半年前发现磁盘占 ……
阅读全文
| 作者: Witton Bell
| 1976 字
| 4 分钟
一、创建容器 为了让容器内的调试器(gdb、lldb)能够正常调试,在创建容器时需要添加参数: podman添加参数:--c ……
阅读全文
| 作者: Witton Bell
| 1746 字
| 4 分钟
使用podman容器时,podman会默认使用/var/lib/containers路径作为存储路径,可能会导致根磁盘空 ……
阅读全文
| 作者: Witton Bell
| 2733 字
| 6 分钟
markdown是目前网络上比较流行的文档格式,前一篇博文 容器中搭建WordPress中介绍了在容器中如何搭建WordP ……
阅读全文