Skip to content

Commit 5c2c139

Browse files
committed
bug #374 [Examples] Fix environment variables (OskarStark)
This PR was merged into the main branch. Discussion ---------- [Examples] Fix environment variables | Q | A | ------------- | --- | Bug fix? | yes | New feature? | no | Docs? | no | Issues | -- | License | MIT Commits ------- 831decc [Examples] Fix environment variables
2 parents 959b46f + 831decc commit 5c2c139

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/compose.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ services:
6161
container_name: milvus-etcd
6262
image: quay.io/coreos/etcd:v3.5.18
6363
environment:
64-
- ETCD_AUTO_COMPACTION_MODE=revision
65-
- ETCD_AUTO_COMPACTION_RETENTION=1000
66-
- ETCD_QUOTA_BACKEND_BYTES=4294967296
67-
- ETCD_SNAPSHOT_COUNT=50000
64+
ETCD_AUTO_COMPACTION_MODE: revision
65+
ETCD_AUTO_COMPACTION_RETENTION: 1000
66+
ETCD_QUOTA_BACKEND_BYTES: 4294967296
67+
ETCD_SNAPSHOT_COUNT: 50000
6868
volumes:
6969
- etcd_vlm:/etcd
7070
command: etcd -advertise-client-urls=http://etcd:2379 -listen-client-urls http://0.0.0.0:2379 --data-dir /etcd

0 commit comments

Comments
 (0)