Skip to content

Instantly share code, notes, and snippets.

@gedharizka
Last active August 3, 2023 12:44
Show Gist options
  • Save gedharizka/f7f6b366d06a264768eb447d6162ea8a to your computer and use it in GitHub Desktop.
Save gedharizka/f7f6b366d06a264768eb447d6162ea8a to your computer and use it in GitHub Desktop.
Mongo DB
version: '3.1'
services:
mongo:
image: mongo:4.0
container_name: my-mongo-container
# restart: always
environment:
MONGO_INITDB_DATABASE: test_db
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: root123
ports:
- "27017:27017"
volumes:
- ./init-mongo.js:/docker-entrypoint-initdb.d/init-mongojs:ro
- ./mongo-volume:/data/db
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment