From cc5b3e8c9dd2f69081b81313ab0c66cefb7799b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Al=C5=BEbeta=20Hajn=C3=A1?= <xhajna@fi.muni.cz> Date: Thu, 4 May 2023 15:19:32 +0200 Subject: [PATCH] fix: port 8090 updated in docker compose and openapi --- core/openapi.yaml | 2 +- docker-compose.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/openapi.yaml b/core/openapi.yaml index 0d2b278..326121a 100644 --- a/core/openapi.yaml +++ b/core/openapi.yaml @@ -5,7 +5,7 @@ info: Hand-made OpenAPI document. version: 1.0.0 servers: - - url: "http://localhost:8080" + - url: "http://localhost:8090" tags: - name: CarComponentService - name: CarService diff --git a/docker-compose.yaml b/docker-compose.yaml index 18d8f40..71b0cb7 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -4,7 +4,7 @@ services: core: build: "./core" ports: - - "8080:8080" + - "8090:8090" application: build: "./application" ports: -- GitLab