3.10.0
,3.10
(3.10.0/Dockerfile)3.10.0-onbuild
,3.10-onbuild
(3.10.0/onbuild/Dockerfile)3.12.1
,3.12.0
,3.12
,3
(3.12.0/Dockerfile)3.12.0-onbuild
,3.12-onbuild
,3-onbuild
(3.12.0/onbuild/Dockerfile)3.8.0
,3.8
(3.8.0/Dockerfile)3.8.0-onbuild
,3.8-onbuild
(3.8.0/onbuild/Dockerfile)4.0.1
,4.0.0
,4.0
,4
,latest
(4.0.0/Dockerfile)4.0.0-onbuild
,4.0-onbuild
,4-onbuild
,onbuild
(4.0.0/onbuild/Dockerfile)
For more information about this image and its history, please see the relevant manifest file (library/mono
) in the docker-library/official-images
GitHub repo.
Sponsored by Xamarin, Mono is an open source implementation of Microsoft's .NET Framework based on the ECMA standards for C# and the Common Language Runtime. A growing family of solutions and an active and enthusiastic contributing community is helping position Mono to become the leading choice for development of cross platform applications.
This image will run stand-alone Mono console apps.
This example Dockerfile will run an executable called TestingConsoleApp.exe
.
FROM mono:3.10-onbuild
CMD [ "mono", "./TestingConsoleApp.exe" ]
Place this file in the root of your app, next to the .sln
solution file. Modify the exectuable name to match what you want to run.
This image includes ONBUILD
triggers that adds your app source code to /usr/src/app/source
, restores NuGet packages and compiles the app, placing the output in /usr/src/app/build
.
With the Dockerfile in place, you can build and run a Docker image with your app:
docker build -t my-app .
docker run my-app
You should see any output from your app now.
This Docker image is provided by Xamarin, for users of the Mono Project.
Thanks to Michael Friis for his preliminary work.
The mono
images come in many flavors, each designed for a specific use case.
This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of.
This image makes building derivative images easier. For most use cases, creating a Dockerfile
in the base of your project directory with the line FROM mono:onbuild
will be enough to create a stand-alone image for your project.
This Docker Image is licensed with the Expat License. See the Mono Project licensing FAQ for details on how Mono and associated libraries are licensed.
This image is officially supported on Docker version 1.6.2.
Support for older versions (down to 1.0) is provided on a best-effort basis.
Please report issues on the GitHub project.