NuGetNext发布,全新版私有化NuGet管理

程序员有二十年 2024-11-03 10:59:01
NuGet Next发布,全新版私有化NuGet管理

NuGet Next是一款基于BaGet的一款私有化NuGet管理平台,我们对BaGet进行了扩展,并且提供了更多的功能。

NuGet 最新版开源私有化包管理,我们基于BaGet的基础之上增加了更多的功能,并且对中国市场做更多兼容,比如国产化支持。

功能介绍[x] 支持用户管理[x] 支持包管理溯源[x] 支持包管理[x] 用户支持自定义Key[x] 支持SqlServer数据库[x] 支持PostgreSql数据库[x] 支持MySql数据库[x] 支持DM(达梦)数据库快速部署

使用docker compose快速部署

version: '3.8'services:nuget.next:image: registry.token-ai.cn/ai-dotnet/nuget-nextbuild:context: .dockerfile: src/NuGet.Next/Dockerfilecontainer_name: nuget-nextports:- "5000:8080"volumes:- ./nuget:/app/data # 请注意手动创建data目录,负责在Linux下可能出现权限问题导致无法写入environment:- Database:Type=SqLite- Database:ConnectionString=Data Source=/app/data/nuget.db # 数据库连接字符串- Mirror:Enabled=true # 是否启用镜像源- Mirror:PackageSource=https://api.nuget.org/v3/index.json # 镜像源,如果本地没有会自动从镜像源拉取- RunMigrationsAtStartup:true # 是否在启动时运行迁移,如果是第一次启动请设置为truedocker-compose up -d国产化支持version: '3.8'services:nuget.next:image: registry.token-ai.cn/ai-dotnet/nuget-nextbuild:context: .dockerfile: src/NuGet.Next/Dockerfilecontainer_name: nuget-nextports:- "5000:8080"volumes:- ./nuget:/app/data # 请注意手动创建data目录,负责在Linux下可能出现权限问题导致无法写入environment:- Database:Type=DM # 达梦数据库- Database:ConnectionString=Server=localhost;User id=SYSDBA;PWD=SYSDBA;DATABASE=NUGET # 数据库连接字符串- Mirror:Enabled=true # 是否启用镜像源- Mirror:PackageSource=https://api.nuget.org/v3/index.json # 镜像源,如果本地没有会自动从镜像源拉取- RunMigrationsAtStartup:true # 是否在启动时运行迁移,如果是第一次启动请设置为truedocker-compose up -dPostgreSql数据库version: '3.8'services:nuget.next:image: registry.token-ai.cn/ai-dotnet/nuget-nextbuild:context: .dockerfile: src/NuGet.Next/Dockerfilecontainer_name: nuget-nextports:- "5000:8080"volumes:- ./nuget:/app/data # 请注意手动创建data目录,负责在Linux下可能出现权限问题导致无法写入environment:- Database:Type=PostgreSql- Database:ConnectionString=Host=postgres;Port=5432;Database=nuget-next;Username=token;Password=dd666666;- Mirror:Enabled=true # 是否启用镜像源- Mirror:PackageSource=https://api.nuget.org/v3/index.json # 镜像源,如果本地没有会自动从镜像源拉取- RunMigrationsAtStartup:true # 是否在启动时运行迁移,如果是第一次启动请设置为truedocker-compose up -dMySql数据库version: '3.8'services:nuget.next:image: registry.token-ai.cn/ai-dotnet/nuget-nextbuild:context: .dockerfile: src/NuGet.Next/Dockerfilecontainer_name: nuget-nextports:- "5000:8080"volumes:- ./nuget:/app/data # 请注意手动创建data目录,负责在Linux下可能出现权限问题导致无法写入environment:- Database:Type=MySql- Database:ConnectionString=Server=mysql;Port=3306;Database=nuget-next;Uid=root;Pwd=dd666666;- Mirror:Enabled=true # 是否启用镜像源- Mirror:PackageSource=https://api.nuget.org/v3/index.json # 镜像源,如果本地没有会自动从镜像源拉取- RunMigrationsAtStartup:true # 是否在启动时运行迁移,如果是第一次启动请设置为truedocker-compose up -dSqlServer数据库version: '3.8'services:nuget.next:image: registry.token-ai.cn/ai-dotnet/nuget-nextbuild:context: .dockerfile: src/NuGet.Next/Dockerfilecontainer_name: nuget-nextports:- "5000:8080"volumes:- ./nuget:/app/data # 请注意手动创建data目录,负责在Linux下可能出现权限问题导致无法写入environment:- Database:Type=SqlServer- Database:ConnectionString=Server=sqlserver;Database=nuget-next;User Id=sa;Password=dd666666;- Mirror:Enabled=true # 是否启用镜像源- Mirror:PackageSource=https://api.nuget.org/v3/index.json # 镜像源,如果本地没有会自动从镜像源拉取- RunMigrationsAtStartup:true # 是否在启动时运行迁移,如果是第一次启动请设置为truedocker-compose up -d使用说明默认用户名:admin默认密码:Aa123456.联系我们官方网站GitHubGitee邮箱QQ群

Github: https://github.com/AIDotNet/NuGet.NextGitee: https://gitee.com/aidotnet/NuGet.Next示例网站: https://nuget.token-ai.cn/

0 阅读:0

程序员有二十年

简介:感谢大家的关注