dotnet-docker VS dotnet-framework-docker

Compare dotnet-docker vs dotnet-framework-docker and see what are their differences.

dotnet-docker

Docker images for .NET and the .NET Tools. (by dotnet)

dotnet-framework-docker

The repo for the official docker images for .NET Framework on Windows Server Core. (by microsoft)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
dotnet-docker dotnet-framework-docker
24 7
4,228 680
0.9% 0.3%
9.4 7.4
3 days ago 8 days ago
Dockerfile Dockerfile
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

dotnet-docker

Posts with mentions or reviews of dotnet-docker. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-19.
  • Exploring .NET 8 Preview 3: The 7 Features You Need to Know
    2 projects | dev.to | 19 Apr 2023
    This cool method lets you whip up optimized apps that get along swimmingly with Docker. Neat, huh? --platform values. Take a peek at this sample to see the pattern in action!
  • Need Help with C# on raspberry
    2 projects | /r/csharp | 31 Mar 2023
    You can also use the .NET Docker images to run (or build from source and then run) .NET applications.
  • Portability is a nightmare
    1 project | /r/ProgrammerHumor | 16 Mar 2023
    Sadly, lots of dotnet apps still out there. Luckily, there's a container for that too!
  • SSL Connection Issue on Lidarr startup (Raspberry Pi 4)
    2 projects | /r/Lidarr | 1 Feb 2023
    A search of "alpine 3.17 ssl" brings up this link that shows the same error.
  • (.NET/Azure) Docker mentor
    1 project | /r/docker | 29 Nov 2022
    Actually, it looks like I am a bit out of the loop, and there is an official .NET runtime for Linux, so you can use it like any other Linux docker images. Looks like there are examples here: https://github.com/dotnet/dotnet-docker
  • Is this Dockerfile ready for production? Is the container automatically secure?
    3 projects | /r/dotnet | 22 Oct 2022
    It is good that you are thinking about security 😊. there is an issue in dotnet repo here https://github.com/dotnet/dotnet-docker/issues/1772 that have hardened examples.
  • Why the fuck did Microsoft name everything .NET?
    1 project | /r/csharp | 26 Aug 2022
    You can use .NET without using ASP.NET Core (yes, the names are confusing right now, they dropped the "Core" suffix for the platform but did not drop the suffix for the web framework). Microsoft publishes a Docker image for .NET for when you just want to run some compiled CIL, but they also provide a Docker image where it includes .NET and ASP.NET Core for when you run a compiled ASP.NET Core web app. (https://hub.docker.com/_/microsoft-dotnet/)
  • Multi-Image Docker Images: Using COPY with Images directly from registries
    1 project | dev.to | 24 Jun 2022
    Keeping the whole Maritime theme alive with Docker (and Kubernetes), I jumped into the sea of Docker Hub with millions of containers and found out that Microsoft hosts all the .NET related container images as .NET by Microsoft registry.
  • Docker multi-architecture, .NET 6.0 and OpenCVSharp
    6 projects | dev.to | 17 May 2022
    ARG OPENCV_SHARP_BUILD_TAG=2 ARG SDK_VERSION=6.0.202-bullseye-slim-amd64 ARG RUNTIME_VERSION=6.0.4-bullseye-slim FROM syamaner/opencvsharp-build:$OPENCV_SHARP_BUILD_TAG AS opencv # Given we are building a .Net application, the build does not have to be in the target architecture. # Reference: https://github.com/dotnet/dotnet-docker/issues/1537#issuecomment-755351628 FROM mcr.microsoft.com/dotnet/sdk:$SDK_VERSION as build ARG TARGETPLATFORM WORKDIR /src COPY . . # Select the correct RID for the target architecture. # run dotnet publish as usual and pass the RID. RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \ RID=linux-x64 ; \ elif [ "$TARGETPLATFORM" = "linux/arm64" ]; then \ RID=linux-arm64 ; \ elif [ "$TARGETPLATFORM" = "linux/arm/v7" ]; then \ RID=linux-arm ; \ fi && \ dotnet publish -c release -o /app -r $RID --self-contained false # Copy the application as well as native dependencies to the final stage and build the final image without any unnecessary files. FROM mcr.microsoft.com/dotnet/runtime:$RUNTIME_VERSION as final WORKDIR /app # Copy opencv sharp native binding and runtime dependencies. COPY --from=opencv /artifacts/ /usr/lib/ RUN ldconfig COPY --from=build /app/ /app/ ENTRYPOINT [ "dotnet", "/app/OpenCVSharpBenchmarkApp.dll" ]
  • Dockerizing ASP.NET hello world - few questions from .NET newbie
    2 projects | /r/docker | 7 May 2022

dotnet-framework-docker

Posts with mentions or reviews of dotnet-framework-docker. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-10-29.
  • Dockerizing .Net 4.6.1 webapi
    1 project | /r/docker | 16 Jun 2022
    The official Microsoft .Net Framework images are here.
    1 project | /r/dotnet | 16 Jun 2022
  • Add 10 GbE to your system with an M.2 2280 module
    1 project | news.ycombinator.com | 20 Jan 2022
    https://hub.docker.com/_/microsoft-dotnet-framework

    It was about 2.7 / 2.8 GB in size.

    I would say you should be moving to .Net 6 it's been several years now that .Net Core has been out so there is no excuse.

    None of this is an excuse to get a 10Gbps internet connection to your house. I have a 500Mbps connection and with the corporate firewall my laptop gets 100-200Mbps connection and pulling those containers was like 10 minutes.

  • How committed is Microsoft to Docker?
    2 projects | /r/docker | 29 Oct 2021
  • Does the Docker image for aspnet:4.8 install IIS automatically?
    4 projects | /r/docker | 24 Sep 2021
    servercore:ltsc2019 is not required, because Windows images are already based on an OS image. So downloading mcr.microsoft.com/dotnet/framework/aspnet:4.8-windowsservercore-ltsc2019 would already pull ltsc2019. I think I also see the issue you might be having. I think runtime4.8 does not enable the WebServer component, which makes sense, because it'd be a security risk to open useless, unconfigured IIS ports if you're not running an actual web app in there.

What are some alternatives?

When comparing dotnet-docker and dotnet-framework-docker you can also consider the following projects:

OpenCvSharp - OpenCV wrapper for .NET

win-aspnet-docker-demo

docker-multi-arch-opencvsharp - A demonstration of Docker multi architecture build for native dependencies for amd64, amrm64 and arm32 architecture

opencv_contrib - Repository for OpenCV's extra modules

sdk - Core functionality needed to create .NET Core projects, that is shared between Visual Studio and CLI

OpenCV - Open Source Computer Vision Library

BenchmarkDotNet - Powerful .NET library for benchmarking

hub-feedback - Feedback and bug reports for the Docker Hub

grype - A vulnerability scanner for container images and filesystems

Docker Swarm - Source repo for Docker's Documentation

Arduino_Library_ADS7830_8Channel_8Bit_ADC - ADS7830 8Channel 8Bit Analog To Digital Converter Interfacing With Arduino

trivy - Find vulnerabilities, misconfigurations, secrets, SBOM in containers, Kubernetes, code repositories, clouds and more