Created
January 3, 2024 17:23
-
-
Save robertolos/0152f7c83bd9e166548c6732c4f0aeaa to your computer and use it in GitHub Desktop.
docker-compose mongodb
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" | |
services: | |
db: | |
image: mongo | |
restart: always | |
ports: | |
- 27017:27017 | |
environment: #env variables to pass into the container | |
MONGODB_DATABASE: nest-course |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment