当前位置: 首页 > 工具软件 > BaGet > 使用案例 >

docker私有nuget部署baget

赵献
2023-12-01

微服务中,公用代码dll,私有化nuget

配置文件baget.env

mkdir /data/nuget
cd /data/nuget 创建baget.env文件

# The following config is the API Key used to publish packages.
# You should change this to a secret value to secure your server.
ApiKey=youabc123key

Storage__Type=FileSystem
Storage__Path=/var/baget/packages
Database__Type=Sqlite
Database__ConnectionString=Data Source=/var/baget/baget.db
Search__Type=Database
AllowPackageOverwrites=True

docker run -d --name BaGet-nuget -p 90:80 --env-file baget.env -v “$(pwd)/baget-data:/var/baget” loicsharma/baget:latest

推送语句

在解决方案资源管理器-选择项目–右键属性–打包–勾选(在构建时生成NUGET包)根据需要填写其他信息–生成
cd 到该bin目录下面
dotnet nuget push -s http://xx.xx.xx.xx:90/v3/index.json -k youabc123key youcoreproject.1.0.0.nupkg

Visual Studio 2019 设置

工具–Nuget包管理器–程序包源–添加源http://xx.xx.xx.xx:90/v3/index.json
参考文档

 类似资料: