nexus 3.17.0 作爲golang 的包管理工具

nexus 3.17.0 作爲golang 的包管理工具

nexus 3.17.0 新版本對於go 包管理的支持是基於go mod 的,同時咱們也須要一個athens server
而後在nexus 中配置proxy 類型的repogit

參考配置

  • 來自官方的配置圖

watermark,size_14,text_QDUxQ1RP5Y2a5a6i,color_FFFFFF,t_100,g_se,x_10,y_10,shadow_20,type_ZmFuZ3poZW5naGVpdGk=

 

  • 說明
    就和上邊說的同樣,咱們須要一個athens server,nexus 對於go mod 的支持就是經過配置proxy到athens server
    同時爲了使用須要配置GOPROXY 環境變量

環境搭建

  • docker-compose 文件
version: "3"
services:
nexus:
image: sonatype/nexus3:3.17.0
ports:
- "80:8081"
volumes:
- "./nexus-data:/nexus-data"
athens:
image: gomods/athens:latest
ports:
- "3000:3000"
  • 配置go proxy

watermark,size_14,text_QDUxQ1RP5Y2a5a6i,color_FFFFFF,t_100,g_se,x_10,y_10,shadow_20,type_ZmFuZ3poZW5naGVpdGk=

 

golang 代碼使用proxy

  • 配置host 文件
    由於localhost 有問題,因此簡單配置了一個127.0.0.1 dalongrong.com
 
127.0.0.1  dalongrong.com
  • 簡單go mod 項目
go mod init github.com/rongfengliang/nexus-mod
go: creating new go.mod: module github.com/rongfengliang/nexus-mod
  • 一個簡單的http server 代碼
main.go:
package main
import (
"fmt"
"net/http"
"github.com/urfave/negroni"
)
func main() {
mux := http.NewServeMux()
mux.HandleFunc("/", func(w http.ResponseWriter, req *http.Request) {
fmt.Fprintf(w, "Welcome to the home page!")
})
n := negroni.Classic() // Includes some default middlewares
n.UseHandler(mux)
http.ListenAndServe(":8000", n)
}
  • 配置GOPROXY
export GOPROXY=http://dalongrong.com/repository/golang/
  • 添加缺乏的依賴
go mod tidy
  • 構建
go build
  • 運行
./nexus-mod

效果github

├── go.mod
├── go.sum
├── main.go
└── nexus-mod
  • nexus 系統proxy 的信息

watermark,size_14,text_QDUxQ1RP5Y2a5a6i,color_FFFFFF,t_100,g_se,x_10,y_10,shadow_20,type_ZmFuZ3poZW5naGVpdGk=

 

說明

以上是一個簡單的學習試用,同時也支持group 類型的,仍是很不錯的golang

參考資料

https://help.sonatype.com/repomanager3/release-notes/2019-release-notes#id-2019ReleaseNotes-RepositoryManager3.17.0 
https://help.sonatype.com/repomanager3/formats/go-repositories 
https://github.com/rongfengliang/nexus-golang-packagedocker

相關文章
相關標籤/搜索