Docker 建立私有仓库 1https://yeasy.gitbook.io/docker_practice/repository/registry 1. 安装运行 docker-registry 1-1. 你可以使用官方 registry 镜像来运行 1docker run -d -p 5000:5000 –restart=always –name registry registry 这将使用官方的 registry 镜像来启动私有仓库。默认情况下,仓库会被创建在容器的 /var/lib/registry 目录下。你可以通过 -v 参数来将镜像文件存放在本地的指定路径。 例如下面的例子将上传的镜像放到本地的 /opt/data/registry 目录 1234$ docker run -d \ -p 5000:5000 \ -v /opt/data/registry:/var/lib/registry \ registry 在私有仓库上传、搜索、下载镜像 创建好私有仓库之后,就可以使用 docker tag 来标记一个镜像,然后推送它到仓库。例如私有仓库地址为 127.0.0.1:5000 2. 先在本机查看已有的镜像 […]
Author Archives: Administrator
为gitlab 10.x 配置SSL访问 12https://docs.gitlab.com/omnibus/settings/ssl.html#automatic-renewal https://george.betterde.com/20190518.html 使用 HTTPS 自带 Let’s Encrypt Gitlab 10.7 版本内置了 Let’s Encrypt,你只需要配置 /etc/gitlab/config/gitlab.rb 如下几个参数就可以,自动启用 HTTPS 了 1. 查看是否开启了端口 1234firewall-cmd –zone=public –permanent –add-port=443/tcp firewall-cmd –zone=public –permanent –add-port=443/udp firewall-cmd –reload firewall-cmd –list-all //看到有放行443端口了 2. 阿里网页防火墙也有开 […]
Gitlab服务器配置gmail企业邮箱,实现自动为用户发送邮件 12345https://www.bilibili.com/read/cv12458883 https://www.cnblogs.com/yoyoketang/p/10272544.html https://www.cnblogs.com/yoyoketang/p/10287345.html https://docs.gitlab.com/omnibus/settings/smtp.html https://blog.csdn.net/qianghaohao/article/details/79331895?utm_source=blogxgwz5 本文介绍如何为Gitlab服务配置邮箱,实现服务器向用户自动发送邮件。发邮件的使用场景有很多,比如,用户忘记密码后申请密码重置,用户自行注册账户时,接受邮件用于验 证账户等。 一. 配置前准备工作及说明 1. 服务器系统版本:CentOS 7 2. postfix,并在终端运行systemctl status postfix检查服务是否已在运行状态,如果显示activate则表示正在运行 123rpm -qa | grep postfix //查看下是否已经安装好 systemctl restart postfix.service //重启postfix服务 systemctl status postfix.service //查看是否已经在线 2-2. 解决报错问题. 12启动过程中如果报错: Job for postfix.service failed because the control process exited with […]
HK VPS搭建gitlab 12https://www.vermax.cn/1295.html] https://blog.csdn.net/weixin_33795743/article/details/92725862 1. 阿里云新开了一台香港vps , IP是: 8.210.232.250 .centos 7.3 纯净系统 2. gitlab.vermax.cn A记录 指向 8.210.232.250 3-1. 搭建GitLab前提工作 环境配置 1. 系统:Red-Hat系列CentOS 7.x-x86_64(笔者采用的是CentOS7.3) 2. CPU:建议双核以上 3. 内存:4GB(官方建议4GB以上) 1234567yum install -y curl policycoreutils-python openssh-server openssh-clients //安装 curl policycoreutils-python openssh-server openssh-clients systemctl enable sshd.service […]
使用Windows server 2008 R2如何更改桌面背景 [https://jingyan.baidu.com/article/4ae03de3bd662a3efe9e6b44.html] 1. 开始 – 所有程序 2. 附件→系统工具→控制面板 3. 外观 4. 显示 5. 更改桌面背景 6. 换背景 – 保存修改 7. 远程时把这些都打勾 8. 正版授权 方法1:下载激活软件 https://winsoft.vermax.cn/Windows.Loader.v2.2.2.zip 方法2: 1234slmgr /ipk 489J6-VHDMP-X63PK-3K798-CPX3Y slmgr /skms zh.us.to slmgr /ato slmgr /xpr
Google 企业邮箱申请步骤 1.申请网站: 1https://workspace.google.com/products/gmail/?utm_source=google&utm_medium=website&utm_content=use_gmail_for_business&utm_campaign=FY19-Q2-global-xsell-referralgoogle-ft-GmailHelpCentertoGSuiteXSell 2.开始免费试用: 3. 输入 企业名字,员工人数,然后”下一步” 4. 输入联系方式,然后下一步 5. 选择”是的,我有可用域名” 6. 输入域名,然后 “下一步” 7. “下一步” 8. 点 “确定” 9. info@bndstone.com 设置密码,然后 同意并继续. 10. 继续设置 11. “下一步” 12. gmail 启用 13. 系统会自动检测到 域名提供商是godaddy.点”登陆以激活” 14. 输入godaddy 账号密码. 15. 暂时跳过 16. 设置结算信息 17. 开始使用 18. 币种选择 USD – 结算 19. 输入公司地址 – 下单 20. 输入visa卡信息 – […]
docker push image 到docker hub 1https://blog.csdn.net/fake_hydra/article/details/84865117 1-1. 你需要有一个docker hub的账号 如果没有,注册一个:https://hub.docker.com 1-2. 创建好以后,到终端,登陆到自己的账户 输入自己的用户名密码即可 123docker login ancky2006 输入密码 1-3. 查看信息: 1docker info|grep Username 1-4. 解决 WARNING: bridge-nf-call-iptables is disabled 执行docker info出现如下警告 12WARNING: bridge-nf-call-iptables is disabled WARNING: bridge-nf-call-ip6tables is disabled 解决办法: 1vi /etc/sysctl.conf 添加以下内容 12net.bridge.bridge-nf-call-iptables = 1 net.bridge.bridge-nf-call-ip6tables = 1 最后再执行 1sysctl -p 2. 查看已有镜像 1docker images […]
Nginx配置upstream并且实现负载均衡 12https://www.cnblogs.com/muhy/p/10521896.html https://www.coder4.com/archives/6914 1. docker 下分别建了两台容器 12centos73 —> docker exec -it centos73 /bin/bash —> 172.17.0.3 —> 8.217.41.220:8072 [bb3d40707ed7] centos74 —> docker exec -it centos74 /bin/bash —> 172.17.0.4 —> 8.217.41.220:8082 [d847cb82dd19] 2. 两台机器分别安装了Nginx和Tomcat ,[两台都已经安装了lnmp.所以这次两台都只需安装tomcat] 1234yum install -y tomcat //安装tomcat服务 systemctl […]
Docker进入容器报bash: warning: setlocale: LC_CTYP: cannot change locale (en_US.UTF-8):No such file or dir 实时报错 12345bash: warning: setlocale: LC_CTYPE: cannot change locale (en_US.UTF-8): No such file or directory bash: warning: setlocale: LC_COLLATE: cannot change locale (en_US.UTF-8): No such file or directory bash: warning: setlocale: LC_MESSAGES: cannot change locale (en_US.UTF-8): No such file or directory bash: warning: setlocale: […]
0-1 Centos查看docker容器ip 0-1-1. 安装net-tools 1yum install net-tools -y 0-1-2. 查看 docker0 inet addr后面的即为docker容器ip 1ifconfig 0-2. 查看centos版本 1cat /etc/redhat-release 一. docker Failed to get D-Bus connection: Operation not permitted 解决办法 1https://www.jianshu.com/p/175b59c2192f 系统用的是centos7.3,docker1.12,不管是在生成镜像时,或者是在容器内,如果用的systemctl,service命令就会报Failed to get D-Bus connection: Operation not permitted。有人说centos7.2以后,就没有这个问题了,我用的7.3一样会有这样的问题 1-1. 创建容器 1docker run –name centos7 –privileged -d -e "container=docker" -p 8091:22 -p 8092:80 -p 8093:443 -p […]