Skip to content

Commit c76671b

Browse files
committed
feature: api-148 set default port to 4550 to see if fixes aks deployment
( it should be overridden in the helm chart of course by setting SERVER_PORT but lets try this for the moment )
1 parent 253e234 commit c76671b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docker-compose.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ services:
1212
build:
1313
dockerfile: Dockerfile
1414
environment:
15+
SERVER_PORT: 4500
1516
DATASOURCE_URL: jdbc:postgresql://db:5432/appdb
1617
DATASOURCE_USERNAME: postgres
1718
DATASOURCE_PASSWORD: postgres

src/main/resources/application.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
server:
2-
port: ${SERVER_PORT:8082}
2+
port: ${SERVER_PORT:4550}
33

44
spring:
55
application:

0 commit comments

Comments
 (0)