Skip to content

Commit

Permalink
fix(core): make value in yaml compatible with strict parser (#1037)
Browse files Browse the repository at this point in the history
Because

seems in image build environment using strict(or old) yaml parser for
docker compose.

This commit

use string instead of bool
  • Loading branch information
Yougigun committed Jul 12, 2024
1 parent 2c34259 commit ad6594a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ services:
image: ${MILVUS_IMAGE}:${MILVUS_VERSION}
restart: unless-stopped
environment:
ETCD_USE_EMBED: true
ETCD_USE_EMBED: "true"
COMMON_STORAGETYPE: local
command: milvus run standalone 1> /dev/null
healthcheck:
Expand Down

0 comments on commit ad6594a

Please sign in to comment.