-
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.
Merge pull request #11 from ONLYOFFICE/develop
Release/2.1.0
- Loading branch information
Showing
8 changed files
with
24 additions
and
32 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
Submodule DocStore
updated
85 files
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 |
---|---|---|
|
@@ -2,7 +2,9 @@ ARG REPO_BUID="mcr.microsoft.com/dotnet/sdk:8.0" | |
ARG REPO_RUNTIME="mcr.microsoft.com/dotnet/aspnet:8.0" | ||
ARG REPO_ROUTER="nginx:latest" | ||
ARG COUNT_WORKER_CONNECTIONS=1024 | ||
|
||
FROM $REPO_BUID AS build | ||
|
||
WORKDIR /app | ||
|
||
COPY . . | ||
|
@@ -13,14 +15,15 @@ WORKDIR /app/server/ASC.ZoomService | |
RUN dotnet publish --self-contained true -c Release -o out | ||
|
||
FROM $REPO_RUNTIME AS api | ||
|
||
LABEL vendor = "ONLYOFFICE" \ | ||
maintainer = scensio System SIA <[email protected]> | ||
WORKDIR /app/ASC.ZoomService | ||
COPY --from=build /app/server/ASC.ZoomService/out/. ./ | ||
COPY --from=build /app/server/ASC.ZoomService/out/config/. /app/onlyoffice/config/ | ||
|
||
ENTRYPOINT ["dotnet", "ASC.ZoomService.dll" ] | ||
CMD ["--pathToConf", "/app/onlyoffice/config/", "--Urls", "http://0.0.0.0:80"] | ||
CMD ["--pathToConf", "/app/onlyoffice/config/", "--Urls", "http://0.0.0.0:80", "--log:dir", "/app/onlyoffice/log", "--log:name", "ASC.ZoomService"] | ||
|
||
FROM $REPO_ROUTER AS router | ||
LABEL vendor = "ONLYOFFICE" \ | ||
|
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
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