Skip to content

Commit fa60141

Browse files
author
Rub21
committed
Set port 80 for taginfo
1 parent b82220c commit fa60141

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ services:
230230
context: ./images/taginfo
231231
dockerfile: Dockerfile
232232
ports:
233-
- '4567:4567'
233+
- '4567:80'
234234
volumes:
235235
- ./taginfo-data:/apps/data/
236236
env_file:

images/taginfo/start.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ update() {
8888

8989
start_web() {
9090
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
9292
}
9393

9494
continuous_update() {

osm-seed/templates/taginfo-deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ spec:
2727
image: "{{ .Values.taginfo.image.name }}:{{ .Values.taginfo.image.tag }}"
2828
ports:
2929
- name: http
30-
containerPort: 4567
30+
containerPort: 80
3131
protocol: TCP
3232
livenessProbe:
3333
httpGet:
3434
path: /
35-
port: 4567
35+
port: 80
3636
initialDelaySeconds: 600 # 10 min, because the compile process takes time.
3737
timeoutSeconds: 30
3838
{{- if .Values.taginfo.resources.enabled }}

0 commit comments

Comments
 (0)