【nexus】nexus3.x 安装包相关官网、安装教程

Nexus Repository Manager OSS 3.x

https://www.sonatype.com/download-oss-sonatype

https://help.sonatype.com/repomanager3/download

https://help.sonatype.com/repomanager3/download/download-archives---repository-manager-3

 

Repository Manager 3

https://help.sonatype.com/repomanager3

 

sonatype/nexus3

https://hub.docker.com/r/sonatype/nexus3

 

sonatype/docker-nexus3

https://github.com/sonatype/docker-nexus

 

SSL and Repository Connector Configuration

https://help.sonatype.com/repomanager3/formats/docker-registry/ssl-and-repository-connector-configuration

https://help.sonatype.com/repomanager3/system-configuration/configuring-ssl#ConfiguringSSL-InboundSSL-ConfiguringtoServeContentviaHTTPS

 

 

【registry】CentOS7.x上 registry server的安装使用
https://www.jianshu.com/p/69be934daa50


【nexus】用nexus3.5搭建docker私有仓库
https://www.jianshu.com/p/7a7db54a538f

 

【nexus】用nexus3.x 官方镜像搭建docker私有镜像仓库
https://www.jianshu.com/p/86e573f18df3


【nexus】Nexus 3.x的三种docker仓库
https://www.jianshu.com/p/ff8bd2505480



【harbor】CentOS7.x上用harbor安装docker镜像仓库
https://www.jianshu.com/p/1e40b58089ac
 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
sing System; using System.Drawing; using System.Windows.Forms; namespace Netron.Diagramming.Core { /// <summary> /// Abstract base class for a connection /// </summary> public abstract partial class ConnectionBase : DiagramEntityBase, IConnection { #region Fields /// <summary> /// the start connector /// </summary> private IConnector mFrom; /// <summary> /// the end connector /// </summary> private IConnector mTo; #endregion #region Properties /// <summary> /// The initial or start connector /// </summary> public IConnector From { get{return mFrom;} set{mFrom = value;} } /// <summary> /// The final or end connector /// </summary> /// <example> /// <code> /// Connection connection /// </code> /// </example> public IConnector To { get{return mTo;} set{mTo = value;} } #endregion #region Constructor /// <summary> /// Default constructor /// </summary> /// <param name="site"></param> protected ConnectionBase(IModel site) : base(site) { PenStyle = ArtPallet.GetDefaultPenStyle(); } /// <summary> /// Initializes a new instance of the <see cref="T:ConnectionBase"/> class. /// </summary> /// <param name="from">From.</param> /// <param name="to">To.</param> protected ConnectionBase(Point from, Point to) : base() { this.mFrom = new Connector(from); this.mFrom.Parent = this; this.mTo = new Connector(to); this.mTo.Parent = this; PenStyle = ArtPallet.GetDefaultPenStyle(); } public ConnectionBase() : base() { } #endregion #region Methods /// <summary> /// Paints the entity on the control /// </summary> /// <param name="g"></param> public override void Paint(Graphics g) { if (g == null) throw new ArgumentNullException("The Graphics object is 'null'"); From.Paint(g); To.Paint(g); } /// <summary> /// The custom menu to be added to the base menu of this entity /// </summary> /// <returns></returns> public override MenuItem[] ShapeMenu() { return null; } /// <summary> /// Invalidates the entity /// </summary> public override void Invalidate() { Rectangle r = Rectangle; r.Offset(-10, -10); r.Inflate(40, 40); if (Model != null) Model.RaiseOnInvalidateRectangle(r); } #endregion
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值