Skip to content

Commit 3aadda2

Browse files
committed
fix(docker): remove all remaining backslash-pipe YAML escape sequences
1 parent 3084083 commit 3aadda2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docker/docker-compose.advanced.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ services:
117117
driver: json-file
118118
options: {max-size: "50m", max-file: "3"}
119119
healthcheck:
120-
test: ["CMD-SHELL", "curl -sf http://localhost:8080/ | grep -qi 'zabbix\|login' || exit 1"]
120+
test: ["CMD-SHELL", "curl -sf http://localhost:8080/ | grep -qi 'zabbix|login' || exit 1"]
121121
interval: 30s
122122
timeout: 15s
123123
retries: 8

docker/docker-compose.lan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ services:
9292
ports:
9393
- "8413:8080"
9494
healthcheck:
95-
test: ["CMD-SHELL", "curl -sf http://localhost:8080/ | grep -qi 'zabbix\|login' || exit 1"]
95+
test: ["CMD-SHELL", "curl -sf http://localhost:8080/ | grep -qi 'zabbix|login' || exit 1"]
9696
interval: 30s
9797
timeout: 15s
9898
retries: 8

0 commit comments

Comments
 (0)