From 0492469ed6c33381b5cb856d87eea75eeb07c71c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikola=20Dere=C5=BEi=C4=87?= Date: Fri, 9 Jan 2026 19:17:01 +0100 Subject: [PATCH] (refactor) dockerfile: modified default port --- docker-stack/docker-compose-standalone.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-stack/docker-compose-standalone.yaml b/docker-stack/docker-compose-standalone.yaml index 92d6dbf..87ba7ab 100644 --- a/docker-stack/docker-compose-standalone.yaml +++ b/docker-stack/docker-compose-standalone.yaml @@ -26,7 +26,7 @@ services: LINKEDIN_SECRET: ugf61aJ2iyErLK40 HOSTNAME: rezije.app # IP address at which the server will be listening (0.0.0.0 = listen on all addresses) NEXTAUTH_URL: https://rezije.app # URL next-auth will use while redirecting user during authentication (if not set - will use HOSTNAME) - PORT: ${PORT:-80} + PORT: ${PORT:-3000} # Share link security SHARE_LINK_SECRET: ef68362357315d5decb27d24ff9abdb4a02a3351cd2899f79bf238dce0fe08c5 SHARE_TTL_INITIAL_DAYS: 10 @@ -41,7 +41,7 @@ services: labels: - traefik.enable=true - traefik.docker.network=traefik-network # mreže preko koje ide komunikacija sa Traefikom - - traefik.http.services.web-app.loadbalancer.server.port=80 + - traefik.http.services.web-app.loadbalancer.server.port=3000 - traefik.http.routers.web-app.entrypoints=http - traefik.http.routers.web-app.rule=Host(`${FQDN:-rezije.app}`)