Created
June 20, 2024 10:34
-
-
Save rlaace423/5c8abefc4a75d3075889bc76c68cac09 to your computer and use it in GitHub Desktop.
mongo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.9" | |
services: | |
mongo: | |
image: mongo:4.4 | |
container_name: mongo | |
networks: | |
- mongo | |
ports: | |
- "27017:27017" | |
volumes: | |
- type: bind | |
source: /Users/sam/mongo/data | |
target: /data/db | |
networks: | |
mongo: | |
name: mongo | |
driver: bridge |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment