APT 返回 TypeError 的错误

最近在为公司整理工作环境,部署 OMV 4 时,发现 apt update 指令会引发如下错误:

Exception ignored in: <function WeakValueDictionary.__init__.<locals>.remove at 0x............>
Traceback (most recent call last):
  File "/usr/lib/python3.5/weakref.py", line 117, in remove
TypeError: 'NoneType' object is not callable
Exception ignored in: <function WeakValueDictionary.__init__.<locals>.remove at …
Read more…

使用 Docker Compose 搭建本地 GitLab 服务器

软件安装

过程主要参考自 Omnibus GitLab 官方文档install GitLab using docker-compose 章节。

设置项选择

设置项 备注
安装版本 gitlab-ce
服务器 IP 192.168.3.12 Docker 容器
工作目录 ~/docker-test 容器(集)配置所在路径,此次安装主要工作路径
服务目录 ~/gitlab GitLab 服务使用的文件将保存在此处
HTTP 端口 80 唯一 Web 服务,可以独占端口
SSH 端口 2201 Docker 主机使用了缺省的 22 端口
访问地址 …
Read more…