Skip to content

Commit 8e14120

Browse files
committed
fix(docker): remove all remaining backslash-pipe YAML escape sequences
1 parent be0eeba commit 8e14120

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
@@ -102,7 +102,7 @@ services:
102102
driver: json-file
103103
options: {max-size: "100m", max-file: "5"}
104104
healthcheck:
105-
test: ["CMD-SHELL", "curl -sf http://localhost:9000/api/ | grep -qi 'cluster_id\|version' || exit 1"]
105+
test: ["CMD-SHELL", "curl -sf http://localhost:9000/api/ | grep -qi 'cluster_id|version' || exit 1"]
106106
interval: 30s
107107
timeout: 15s
108108
retries: 10

docker/docker-compose.lan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ services:
7373
volumes:
7474
- graylog-l02-data:/usr/share/graylog/data
7575
healthcheck:
76-
test: ["CMD-SHELL", "curl -sf http://localhost:9000/api/ | grep -qi 'cluster_id\|version' || exit 1"]
76+
test: ["CMD-SHELL", "curl -sf http://localhost:9000/api/ | grep -qi 'cluster_id|version' || exit 1"]
7777
interval: 30s
7878
timeout: 15s
7979
retries: 10

0 commit comments

Comments
 (0)