File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -230,7 +230,7 @@ services:
230
230
context : ./images/taginfo
231
231
dockerfile : Dockerfile
232
232
ports :
233
- - ' 4567:4567 '
233
+ - ' 4567:80 '
234
234
volumes :
235
235
- ./taginfo-data:/apps/data/
236
236
env_file :
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ update() {
88
88
89
89
start_web () {
90
90
echo " Start...Taginfo web service"
91
- cd $WORKDIR /taginfo/web && bundle exec rackup --host 0.0.0.0 -p 4567
91
+ cd $WORKDIR /taginfo/web && bundle exec rackup --host 0.0.0.0 -p 80
92
92
}
93
93
94
94
continuous_update () {
Original file line number Diff line number Diff line change @@ -27,12 +27,12 @@ spec:
27
27
image : " {{ .Values.taginfo.image.name }}:{{ .Values.taginfo.image.tag }}"
28
28
ports :
29
29
- name : http
30
- containerPort : 4567
30
+ containerPort : 80
31
31
protocol : TCP
32
32
livenessProbe :
33
33
httpGet :
34
34
path : /
35
- port : 4567
35
+ port : 80
36
36
initialDelaySeconds : 600 # 10 min, because the compile process takes time.
37
37
timeoutSeconds : 30
38
38
{{- if .Values.taginfo.resources.enabled }}
You can’t perform that action at this time.
0 commit comments