From b6bbe5a13b61b59a1212ec2d8dff76341e6ccabb Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Mon, 26 Jan 2026 05:48:37 -0700 Subject: [PATCH] Implemented 1500 MTU Networking Fix --- Servers/Containerization/Docker/Compose/Traefik.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Servers/Containerization/Docker/Compose/Traefik.md b/Servers/Containerization/Docker/Compose/Traefik.md index b9bcc23..8de1afc 100644 --- a/Servers/Containerization/Docker/Compose/Traefik.md +++ b/Servers/Containerization/Docker/Compose/Traefik.md @@ -36,6 +36,14 @@ services: image: "traefik:latest" restart: always container_name: "traefik-bunny-lab-io" + cap_add: + - NET_ADMIN + entrypoint: + - /bin/sh + - -lc + - | + ip link set dev eth0 mtu 1500 + exec traefik "$@" ulimits: nofile: soft: 65536