-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Entirely docker fix. and add Docker Compose File. and SOGo.
- Loading branch information
1 parent
9b0f40d
commit 58ca910
Showing
19 changed files
with
800 additions
and
127 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,12 @@ | |
# Run all applications in one container. | ||
FROM ubuntu:jammy | ||
MAINTAINER Zhang Huangbin <[email protected]> | ||
EXPOSE 80 443 25 465 587 143 993 110 995 4190 | ||
EXPOSE 389 636 #ldap/ldaps | ||
EXPOSE 25 465 587 #smtp/smtps | ||
EXPOSE 143 993 #imap/imaps | ||
EXPOSE 7791 #iredadmin | ||
EXPOSE 20000 #SOGo | ||
EXPOSE 19999 #Netdata Monitor | ||
|
||
ARG ENTRYPOINTS_DIR=/docker/entrypoints | ||
ARG SCRIPTS_DIR=/docker/scripts | ||
|
@@ -41,7 +46,9 @@ COPY ./config/. / | |
# entrypoint scripts | ||
# | ||
COPY ./entrypoints/. ${ENTRYPOINTS_DIR}/ | ||
COPY ./settings.conf ${ENTRYPOINTS_DIR}/ | ||
#####################SETTING UNIFICATION###################### | ||
COPY ./iredmail-docker.conf ${ENTRYPOINTS_DIR}/ | ||
############################################################## | ||
|
||
# Main entrypoint script. | ||
COPY ./entrypoints/all_in_one.sh /entrypoint.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 @@ | ||
-l 127.0.0.1 |
Oops, something went wrong.