Sign inSign up

maxhorstmann/dotnet-dev

By maxhorstmann

Updated over 6 years ago

Tools for .NET Core development

Image
0

165

maxhorstmann/dotnet-dev repository overview

docker-dotnet-dev

Docker container with tools for .NET Core development (dockerhub repo)

Also, sample docker-compose.yml to spin up a local dev environment which also contains an instance of SQL Server (on Linux).

sample usage

Spin up dev environment:

$ docker-compose up -d
$ docker exec -it dotnet-dev /bin/bash

You're now inside the development container. Check .NET Core version:

$ dotnet --version

Create new ASP.Net Core site:

$ dotnet new mvc

Open Startup.cs in vim:

$ vim Startup.cs

Use ASP.NET code generator:

$ dotnet aspnet-codegenerator

Exit development container:

$ exit

Note new files have been added to host file system.

Tag summary

Content type

Image

Digest

Size

282.7 MB

Last updated

over 6 years ago

docker pull maxhorstmann/dotnet-dev