From 355cc1416808cfbca2e7e25af090eb67f38c9506 Mon Sep 17 00:00:00 2001 From: harkon Date: Tue, 2 Dec 2025 13:12:30 +0200 Subject: [PATCH] fix: set docker network mtu to 1400 to resolve connectivity issues --- infra/scripts/deploy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infra/scripts/deploy.sh b/infra/scripts/deploy.sh index e93c555..6787662 100755 --- a/infra/scripts/deploy.sh +++ b/infra/scripts/deploy.sh @@ -196,12 +196,12 @@ deploy_all() { # Check if networks exist if ! docker network inspect apa-frontend >/dev/null 2>&1; then log_warning "Network 'apa-frontend' does not exist. Creating..." - docker network create apa-frontend + docker network create --opt com.docker.network.driver.mtu=1400 apa-frontend fi if ! docker network inspect apa-backend >/dev/null 2>&1; then log_warning "Network 'apa-backend' does not exist. Creating..." - docker network create apa-backend + docker network create --opt com.docker.network.driver.mtu=1400 apa-backend fi # Deploy in order