Skip to content

Commit

Permalink
fix(docker): HTTP port has incorrectly changed from 80 to 8080 since …
Browse files Browse the repository at this point in the history
….NET 8 upgrade. (#1417)
  • Loading branch information
rnwood authored Apr 20, 2024
1 parent 6744175 commit 597e1fd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions Dockerfile.linux
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ COPY out /app
VOLUME ["/smtp4dev"]
WORKDIR /
ENV XDG_CONFIG_HOME /
ENV ASPNETCORE_HTTP_PORTS 80
EXPOSE 80
EXPOSE 25
EXPOSE 143
Expand Down
1 change: 1 addition & 0 deletions Dockerfile.linux.arm64
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ COPY out /app
VOLUME ["/smtp4dev"]
WORKDIR /
ENV XDG_CONFIG_HOME /
ENV ASPNETCORE_HTTP_PORTS 80
EXPOSE 80
EXPOSE 25
EXPOSE 143
Expand Down
1 change: 1 addition & 0 deletions Dockerfile.windows
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ COPY out /app
EXPOSE 80
EXPOSE 25
EXPOSE 143
ENV ASPNETCORE_HTTP_PORTS 80
VOLUME c:\smtp4dev
WORKDIR c:\
ENTRYPOINT ["dotnet", "/app/Rnwood.Smtp4dev.dll"]

0 comments on commit 597e1fd

Please sign in to comment.