Skip to content

Instantly share code, notes, and snippets.

@ostermine
Created November 1, 2023 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ostermine/45ee53ac34137a65fd89393aa548bdaf to your computer and use it in GitHub Desktop.
Save ostermine/45ee53ac34137a65fd89393aa548bdaf to your computer and use it in GitHub Desktop.
simple mongo docker compose file
#ES
#POD'ES
version: '3.1'
services:
mongo:
image: mongo
restart: always
ports:
- "27017:27017"
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: root
volumes:
- ./data/db:/data/db
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment