Created
November 4, 2021 20:49
-
-
Save malte-j/ba8d97803d758422203eb8224841b481 to your computer and use it in GitHub Desktop.
mongo docker compose file
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.1' | |
services: | |
db: | |
image: mongo | |
environment: | |
MONGO_INITDB_ROOT_USERNAME: mongousr | |
MONGO_INITDB_ROOT_PASSWORD: mongorootpwd | |
#volumes: | |
# - mongodata:/data/db | |
ports: | |
# https://github.com/docker-library/mongo/issues/177#issuecomment-301945353 | |
- "127.0.0.1:27017:27017" | |
#volumes: | |
#mongodata: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment