first commit

This commit is contained in:
2024-08-22 14:05:05 +09:00
commit 1ab0d83941
34 changed files with 4083 additions and 0 deletions

View 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