From 5f66e5ba2d51cff6f555067df680cd6738d87632 Mon Sep 17 00:00:00 2001 From: notplants Date: Tue, 28 Apr 2026 15:47:12 +0000 Subject: [PATCH] add compose.host-ports.yml for optional direct host port publishing --- compose.host-ports.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 compose.host-ports.yml diff --git a/compose.host-ports.yml b/compose.host-ports.yml new file mode 100644 index 0000000..2f6bd89 --- /dev/null +++ b/compose.host-ports.yml @@ -0,0 +1,14 @@ +--- +version: "3.8" + +services: + app: + ports: + - target: 64738 + published: 64738 + protocol: tcp + mode: host + - target: 64738 + published: 64738 + protocol: udp + mode: host