Hey Nelson ,Thanks a lot for every thing really you've helped a lot and I'm waiting for mongodb with spring boot, there is only 1 problem I didn't find the docker-compose.yaml file I've already created one of my own , but just for every one else if you could possibly share it 🙏🙏🙏.
On top of that nowadays db.student.insert(student) will trow: insertDeprecationWarning: Collection.insert() is deprecated. Use insertOne, insertMany, or bulkWrite.
docker-compose.yaml text information below: (*note*: I left out the "environment" fields because a number of comments say they had trouble with those fields): version: “3.8” services: mongodb: image: mongo container_name: mongodb ports: - 27017:27017 volumes: - data:/data mongo-express: image: mongo-express container_name: mongo-express restart: always ports: - 8081:8081 volumes: data: {} networks: default: name: mongodb_network
42:47 db.student.insert(student) will trow: insertDeprecationWarning: Collection.insert() is deprecated. Use insertOne, insertMany, or bulkWrite. On top of that db.student.count() will thow: DeprecationWarning: Collection.count() is deprecated. Use countDocuments or estimatedDocumentCount.
Thanks for your videos! I just have one question. You've said that there will be a link to the docker-compose.yaml file in your description, yet it is not there. Thanks once again! Great explanations.
Great teacher but so many ads and breaks inbetween like come on. Plus the files you mentioned aren't even to be seen, despite so many people mentioning this in the comments. How disappointing.
Great Tutorial, I know MySQL database very will but for Mongo DB my previous knowledge was how to use it with Spring Boot only, now I had a really good idea how to do Basic CRUD queries and so on. Thanks Nelson
Example files are missing, I re-created similar ones from internet resources but the examples shown by the author on the screen need tweaking in order to make docker compose file working. This video is 90% advertisement of the commercial course. Zero info about working with docker on Windows (you need to enable experimental mode, adapt docker desktop settings). Waste of time. You will learn trivial things not too useful in real life.
The yaml part and explanation was not good enough, this should be a beginner course but you passed very quickly on yaml part and now I have been wasting my time to fix problems. Environment set up is one the most problematic area of software engineering, please mind that.
i like your tutorial video amigo! as a chinese and english not so good, your speed are just good for me . Your teching way are very suit for 0 pre-knowleage learner to learn MongoDB or Java. BTW, Your Java tutorial also helpful and good for new learner .
thanks for the course :) is there any way to upload/interact with the data on mongo express/docker using scripts in Visual Studio instead of the terminal?
hi brother , I am unable to connect to mongoexpress from local host url ,although my port mapping is same and I can see containers created from docker desktop
so mongodb can return an incorrect data as a response to .find() function, in case if you'll make a mistake in request? or what? you should have explained this moment better :/
To Gain a certificate enrol with 20% Off - amigoscode.com/p/mongodb/?product_id=3121799&coupon_code=MONGO20
Hey Nelson ,Thanks a lot for every thing really you've helped a lot and I'm waiting for mongodb with spring boot, there is only 1 problem I didn't find the docker-compose.yaml file I've already created one of my own , but just for every one else if you could possibly share it 🙏🙏🙏.
where did you put the code of you video man??
cant find it anywhere
If I take this course , Can I get a certificate?
where is the docker-compose yml file?
version : "3.8"
services:
monogodb:
image: mongo
container_name: mongo
ports:
- "27017:27017"
volumes:
- ./data:/data
environment:
- MONGO_INITDB_ROOT_USERNAME=rootuser
- MONGO_INITDB_ROOT_PASSWORD=rootpass
monogo-express:
image: mongo
container_name: mongo-express
restart: always
ports:
- "8080:8080"
environment:
- ME_CONFIG_MONGODB_ADMONUSERNAME=rootuser
- ME_CONFIG_MONGODB_ADMONPASSWORD=rootpass
- ME_CONFIG_MONGODB_HOST=mongo
volumes:
- data: {}
networks:
default:
name: mongodb_network
I'm so glad you didn't cut out the misstakes you made, that helps so much more to understand whats going on.
For those wondering, the mongo command has been renamed to mongosh
You literally saved my life. Thanks a lot
Thanks a lot bruh!!
On top of that nowadays db.student.insert(student) will trow: insertDeprecationWarning: Collection.insert() is deprecated. Use insertOne, insertMany, or bulkWrite.
it took me half an hour to understand why the command was not working. What is wrong on my machine!
Thanks a lot!!!
Where is the yaml file (11:22)?
can not find it as well?!!
He never put the files on any of his videos. Guess it just a way to trick us into his sponsored links and pay material...😡
docker-compose.yaml text information below: (*note*: I left out the "environment" fields because a number of comments say they had trouble with those fields):
version: “3.8”
services:
mongodb:
image: mongo
container_name: mongodb
ports:
- 27017:27017
volumes:
- data:/data
mongo-express:
image: mongo-express
container_name: mongo-express
restart: always
ports:
- 8081:8081
volumes:
data: {}
networks:
default:
name: mongodb_network
Surprised you don't have more followers, the quality of your video's are absolutely amazing.
Thanks from Russia :) Good stuff for weekend!
Дороу
i cant find the docker composed yamal file in the description
42:47 db.student.insert(student) will trow: insertDeprecationWarning: Collection.insert() is deprecated. Use insertOne, insertMany, or bulkWrite.
On top of that db.student.count() will thow: DeprecationWarning: Collection.count() is deprecated. Use countDocuments or estimatedDocumentCount.
It will be so useful if you make a video about spring
microservice
you're my hero, I don't have money to pay for your course but soon I'll asign up, really, you're awesome man!
Thanks for your videos!
I just have one question.
You've said that there will be a link to the docker-compose.yaml file in your description, yet it is not there.
Thanks once again! Great explanations.
version: "3.8"
services:
mongodb:
image: mongo
container_name: mongodb
ports:
- 27017:27017
volumes:
- data:/data
environment:
- MONGO_INITDB_ROOT_USERNAME=root
- MONGO_INITDB_ROOT_PASSWORD=Batoul123456*
mongo-express:
image: mongo-express
container name: mongo-express
restart: always
ports:
- 8081:8081
- environment:
- ME_CONFIG_MONGODB_ADMINUSERNAME=root
- ME_CONFIG_MONGODB_ADMINPASSWORD=Batoul123456*
- ME_CONFIG_MONGODB_SERVER=mongodb
volumes:
data: {}
networks:
default:
name: mongodb_network
docker-compose.yaml missing
student.js file is also missing..
Where is that file???
where to get it
where is the Docker file in the discription as u mentioned in the video
Just with the title you know this is going to be an amazing tutorial.
Thank you so much!
I can't find the docker yaml file
And a comment for the RUclips algorithm.
Great video!
where do i find docker compose yml ??
I can't find the docker-compose.yaml file in the description. Can anybody link it to me please?
i paused the video and copied it xD:
here you go
version: "3.8"
services:
mongodb:
image: mongo
container_name: mongodb
ports:
- 27017:27017
volumes:
- data:/data
environment:
- MONGO_INITDB_ROOT_USERNAME=rootuser
- MONGO_INITDB_ROOT_PASSWORD=rootpass
mongo-express:
image: mongo-express
container_name: mongo-express
restart: always
ports:
- 8081:8081
environment:
- ME_CONFIG_MONGODB_ADMINUSERNAME=rootuser
- ME_CONFIG_MONGODB_ADMINPASSWORD=rootpass
- ME_CONFIG_MONGODB_SERVER=mongodb
volumes:
data: {}
networks:
default:
name: mongodb_network
@@habibleila405 Thank you very much.
@@ydhsu3853 yw
@@habibleila405 thank you hooo...
@@habibleila405 youre a life saver
hi man where can i find the files that you show in the video ?
there is no link for ...
there's no docker-compose file in the description?
Great content Nelson. Learning alot from you bro.
I couldn't figure out how it all connected (CRUD) until I stumbled upon this brother. Each one teach one💜💪
No question is silly question !! congratulations!
hi just want to know where you have shared the docker yaml file.
Great teacher but so many ads and breaks inbetween like come on. Plus the files you mentioned aren't even to be seen, despite so many people mentioning this in the comments. How disappointing.
You have inspired me so much - thank you for teaching in perfect simplicity! Much love from New Orleans! 💪
i never thought MongoDB was soo easy... thanks nelson!!
Thanks from India!
where is reference to docker-compose attached?
Nice one Nelson, you are just the right guy!
Love you Brother ❤ Jazak Allah 🤲🏻
Thanks for the course, Nelson! Really outstanding work.
cromaleños
Can someone help me?
why my docker-compose container state is always restarting?
how did you get the docker compose to work ?
Absolutely amazing. thank you And Eid Mubarak
As salamu alaikum Nelson! You with that contagious smile! Thanks for this NoSQL course, I'll checkout the one on the site
Please upload a video series on MERN Stack. Waiting for the awesome video of MERN Stack. Thank u so much for the awesome videos. :-)
sorry mate, the docker intro is nonsense, pretty sure no on understood anything
thanks a lot ! That was very helpful
Walaikumassalam Sir, Great Content
Great Tutorial, I know MySQL database very will but for Mongo DB my previous knowledge was how to use it with Spring Boot only, now I had a really good idea how to do Basic CRUD queries and so on. Thanks Nelson
Best Course for beginners!
Thanks so much.The video is just gr8👍
Masha Allah Brother!!!!
Amazing lesson! Jazakallahu hayron
where is the docker-compose file?
Example files are missing, I re-created similar ones from internet resources but the examples shown by the author on the screen need tweaking in order to make docker compose file working. This video is 90% advertisement of the commercial course. Zero info about working with docker on Windows (you need to enable experimental mode, adapt docker desktop settings). Waste of time. You will learn trivial things not too useful in real life.
Agreed.. not easy to follow with all the changes you have to make on your own end
Just don't use windows for docker
Great Course . thanks !
You have smart teaching method
thank you for this video. Its an amazing tutorial!
Thank you from Uzbekistan
The yaml part and explanation was not good enough, this should be a beginner course but you passed very quickly on yaml part and now I have been wasting my time to fix problems. Environment set up is one the most problematic area of software engineering, please mind that.
can you share the yaml file please
Great video, thank you so much♥
Thank you bro for amazing and useful course.
Assalamualaikum. Thanks for this course waiting for something like this.
Excellent, Thank you
و عليكم السلام و رحمة الله
Thanks for the video very good quality and professional
Thank you Nelson !! shukren
alssalaamo aalayka va rahmatollah va barakaatoho....
baraka allahou fik akhi
بارك الله فيكم يا أخي الكريم
Where's the yaml file?
wow chuch kool vied! it helpt very many :D *Rawr*
thaaank you for your time and efforts
Do you offer live trainings?
Hi Nelson, can I take the course on mongodb without knowledge in programming?
Thanks for the tips
Assalamualaikum.. Mr .. I'm From Lombok Indonesia.. 😊😊😊 .. thanks alot for your vide.. 🙏🙏
Can this be used on websites as well
awesome video, learnt a lot!!!!
Thank you.
i like your tutorial video amigo! as a chinese and english not so good, your speed are just good for me . Your teching way are very suit for 0 pre-knowleage learner to learn MongoDB or Java. BTW, Your Java tutorial also helpful and good for new learner .
you have not given srudent.js file in the description
Is it normal in mogodb that we have to write the group names again and again in every document?
love this man
Walaikumk assalam ..... dear teacher ... 😊😊😊😊😊
Mashallah brozzer! Had no idea you were muslim. Your videos have been tremendous help to me and I'm sure this one will be tremendous help as well!
I got an error pull access denied for mongodb, repository does not exist
thanks for the course :) is there any way to upload/interact with the data on mongo express/docker using scripts in Visual Studio instead of the terminal?
Thanks you for your good jobs
Superb job.
Where is the data on the local drive? I don't see a database in the local folder?
How much is the training and how long does it take?
Thanks for this video
amazing, thanks a lot. Do they have joins in Mongo?
Jazakallah Khair
WHERE IS YOUR YAML in decription ha?
Thanks for the lesson
I have been looking for the best mongo db lessons for a long time
finally I found it
Hello, l am looking for 1 on 1 instructor led MongoDB training. Could you advise? Thanks
hi bro
actually i need this
tnx.
You are amazing
can't find the yaml file to setup docker
hi brother , I am unable to connect to mongoexpress from local host url ,although my port mapping is same and I can see containers created from docker desktop
same here, were you able to resolve the issue?
so mongodb can return an incorrect data as a response to .find() function, in case if you'll make a mistake in request? or what? you should have explained this moment better :/
Alaikumsalam .. as always useful and Clear content. Thank u very much
Thanks very much
Thanks for usefull tutor about working with mongodb.
Why don't you create a tutorial about reactive programming with spring boot?
can you explain how to install docker on windows ?
I have faced many problems
The best MongoDB tutorial ever
dear nelson
can you you make a tutorial for angular full course , thanks
Bro, I am working as a autocad draftsman for 10+ years is possible to shift to data analyst. Hope you will reply,jazakallkhir