-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated everything to the latest, dropped .NET Framework with Topshelf
- Loading branch information
Showing
23 changed files
with
444 additions
and
467 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
version: "3.6" | ||
|
||
services: | ||
rabbitmq: | ||
image: masstransit/rabbitmq:latest | ||
ports: | ||
- "5672:5672" | ||
- "15672:15672" | ||
mssql: | ||
image: masstransit/sqlserver-quartz:latest | ||
ports: | ||
- 1433:1433 | ||
quartz: | ||
build: | ||
context: ./src | ||
dockerfile: Dockerfile.quartz | ||
ports: | ||
- "5009:80" | ||
environment: | ||
- ASPNETCORE_URLS=http://+:80 | ||
- ConnectionStrings__quartz=Server=tcp:mssql;Database=quartznet;Persist Security Info=False;User ID=sa;Password=Quartz!DockerP4ss;Encrypt=False;TrustServerCertificate=True; | ||
|
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
**/bin/ | ||
**/.idea/ | ||
**/node_modules | ||
**/obj/ | ||
**/out/ | ||
|
||
obj/ | ||
bin/ | ||
|
||
**/docker-compose* | ||
**/Dockerfile* | ||
**/.dockerignore | ||
**/.DS_Store | ||
**/.git | ||
**/.gitignore | ||
**/npm-debug.log | ||
**/secrets.dev.yaml | ||
**/values.dev.yaml | ||
**/*.cmd | ||
**/*.dbmdl | ||
**/*.DotSettings | ||
**/*.ps1 | ||
**/*.trx | ||
**/.settings | ||
**/*.sh | ||
**/*.*proj.user | ||
**/.vs | ||
**/.vscode | ||
NOTICE | ||
COPYRIGHT | ||
LICENSE | ||
README.md | ||
build.sh |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build | ||
|
||
WORKDIR /src | ||
COPY ["QuartzService/QuartzService.csproj", "QuartzService/"] | ||
RUN dotnet restore "QuartzService/QuartzService.csproj" | ||
|
||
COPY . . | ||
RUN dotnet publish -c Release --no-restore -o /app QuartzService/QuartzService.csproj | ||
|
||
FROM mcr.microsoft.com/dotnet/aspnet:6.0-alpine AS publish | ||
|
||
RUN apk add --no-cache icu-libs tzdata | ||
|
||
WORKDIR /app | ||
COPY --from=build /app ./ | ||
ENTRYPOINT ["dotnet", "QuartzService.dll"] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.