GitLab Container Registry 垃圾回收
GitLab Container Registry docker 镜像 清理 sudo gitlab-ctl registry-garbage-collect -m
GitLab Container Registry docker 镜像 清理 sudo gitlab-ctl registry-garbage-collect -m
默认语言en, 路由前缀: en => / es => /es fr => /fr it => /it … 路由 routes # config/routes.rb Rails.application.routes.draw do # 正则最后是重点,用来配首页 scope '(:locale)', locale: /es|fr|it|...
Rails 当前月份日期数 Time.days_in_month(Time.now.month, Time.now.year) 指定月份日期数 t为时间实例日期 Time.days_in_month(t.month, t.year) 取月份的所有日期 # Return Array def get_days_in_month(month, year) days = Time....
如果要删除所有 none 标签的镜像,无论是否与任何容器关联,使用以下命令: docker rmi $(docker images | grep "none" | awk '/ / { print $3 }') 解释一下上述命令的含义: docker images 命令用于列出 Docker 中的镜像。 grep “none” 命令用于筛选出包含 none 标签...
最近开发用的Rails项目用了postgresql + clickhouse,踩了不少坑. 项目使用了 rails engines,如下方式创建 $ rails plugin new blorgh --mountable 详细文档 https://guides.rubyonrails.org/engines.html Rails多数据库如何复制gem的迁移文件到项目中? blor...
Docker + Jekyll 快速构建简易博客 docker pull jekyll/jekyll 待续…
You’ll find this post in your _posts directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run je...