CookBook Nuget Repository is a private NuGet feed server based on BaGet server implementation.
Ensure Docker Desktop is installed and open on your computer.
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
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