项目基于 docker 搭建.
编辑 gitlab.rb 文件
该文件在容器里的路径为
1 | /etc/gitlab/gitlab.rb |
编辑一下内容
1 | gitlab_rails['manage_backup_path'] = true |
更新 gitlab 配置
1 | gitlab-ctl reconfigure |
使用 crontab 添加定时任务
1 | crontab -e |
添加配置, 每天 0 点备份
1 | 0 0 * * * /opt/gitlab/bin/gitlab-rake gitlab:backup:create |
查看备份文件, 备份目录在容器里的路径
1 | /var/opt/gitlab/backups |
查看
1 | cd /var/opt/gitlab/backups |
参考链接
https://blog.csdn.net/rdp1305442102/article/details/105768441