fix: double quotes on python exec

This commit is contained in:
Christos Alexiou
2026-08-11 16:24:24 +03:00
parent 93503c55d9
commit 179890922d
3 changed files with 3 additions and 9 deletions
+1 -3
View File
@@ -104,9 +104,7 @@ services:
test:
[
"CMD-SHELL",
"python",
"-c",
"import urllib.request; urllib.request.urlopen('http://localhost:4000/health/liveliness')",
"python -c \"import urllib.request; urllib.request.urlopen('http://localhost:4000/health/liveliness')\"",
]
interval: 30s
timeout: 10s
+1 -3
View File
@@ -81,9 +81,7 @@ services:
test:
[
"CMD-SHELL",
"python",
"-c",
"import urllib.request; urllib.request.urlopen('http://localhost:4000/health/liveliness')",
"python -c \"import urllib.request; urllib.request.urlopen('http://localhost:4000/health/liveliness')\"",
]
interval: 30s
timeout: 10s
+1 -3
View File
@@ -138,9 +138,7 @@ services:
test:
[
"CMD-SHELL",
"python",
"-c",
"import urllib.request; urllib.request.urlopen('http://localhost:4000/health/liveliness')",
"python -c \"import urllib.request; urllib.request.urlopen('http://localhost:4000/health/liveliness')\"",
]
interval: 30s
timeout: 10s