File tree Expand file tree Collapse file tree 5 files changed +16
-1
lines changed Expand file tree Collapse file tree 5 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ COPY entrypoint.sh /sbin/entrypoint.sh
76
76
COPY certbot-deploy-hook /sbin/certbot-deploy-hook
77
77
78
78
VOLUME ["$DATA_DIR" ]
79
- EXPOSE 80 443
79
+ EXPOSE 25 80 443
80
80
81
81
ENTRYPOINT ["/sbin/entrypoint.sh" ]
82
82
CMD ["app:run" ]
Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ services:
59
59
# # Set this up if you plan to use your own CA certificate bundle for building
60
60
# CUSTOM_CA_CERTIFICATES:
61
61
ports :
62
+ - " 25:25"
62
63
- " 80:80"
63
64
- " 443:443"
64
65
environment :
@@ -88,6 +89,10 @@ services:
88
89
# # It seems that the email server needs to use ssl or tls and can't be used without it
89
90
SETTING_EMAIL_USE_SSL : " False"
90
91
SETTING_EMAIL_USE_TLS : " True"
92
+ # # Uncomment to enable the incoming email gateway. You will need to
93
+ # # ensure that email to emaildomain.example.com is routed to this host
94
+ # # (e.g. via MX record)
95
+ # SETTING_EMAIL_GATEWAY_PATTERN: "%[email protected] "
91
96
ZULIP_AUTH_BACKENDS : " EmailAuthBackend"
92
97
# # Uncomment this when configuring the mobile push notifications service
93
98
# SETTING_ZULIP_SERVICE_PUSH_NOTIFICATIONS: "True"
Original file line number Diff line number Diff line change 47
47
image : " {{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
48
48
imagePullPolicy : {{ .Values.image.pullPolicy }}
49
49
ports :
50
+ - name : smtp
51
+ containerPort : 25
52
+ protocol : TCP
50
53
- name : http
51
54
containerPort : 80
52
55
protocol : TCP
Original file line number Diff line number Diff line change @@ -137,6 +137,9 @@ spec:
137
137
# - name: SETTING_PUSH_NOTIFICATION_BOUNCER_URL
138
138
# value: 'https://push.zulipchat.com'
139
139
ports :
140
+ - containerPort : 25
141
+ name : smtp
142
+ protocol : TCP
140
143
- containerPort : 80
141
144
name : http
142
145
protocol : TCP
Original file line number Diff line number Diff line change 8
8
selector :
9
9
app : zulip
10
10
ports :
11
+ - name : smtp
12
+ port : 25
13
+ targetPort : 25
14
+ protocol : TCP
11
15
- name : http
12
16
port : 80
13
17
targetPort : 80
You can’t perform that action at this time.
0 commit comments