一款开源的、跨平台的Nuget包管理服务,支持NuGet V3 API
参考:https://linch90.github.io/tutorial/nuget/private-docker-nuget-server/
https://loic-sharma.github.io/BaGet/quickstart/docker/
搭建步骤:
1、准备
安装docker(参考:https://docs.docker.com/install/)
安装docker-compose(https://docs.docker.com/compose/install/)
2、安装Baget
1)在data/baget目录下创建baget.env文件,文件配置:
ApiKey=NUGET-SERVER-API-KEY
Storage__Type=FileSystem
Storage__Path=/var/baget/packages
Database__Type=Sqlite
Database__ConnectionString=Data Source=/var/baget/baget.db
Search__Type=Database
2)在data/baget/目录下创建docker-compose.yml文件
version: '3'
services:
nuget-server:
image: loicsharma/baget:latest
ports:
- 5555:80
env_file: /var/baget/baget.env
volumes:
- /data/baget:/var/baget
3)进入/data/baget目录,启动服务
docker-compose up -d
4)上传你的第一个nuget包(window cmd 下执行该命令,且确保已安装dotnet环境)
dotnet nuget push -s http://localhost:5555/v3/index.json -k NUGET-SERVER-API-KEY newtonsoft.json.11.0.2.nupkg