Skip to content

Commit 4cf7a09

Browse files
committed
fix(docker): remove all remaining backslash-pipe YAML escape sequences
1 parent ed98e28 commit 4cf7a09

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
@@ -168,7 +168,7 @@ services:
168168
driver: json-file
169169
options: {max-size: "20m", max-file: "3"}
170170
healthcheck:
171-
test: ["CMD-SHELL", "curl -sf http://localhost/ | grep -qi 'taiga\|doctype\|html' || exit 1"]
171+
test: ["CMD-SHELL", "curl -sf http://localhost/ | grep -qi 'taiga|doctype|html' || exit 1"]
172172
interval: 30s
173173
timeout: 10s
174174
retries: 5

docker/docker-compose.lan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ services:
107107
ports:
108108
- "8410:80"
109109
healthcheck:
110-
test: ["CMD-SHELL", "curl -sf http://localhost/ | grep -qi 'taiga\|doctype' || exit 1"]
110+
test: ["CMD-SHELL", "curl -sf http://localhost/ | grep -qi 'taiga|doctype' || exit 1"]
111111
interval: 30s
112112
timeout: 10s
113113
retries: 5

0 commit comments

Comments
 (0)