Skip to content

Instantly share code, notes, and snippets.

@adrianolsk
Created October 15, 2017 22:01
Show Gist options
  • Save adrianolsk/06d9c4d215e0fae022b973d1467f3694 to your computer and use it in GitHub Desktop.
Save adrianolsk/06d9c4d215e0fae022b973d1467f3694 to your computer and use it in GitHub Desktop.
Mongo docker compose file
version: '2'
services:
mongodb:
image: mongo:3.4.6
container_name: "MONGO"
environment:
- MONGO_DATA_DIR=/data/db
- MONGO_LOG_DIR=/dev/null
volumes:
- ./data/db:/data/db
ports:
- 27017:27017
command: mongod --smallfiles --logpath=/dev/null # --quiet
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment