Skip to content

Commit

Permalink
chore: 배포 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
shdhkim committed Dec 22, 2024
1 parent bd023fe commit 462a07f
Showing 1 changed file with 3 additions and 15 deletions.
18 changes: 3 additions & 15 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,30 +1,18 @@
version: '3.8'

services:
etcd:
image: quay.io/coreos/etcd:v3.5.4
container_name: etcd
environment:
- ALLOW_NONE_AUTHENTICATION=yes
- ETCD_ENABLE_V2=true
ports:
- "2379:2379"
command: etcd -advertise-client-urls http://0.0.0.0:2379 -listen-client-urls http://0.0.0.0:2379
restart: always

milvus:
image: milvusdb/milvus:latest
container_name: milvus
depends_on:
- etcd
ports:
- "19530:19530"
volumes:
- milvus_data:/var/lib/milvus
environment:
- MILVUS_LOG_LEVEL=info
- MILVUS_DB_PATH=/var/lib/milvus/db
- ETCD_ENDPOINTS=http://etcd:2379
- LD_PRELOAD=
- STANDALONE=true # Standalone 모드 활성화
- LD_PRELOAD= # LD_PRELOAD 오류 방지
restart: always

flask-app:
Expand Down

0 comments on commit 462a07f

Please sign in to comment.