opkscuba.blogg.se

How to start docker on mac terminal
How to start docker on mac terminal






how to start docker on mac terminal

The preceding Dockerfile is based on the microsoft/aspnetcore image, and includes instructions for modifying the base image by building your project and adding it to the container. RUN dotnet publish "DockerDemo.csproj" -c Release -o /app/publish RUN dotnet build "DockerDemo.csproj" -c Release -o /app/build RUN dotnet restore "DockerDemo/DockerDemo.csproj" FROM /dotnet/core/aspnet:2.2-stretch-slim AS baseįROM /dotnet/core/sdk:2.2-stretch AS buildĬOPY DockerDemo/DockerDemo.csproj DockerDemo/ Refer to Dockerfile reference for an understanding of the commands within it. Visual Studio for Mac will automatically add a new project to your solution called docker-compose and add a Dockerfile to your existing project.Ī Dockerfile is the recipe for creating a final Docker image. In the Solution Window, right click the DockerDemo project and select Add > Add Docker Support:.The created project contains all the basics you need to build and run an ASP.NET Core web site. Running means theres a Docker service running on your computer, to which you can connect using the command line. Enter the project details, such as name ( DockerDemo in this example).NET Core > App choose the Web Application template: Create a new solution by going to File > New Solution.Creating an ASP.NET Core Web Application and Adding Docker Support Prerequisitesįor Docker installation, review and follow the information at Install Docker Desktop for Mac. With Visual Studio for Mac, you can easily build, debug, and run containerized ASP.NET Core apps and publish them to Azure. Applies to: Visual Studio for Mac Visual Studio








How to start docker on mac terminal