Skip to content

Instantly share code, notes, and snippets.

@chrisvasqm
Created August 3, 2024 23:18
Show Gist options
  • Select an option

  • Save chrisvasqm/16bd89377d04cfcc9228b4cc2ac42e6e to your computer and use it in GitHub Desktop.

Select an option

Save chrisvasqm/16bd89377d04cfcc9228b4cc2ac42e6e to your computer and use it in GitHub Desktop.
Dockerized MongoDB
services:
database:
image: mongo
container_name: mongodb
ports:
- 27017:27017
volumes:
- mongo-data:/data/db
networks:
- mongo-network
networks:
mongo-network:
volumes:
mongo-data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment