first commit
This commit is contained in:
10
logging/mongodb/Dockerfile
Normal file
10
logging/mongodb/Dockerfile
Normal file
@@ -0,0 +1,10 @@
|
||||
# Dockerfile
|
||||
|
||||
# 공식 MongoDB 이미지 사용
|
||||
FROM mongo:latest
|
||||
|
||||
# MongoDB 클라이언트 설치
|
||||
RUN apt-get install -y mongodb-org-shell && rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# 컨테이너 시작시 MongoDB 클라이언트 도구를 사용하여 스크립트 실행
|
||||
CMD mongosh localhost:27017/LogDB /docker-entrypoint-initdb.d/init-mongo.js
|
||||
Reference in New Issue
Block a user