Last active
September 5, 2019 14:35
-
-
Save NyaGarcia/0767844cd052e07b3923b434731eba68 to your computer and use it in GitHub Desktop.
MongoDB Compose file with environment variables
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.1' | |
services: | |
db: | |
container_name: Mongo-db | |
image: mongo:latest | |
restart: always | |
volumes: | |
- ./myData:/data/db | |
environment: | |
- MONGO_INITDB_DATABASE=MyDatabase | |
- MONGODB_USER=Nya | |
- MONGODB_PASS=secretpassword | |
ports: | |
- 27020:27017 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment