Git Product home page Git Product logo

docker-dotnet-checklist's Introduction

docker-dotnet-sample

A simple .NET web application example for Docker's .NET Language Guide.

Run tests when developing locally

The sample application already has an xUnit test inside the tests directory. When developing locally, you can use Compose to run your tests.

Run the following command in the docker-dotnet-sample directory to run the tests inside a container.

docker compose run --build --rm server dotnet test /source/tests

Run tests when building

To run your tests when building, you need to update your Dockerfile. You can create a new test stage that runs the tests, or run the tests in the existing build stage. For this guide, update the Dockerfile to run the tests in the build stage.

The following is the updated Dockerfile.

FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:6.0-alpine AS build
ARG TARGETARCH
COPY . /source
WORKDIR /source/src
RUN --mount=type=cache,id=nuget,target=/root/.nuget/packages \
    dotnet publish -a ${TARGETARCH/amd64/x64} --use-current-runtime --self-contained false -o /app
RUN dotnet test /source/tests # Add this

Run the following command to build an image using the build stage as the target and view the test results. Include --progress=plain to view the build output, --no-cache to ensure the tests always run, and --target build to target the build stage.

docker build -t dotnet-docker-image-test --progress=plain --no-cache --target build .

You should see output containing the following.

11 [build 5/5] RUN dotnet test /source/tests
11 1.564   Determining projects to restore...
11 3.421   Restored /source/src/myWebApp.csproj (in 1.02 sec).
11 19.42   Restored /source/tests/tests.csproj (in 17.05 sec).
11 27.91   myWebApp -> /source/src/bin/Debug/net6.0/myWebApp.dll
11 28.47   tests -> /source/tests/bin/Debug/net6.0/tests.dll
11 28.49 Test run for /source/tests/bin/Debug/net6.0/tests.dll (.NETCoreApp,Version=v6.0)
11 28.67 Microsoft (R) Test Execution Command Line Tool Version 17.3.3 (x64)
11 28.67 Copyright (c) Microsoft Corporation.  All rights reserved.
11 28.68
11 28.97 Starting test execution, please wait...
11 29.03 A total of 1 test files matched the specified pattern.
11 32.07
11 32.08 Passed!  - Failed:     0, Passed:     1, Skipped:     0, Total:     1, Duration: < 1 ms - /source/tests/bin/Debug/net6.0/tests.dll (net6.0)
11 DONE 32.2s

Configure CI/CD for your .NET application

Prerequisites

Complete all the previous sections of this guide, starting with Containerize a .NET application. You must have a GitHub account and a Docker account to complete this section.

Overview

In this section, you'll learn how to set up and use GitHub Actions to build and test your Docker image as well as push it to Docker Hub. You will complete the following steps:

  1. Create a new repository on GitHub.
  2. Define the GitHub Actions workflow.
  3. Run the workflow.

Step one: Create the repository

  1. Create a GitHub repository, configure the Docker Hub secrets, and push your source code.
  2. Create a new repository on GitHub.
  3. Open the repository Settings, and go to Secrets and variables > Actions.
  4. Create a new secret named DOCKER_USERNAME and your Docker ID as value.
  5. Create a new Personal Access Token (PAT) for Docker Hub. You can name this token tutorial-docker.
  6. Add the PAT as a second secret in your GitHub repository, with the name DOCKERHUB_TOKEN.
  7. In your local repository on your machine, run the following command to change the origin to the repository you just created. Make sure you change your-username to your GitHub username and your-repository to the name of the repository you created.
    git remote set-url origin https://github.com/your-username/your-repository.git
  8. In your local repository on your machine, run the following command to rename the branch to main.
    git branch -M main
  9. Run the following commands to stage, commit, and then push your local repository to GitHub.
    git add -A
    git commit -m "my first commit"
    git push -u origin main
    

Step two: Set up the workflow

Set up your GitHub Actions workflow for building, testing, and pushing the image to Docker Hub.

  1. Go to your repository on GitHub and then select the Actions tab.

  2. Select set up a workflow yourself.

    This takes you to a page for creating a new GitHub actions workflow file in your repository, under .github/workflows/main.yml by default.

  3. In the editor window, copy and paste the following YAML configuration.

name: ci

on:
  push:
    branches:
      - main

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      -
        name: Checkout
        uses: actions/checkout@v4
      -
        name: Login to Docker Hub
        uses: docker/login-action@v3
        with:
          username: ${{ secrets.DOCKER_USERNAME }}
          password: ${{ secrets.DOCKERHUB_TOKEN }}
      -
        name: Set up Docker Buildx
        uses: docker/setup-buildx-action@v3
      -
        name: Build and test
        uses: docker/build-push-action@v5
        with:
          context: .
          target: build
          load: true
      -
        name: Build and push
        uses: docker/build-push-action@v5
        with:
          context: .
          push: true
          target: final
          tags: ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }}:latest

Step three: Run the workflow

Save the workflow file and run the job.

  1. Select Commit changes... and push the changes to the main branch.

    After pushing the commit, the workflow starts automatically.

  2. Go to the Actions tab. It displays the workflow.

    Selecting the workflow shows you the breakdown of all the steps.

  3. When the workflow is complete, go to your repositories on Docker Hub.

    If you see the new repository in that list, it means the GitHub Actions successfully pushed the image to Docker Hub.

Test your .NET deployment

Prerequisites

  • Complete all the previous sections of this guide, starting with Containerize a .NET application.
  • Turn on Kubernetes in Docker Desktop.

Overview

In this section, you'll learn how to use Docker Desktop to deploy your application to a fully-featured Kubernetes environment on your development machine. This allows you to test and debug your workloads on Kubernetes locally before deploying.

Create a Kubernetes YAML file

In your docker-dotnet-sample directory, create a file named docker-dotnet-kubernetes.yaml. Open the file in an IDE or text editor and add the following contents. Replace DOCKER_USERNAME/REPO_NAME with your Docker username and the name of the repository that you created in Configure CI/CD for your .NET application.

apiVersion: apps/v1
kind: Deployment
metadata:
  labels:
    service: server
  name: server
  namespace: default
spec:
  replicas: 1
  selector:
    matchLabels:
      service: server
  strategy: {}
  template:
    metadata:
      labels:
        service: server
    spec:
      initContainers:
        - name: wait-for-db
          image: busybox:1.28
          command: ['sh', '-c', 'until nc -zv db 5432; do echo "waiting for db"; sleep 2; done;']
      containers:
        - image: DOCKER_USERNAME/REPO_NAME
          name: server
          imagePullPolicy: Always
          ports:
            - containerPort: 80
              hostPort: 8080
              protocol: TCP
          resources: {}
      restartPolicy: Always
status: {}
---
apiVersion: apps/v1
kind: Deployment
metadata:
  labels:
    service: db
  name: db
  namespace: default
spec:
  replicas: 1
  selector:
    matchLabels:
      service: db
  strategy:
    type: Recreate
  template:
    metadata:
      labels:
        service: db
    spec:
      containers:
        - env:
            - name: POSTGRES_DB
              value: example
            - name: POSTGRES_PASSWORD
              value: example
          image: postgres
          name: db
          ports:
            - containerPort: 5432
              protocol: TCP
          resources: {}
      restartPolicy: Always
status: {}
---
apiVersion: v1
kind: Service
metadata:
  labels:
    service: server
  name: server
  namespace: default
spec:
  type: NodePort
  ports:
    - name: "8080"
      port: 8080
      targetPort: 80
      nodePort: 30001
  selector:
    service: server
status:
  loadBalancer: {}
---
apiVersion: v1
kind: Service
metadata:
  labels:
    service: db
  name: db
  namespace: default
spec:
  ports:
    - name: "5432"
      port: 5432
      targetPort: 5432
  selector:
    service: db
status:
  loadBalancer: {}

In this Kubernetes YAML file, there are four objects, separated by the ---. In addition to a Service and Deployment for the database, the other two objects are:

  • A Deployment, describing a scalable group of identical pods. In this case, you'll get just one replica, or copy of your pod. That pod, which is described under template, has just one container in it. The container is created from the image built by GitHub Actions in Configure CI/CD for your .NET application.
  • A NodePort service, which will route traffic from port 30001 on your host to port 8080 inside the pods it routes to, allowing you to reach your app from the network.

Deploy and check your application

  1. In a terminal, navigate to the docker-dotnet-sample directory and deploy your application to Kubernetes.

    kubectl apply -f docker-dotnet-kubernetes.yaml

    You should see output that looks like the following, indicating your Kubernetes objects were created successfully.

    deployment.apps/db created
    service/db created
    deployment.apps/server created
    service/server created
    
  2. Make sure everything worked by listing your deployments.

    kubectl get deployments

    Your deployment should be listed as follows:

    NAME     READY   UP-TO-DATE   AVAILABLE   AGE
    db       1/1     1            1           76s
    server   1/1     1            1           76s
    

    This indicates all of the pods are up and running. Do the same check for your services.

    kubectl get services
    

    You should get output like the following.

    NAME         TYPE        CLUSTER-IP      EXTERNAL-IP   PORT(S)          AGE
    db           ClusterIP   10.96.156.90    <none>        5432/TCP         2m8s
    kubernetes   ClusterIP   10.96.0.1       <none>        443/TCP          164m
    server       NodePort    10.102.94.225   <none>        8080:30001/TCP   2m8s
    

    In addition to the default kubernetes service, you can see your server service and db service. The server service is accepting traffic on port 30001/TCP.

  3. Open a browser and visit your app at localhost:30001. You should see your application.

  4. Run the following command to tear down your application.

 kubectl delete -f docker-dotnet-kubernetes.yaml

docker-dotnet-checklist's People

Contributors

jonasreycian avatar craig-osterhout avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.