Last active
April 13, 2023 01:16
-
-
Save Hansanghyeon/73881dd6ba8534623ceb623eddc9ee25 to your computer and use it in GitHub Desktop.
몽고디비 docker-compose 환경
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.8' | |
services: | |
mongodb: | |
image: mongo | |
container_name: mongodb | |
restart: always | |
ports: | |
- 27017:27017 | |
volumes: | |
- mongodata:/data/db | |
environment: | |
- MONGO_INITDB_ROOT_USERNAME=root | |
- MONGO_INITDB_ROOT_PASSWORD=1234 | |
- MONGO_INITDB_DATABASE=mydb | |
volumes: | |
mongodata: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment