Skip to content

Instantly share code, notes, and snippets.

@av1v3k
Created March 26, 2026 11:57
Show Gist options
  • Select an option

  • Save av1v3k/1eda40c30b3b72561f86374863bf8ce9 to your computer and use it in GitHub Desktop.

Select an option

Save av1v3k/1eda40c30b3b72561f86374863bf8ce9 to your computer and use it in GitHub Desktop.
Docker compose file for spinning MONGODB
services:
mongodb:
image: mongo:latest
container_name: local-mongodb
restart: always
ports:
- "27017:27017"
environment:
MONGO_INITDB_ROOT_USERNAME: admin
MONGO_INITDB_ROOT_PASSWORD: password123
volumes:
- mongo-data:/data/db
volumes:
mongo-data:
driver: local
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment