-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started π
Lyes S edited this page Jul 2, 2022
·
2 revisions
Table Of Contents
"MongoDB is a document database with the scalability and flexibility that you want with the querying and indexing that you need" [1] .
version: "3.9"
services:
mongo:
image: mongo
container_name: mongodb
restart: always
environment:
MONGO_INITDB_ROOT_USERNAME: ${MONGO_USER}
MONGO_INITDB_ROOT_PASSWORD: ${MONGO_PASSWORD}
MONGO_INITDB_DATABASE: ${MONGODB}
ports:
- ${MONGDB_PORT}:${MONGDB_PORT}
volumes:
- ./db/init:/docker-entrypoint-initdb.d
mongo-express:
image: mongo-express
container_name: mongo-express
restart: always
ports:
- ${MONGO_EXPRESS_PORT}:${MONGO_EXPRESS_PORT}
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: ${MONGO_USER}
ME_CONFIG_MONGODB_ADMINPASSWORD: ${MONGO_PASSWORD}
ME_CONFIG_MONGODB_URL: ${MONGODB_URL}
MONGO_USER=root
MONGO_PASSWORD=example
MONGODB=cooker
MONGODB_URL=mongodb://${MONGO_USER}:${MONGO_PASSWORD}@mongo:27017/
MONGDB_PORT=27017
MONGO_EXPRESS_PORT=8081
mongoimport --db cooker --collection recipes --drop --file /docker-entrypoint-initdb.d/recipes.json --jsonArray
mongoimport --db cooker --collection users --drop --file /docker-entrypoint-initdb.d/users.json --jsonArray
lyes-s ( β₯β£_β’β€ ) ~/Documents/learning-mongo $ docker-compose -f mongodb.yml --env-file .env up -d
Creating network "learning-mongo_default" with the default driver
Creating mongodb ...
Creating mongo-express ...
Creating mongo-express ... done
Creating mongodb ... done
URL : http://localhost:8081/
Β© 2024 | Lyes Sefiane
All Rights Reserved | CC BY-NC-ND 4.0