You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(compose): add trailing newline to migration and MTU mismatch check
Add missing trailing newline to migration SQL file. Log an info message
during deployment when the isolated network's current MTU differs from
the configured value, indicating the network must be recreated.
if docker network inspect ${compose.appName} >/dev/null 2>&1; then
58
+
${compose.composeType!=="stack"&&compose.isolatedNetworkMtu ? `CURRENT_MTU=$(docker network inspect ${compose.appName} --format '{{index .Options "com.docker.network.driver.mtu"}}'); if [ "$CURRENT_MTU" != "${compose.isolatedNetworkMtu}" ]; then echo "Info: Network ${compose.appName} has MTU $CURRENT_MTU but configured MTU is ${compose.isolatedNetworkMtu}. The network must be recreated for the new MTU to take effect."; fi` : "true"}
0 commit comments