Skip to content

Commit 95f9b6f

Browse files
committed
Replace unnecessary double quotes with single quotes.
1 parent 4a205bf commit 95f9b6f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

docker-compose.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,10 @@ services:
8282
command: ${LOCAL_DB_AUTH_OPTION-}
8383

8484
healthcheck:
85-
test: [ "CMD-SHELL", "if [ \"$LOCAL_DB_TYPE\" = \"mariadb\" ]; then case \"$LOCAL_DB_VERSION\" in 5.5|10.0|10.1|10.2|10.3) mysqladmin ping -h localhost || exit $$?;; *) mariadb-admin ping -h localhost || exit $$?;; esac; else mysqladmin ping -h localhost || exit $$?; fi" ]
85+
test: [
86+
'CMD-SHELL',
87+
'if [ "$LOCAL_DB_TYPE" = "mariadb" ]; then case "$LOCAL_DB_VERSION" in 5.5|10.0|10.1|10.2|10.3) mysqladmin ping -h localhost || exit $$?;; *) mariadb-admin ping -h localhost || exit $$?;; esac; else mysqladmin ping -h localhost || exit $$?; fi'
88+
]
8689
timeout: 5s
8790
interval: 5s
8891
retries: 10

0 commit comments

Comments
 (0)