Skip to content

Instantly share code, notes, and snippets.

@antoinebou12
Created November 2, 2022 01:46
Show Gist options
  • Save antoinebou12/007f63514e9d1b994b066c1a086f7692 to your computer and use it in GitHub Desktop.
Save antoinebou12/007f63514e9d1b994b066c1a086f7692 to your computer and use it in GitHub Desktop.
mongodb template docker-compose
version: '3.9'
services:
mongodb_container:
image: mongo:latest
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: rootpassword
ports:
- 27017:27017
volumes:
- mongodb_data_container:/data/db
volumes:
mongodb_data_container:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment