Compare commits

...
2 Commits
Author SHA1 Message Date
p4u1 b29422d5a3 add compose.no-image-tag.yml 2026-02-13 11:15:31 +01:00
p4u1 030e8a1cb1 add udp and tcp on same port 2026-02-02 14:00:19 +01:00
3 changed files with 20 additions and 0 deletions
+2
View File
@@ -18,3 +18,5 @@ SECRET_TEST_PASS_TWO_VERSION=v1 # length=10
#SECRET_EXTRA_PASS_VERSION=v1
#SECRET_LONG_SECRET_VERSION=v1
#SECRET_TEST_SKIP_PASS_VERSION=v1 # generate=false
#COMPOSE_FILE="$COMPOSE_FILE:compose.udp-and-tcp.yml
+6
View File
@@ -0,0 +1,6 @@
---
version: "3.8"
services:
web:
image: nginx
+12
View File
@@ -0,0 +1,12 @@
version: "3.8"
services:
app:
ports:
- target: 1312
published: 1312
protocol: udp
mode: host
- target: 1312
published: 1312
protocol: tcp
mode: host