forked from GitTools/GitVersion
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GitToolsGH-1572 - Docker naming scheme
- Loading branch information
Showing
7 changed files
with
48 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
# There are 4 variants of docker image : | ||
# There are 4 variants of docker image | ||
|
||
- based on **microsoft/dotnet-framework:4.7.2-runtime** - Windows Full FX | ||
- based on **microsoft/dotnet:2.1-runtime** - Windows dotnet core | ||
- based on **microsoft/dotnet-framework:4.7.2-runtime** - linux Full FX - on mono | ||
- based on **microsoft/dotnet:2.1-runtime** - linux dotnet core | ||
- based on **mono:5.18** - Linux Full FX - on mono | ||
- based on **microsoft/dotnet:2.1-runtime** - Linux dotnet core | ||
|
||
To run on windows container run this | ||
`docker run --rm -v "$(pwd):c:/repo" gittools/gitversion-fullfx:windows-4.0.0 c:/repo` | ||
`docker run --rm -v "$(pwd):c:/repo" gittools/gitversion:latest-windows-net472 c:/repo` | ||
|
||
`docker run --rm -v "$(pwd):c:/repo" gittools/gitversion-dotnetcore:windows-4.0.0 c:/repo` | ||
`docker run --rm -v "$(pwd):c:/repo" gittools/gitversion:latest-windows-netcoreapp2.1 c:/repo` | ||
|
||
To run on linux container run this | ||
`docker run --rm -v "$(pwd):/repo" gittools/gitversion-fullfx:linux-4.0.0 /repo` | ||
`docker run --rm -v "$(pwd):/repo" gittools/gitversion:latest-linux-net472 /repo` | ||
|
||
`docker run --rm -v "$(pwd):/repo" gittools/gitversion-dotnetcore:linux-4.0.0 /repo` | ||
`docker run --rm -v "$(pwd):/repo" gittools/gitversion:latest-linux-netcoreapp2.1 /repo` |
2 changes: 1 addition & 1 deletion
2
src/Docker/linux/fullfx/Dockerfile → src/Docker/linux/debian/net472/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM mono:5.14 | ||
FROM mono:5.18 | ||
LABEL maintainers="GitTools Maintainers" | ||
ARG contentFolder | ||
|
||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.