Skip to content

Latest commit

 

History

History
39 lines (24 loc) · 961 Bytes

README.md

File metadata and controls

39 lines (24 loc) · 961 Bytes

CookBook Nuget Repository

About

CookBook Nuget Repository is a private NuGet feed server based on BaGet server implementation.

Prerequisites

Ensure Docker Desktop is installed and open on your computer.

Build

Run the following command to pull the BaGet server Docker image:

docker pull loicsharma/baget

Or from the deploy folder run the following command:

01_Container_Build.bat

Release

Run the following command to start a new Docker container using the loicsharma/baget image:

docker run --rm --name cookbook-nuget-repository -p 8005:80 --env-file "./src/CookBook.NugetRepository.Server/baget.env" -v "./baget-data:/var/baget" -d loicsharma/baget:latest

Or from the deploy folder run the following command:

02_Container_Release.bat

The CookBook Nuget Repository server will be hosted on http://localhost:8005