FW nexus docker

原文地址: http://www.cnblogs.com/wzy5223/p/5410990.html

Nexus 3.0 可以创建三种docker仓库:

1. docker (proxy)      代理和缓存远程仓库 ,只能pull

2. docker (hosted)    托管仓库 ,私有仓库,可以push和pull

3. docker (group)      将多个proxy和hosted仓库添加到一个组,只访问一个组地址即可,只能pull

一. 配置Nexus 3.0

 经过测试, Nexus必须启动https,否则只能通过localhost登陆,hosted仓库也不能push。https证书可以到CA购买,也可以用自签名证书。 

首先配置JVM1.8 ,下载安装Nexus 3.0,nexus-3.0.0-03-unix.tar.gz 。(下载需要代理,我已经上传到云盘:http://pan.baidu.com/s/1eRZesQe)

解压压缩包以后,切换到解压目录,运行下面的命令就能启动

./bin/nexus run  或者  ./bin/nexus start

在启动之前需要先修改配置文件: (红色字体)

1. 开启监听ssl协议端口

cat > etc/org.sonatype.nexus.cfg <<EOF
# Jetty section
application-port-ssl=8443
application-port=8081
application-host=0.0.0.0
nexus-args=${karaf.etc}/jetty.xml,${karaf.etc}/jetty-http.xml,${karaf.etc}/jetty-requestlog.xml,${karaf.etc}/jetty-https.xml,${karaf.etc}/jetty-http-redirect-to-https.xml
nexus-context-path=/

# Nexus section
nexus-edition=nexus-oss-edition
nexus-features= nexus-oss-feature
EOF

2. 生成证书秘钥

NEXUS_DOMAIN=nexus 没有可以随便写
NEXUS_IP_ADDRESS=192.168.31.135 你的IP

mkdir etc/sslcd etc/ssl
keytool -genkeypair -keystore keystore.jks -storepass nexus3 -keypass nexus3 -alias jetty -keyalg RSA -keysize 2048 -validity 5000 -dname "CN=*.${NEXUS_DOMAIN}, OU=Example, O=Sonatype, L=Unspecified, ST=Unspecified, C=US" -ext "SAN=DNS:${NEXUS_DOMAIN},IP:${NEXUS_IP_ADDRESS}" -ext "BC=ca:true"

3. 修改etc/jetty-https.xml ,红色字体

    <Set name="KeyStorePath"><Property name="karaf.etc"/>/ssl/keystore.jks</Set>
    <Set name="KeyStorePassword">nexus3</Set>
    <Set name="KeyManagerPassword">nexus3</Set>
    <Set name="TrustStorePath"><Property name="karaf.etc"/>/ssl/keystore.jks</Set>
    <Set name="TrustStorePassword">nexus3</Set>

4. 启动Nexus3.0

./bin/nexus run

5. 在运行docker的机器上信任nexus的证书, ubuntu系统

keytool -printcert -sslserver ${NEXUS_IP_ADDRESS}:8443 -rfc >nexus.crtsudo mv nexus.crt /usr/local/share/ca-certificates/nexus.crtsudo update-ca-certificates

6. 重启docker

sudo service docker restart

二. 创建docker代理仓库, docker (proxy)

访问Nexus的主页,https://192.168.31.135:8443 ,(注,自签名证书需要在浏览器将地址添加到白名单,访问http协议的8081端口会自动跳转)

用管理员登陆,用户名/密码 : admin/admin123,创建docker (proxy)仓库,内容如下面修改:

Name: dockerHTTPS: 8888
Enable Docker V1 API:  true 勾选下面的复选框
Remote storage:  https://registry-1.docker.io
Docker Index: Use Docker Hub
Blob store: default

修改完成以后登陆代理仓库, 用户名密码: admin/admin123

docker login ${NEXUS_IP_ADDRESS}:8888

然后可以用下面的命令搜索和下载docker镜像

docker search ${NEXUS_IP_ADDRESS}:8888/hello-world

docker pull ${NEXUS_IP_ADDRESS}:8888/hello-world

下载成功以后,可以看到hello-world镜像已经缓存在nexus上了,其它机器再次下载速度就会快很多。

时间: 2024-10-14 17:02:07

FW nexus docker的相关文章

docker nexus oss

sonatype/docker-nexus Docker images for Sonatype Nexus with the Oracle JDK. To build: # docker build --rm --tag sonatype/nexus oss/ # docker build --rm --tag sonatype/nexus-pro pro/ To run (if port 8081 is open on your host): # docker run -d -p 8081:

docker --Nexus仓库

Nexus 简介 Nexus 是个仓库管理器,目前主要分2大版本:2.X 和 3.X.2.X 主要支持的格式是Maven.P2.OBR.Yum.3.X主要支持的是Docker.NuGet.npm.Bower.Pypi.Ruby Gems,当然也支持构建工具Maven 和Gradle.Nexus 3只支持Oracle jdk8,不支持其它版本的JDK,比如OpenJDK.更多内容可以查看Nexus下载页面. Nexus 安装 本次安装的Nexus OSS的版本是3.1.0.Nexus3 Docke

在 Docker 搭建 Maven 私有库

在 Docker 搭建 Maven 私有库 小引 If you are developing software without a repository manager you are likely missing a number of opportunities to reduce some pretty obvious inefficiencies. If everyone on your team has to hit public repositories like the Centr

使用Nexus搭建私有Nuget仓库

前言 Nuget是ASP .NET Gallery的一员,是免费.开源的包管理工具,专注于在.Net / .Net Core应用开发过程中第三方组件库的管理,相对于传统单纯的dll引用要方便.科学得多.其中nuget.org是最著名的Nuget公开库,但是企业内部开发的(业务)公共组件不可能都往公开库上传,所以,企业内部需要一个私有的Nuget仓库来支持.虽然微软有提供的Nuget Server,但Nuget Server用起来并不那么顺手,或者说感觉有点low.因此,本文将介绍Nexus搭建的

Docker 系列四(自定义仓库).

一.Docker hub 交互 Docker hub 是 Docker 官方维护的一个公共仓库,大部分需求都可以通过在 Docker hub 中直接下载镜像来完成.接下来,来看一下怎么与 Docker hub 进行交互,包括登陆登出以及将本地镜像推送到 Docker hub 等... 注册:https://hub.docker.com/ 注册的时候需要FQ~~ 登陆:docker login 登出:docker logout 搜索镜像: docker search [name] --filter

Maven和Nexus

Maven和Nexus 1.Maven的功能 --->优秀的构建工具:完成清理.编译.测试.打包.部署等一系列过程 --->依赖管理工具:解决了合作开发中依赖增多.版本不一致.版本冲突.依赖臃肿等问题 --->项目信息管理工具:管理项目描述.开发者列表.版本控制系统地址.许可证等一些比较零散的项目信息 2.Nexus Nexus是在局域网内架设一个私有的仓库服务器,用其代理所有外部的远程仓库. 当本地Maven项目需要下载构件时,先去私服请求,如果私服没有,则再去远程仓库请求,从远程仓库

试用 Nexus OSS 3.0 的docker仓库 (二)

试用 Nexus OSS 3.0 的docker仓库 (一) : http://www.cnblogs.com/wzy5223/p/5410990.html 三. 创建docker私有仓库,docker (hosted) 访问Nexus的主页,https://192.168.31.135:8443 创建docker (proxy)仓库,内容如下面修改: Name: docker_hosted HTTPS: 8889 Enable Docker V1 API: true 勾选下面的复选框 Blob

使用nexus搭建docker register仓库

什么是nexus? nexus是一个强大的私库管理平台.在没有私有仓库的时候,我们镜像提交只能提交公网,会造成公网带宽.并且我们有一些私有的镜像和maven包不想放到公网.也不好处理. 我们使用一条命令快速搭建nexux docker run -d --net host --name nexus sonatype/nexus3启动之后我们就可以通过http://localhost:8081 访问.默认账号密码为admin/admin123 创建docker repository 按照下图找到cr

Docker安装Nexus

1. 创建持久化目录 $ mkdir /app/nexus-data $ chown -R 200 /app/nexus-data 2. 创建镜像并运行 docker run -d -p 8081:8081 --name nexus --restart always  -v /app/nexus-data:/nexus-data sonatype/nexus 3. 再次运行 $ docker run nexus 原文地址:http://blog.51cto.com/2179425/2082907