Hello everybody,
today I want to write few words about how to instal latest Nuget into Windows docker container. For this purpose you can use following commands:
RUN mkdir c:\NugetRUN Invoke-WebRequest 'https://dist.nuget.org/win-x86-commandline/v4.1.0/nuget.exe' -OutFile 'c:\Nuget\nuget.e...
Hello everybody,
recently I had following issue:
copy folder dotnet-dev-win-x64.1.0.1 into c:\Program Files\Dotnet in container. After different dancing and triings I've found following command that worked:
COPY ["dotnet-dev-win-x64.1.0.1", "c:/Program Files/dotnet"]
Hello everybody,
today I want to write few rakes of Dockerfile.
First of all I want to document how to install dot net sdk 1.1. It isn't installable by chocolatey, so I had to use following workaround:
RUN Invoke-WebRequest 'https://download.microsoft.com/download/1/1/4/114223DE-0AD6-4B8A-A8FB-16...
Hello everybody,
today I want to write a few words about Dockerfile.
So, as usually for developer it will not be enough just ordinary docker images. Quite often they need to add some more features to docker images. One of the useful ways to organize it can be creating Dockerfile.
Dock...
Hello everybody,
today I want to write a few words about how to work with Docker with help of C#.
Recently I've got a challenge to find the way how to manage Docker. Initially I've tried Docker.Dotnet library. It has quite interesting options for management of docker, but from my own prospec...
Hello everybody,
today I want to write a few words about two types of containers in windows:
Windows server containers
Hyper-V containers
Windows server containers provide application isolation through process and namespace isolation. Windows server container shares a kernel with the container...
Hello everybody,
today I want to write a few words about usage of docker for windows.
First of all, I want to point what is docker at all. There are many ideas of how to explain it, but in my opinion docker is like installed and configured piece of software with needed fragment of operating syste...