Skip to content

Instantly share code, notes, and snippets.

@malte-j
Created November 4, 2021 20:49
Show Gist options
  • Save malte-j/ba8d97803d758422203eb8224841b481 to your computer and use it in GitHub Desktop.
Save malte-j/ba8d97803d758422203eb8224841b481 to your computer and use it in GitHub Desktop.
mongo docker compose file
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