This is the first time I am watching one of your videos. I loved how you explained the basics of docker compose in such a short amount of time. Thanks a lot for the amazing content!
Ive playing with docker for past 1 month. This video definitely had help me understand better what those lines means. Now i know how to create docker compose for docker container that the dev team doesn't provide one. Appreciate your video
I first used this method after version "3" yaml files were not accepted by portainer stacks without switching to swarm mode. Super useful additional information in this video.
Awesome videos! Thank you for all your content! Learning Docker with you has been lots of fun :) ...and I'm very jealous of the look of your desktop! That menu up top and that data breach background...love it!
What is the best way to install docker compose? I installed docker compose with using the docker repository (docker-compose-plugin), with that method I just get the Version v2.14.1. I searched in the docker documentation how to update/upgrade to a newer version, it just says to remove and install the docker-compose-plugin again. So how do I get ther Version 3? Is that just possible if you use another method of installing docker compose?
Simple and understandable explanation, actually I was looking for an explanation of "links" in compose file. Could you please make another video on installing Magento? It would be really helpful for another developer also. Thanks.
May you please elaborate more on docker compose like what is the use of below:- Version: '3.7' services: Jwt_API: build: Context: . dockerfile: Dockerfile environment: - Any name Image: jwt_API:latest Container_name: jwt_API Volumes: - ".:/qbc" Ports: -"anyport" Why we have used build, context, dockerfile, containername etc above.
Hi, can I install docker on a subfolder? The main subdomain that my team is using has already installed with Wordpress. So, we want to install a subfolder inside that subdomain. The subfolder will then contains a PHP based application that uses a database. Where to create a database from there? Please let me know. I am new to this. I usually use just basic shared hosting.
it's hard to find the issue here in the comment section, so why don't you come to our Discord Community, and post some details about your setup, maybe somebody can help you out ;)
Hi, thanks for your videos, they are awesome. I have a question in general about docker-compose...if I want to spin up two different Nextcloud instances that have access to the same database application but different DB names, how would that look? Can I just add this to the compose file with different names? Thanks a lot!!
Sure, that will work. You need to make sure that both nextcloud instances can connect to the same database and then configure separate databases in the config.
Do you need Docker-compose to run a docker container? I managed to get Portainer up and running without installing Docker-compose. Could that be something new? Also heard that Kubernetes now comes with a very minimal way of running Docker...
You Don't need docker compose to run containers, it just simplify deploying multiple containers. Kubernetes has their own implementation of a container runtime, they used docker in the past.
@@christianlempa right now i'm working as Noc engineer , now i want to pursue devops tools ,can i learn docker and kubernates ,please suggest me tools to crack a job as devops engineer
Hi Christian. Thanks for the awesome work you do! I followed many of your videos, and they helped me a lot. If you have time to answer my question, that would be great, because I can't find a solution for my problem in Docker-Swarm. I've installed "Ghost CMS" on Docker Swarm, along with NGINX-Proxy-Manager. Everything works as expected, except the Ghost CMS. When I deploy Ghost as a service with multiple instances, I can't login. I get to the login page, put the user & pw and hit enter, and I'l get thrown back to the login screen once again. This does not happen if I deploy Ghost with only 1 instance, either as a service or container. I have a NFS share for the Worker Nodes & the Master, so they can access all the same data of Ghost. Do you have any Idea for me Christian? ;-) Have a great day and continue your fantastic job here on YT. Thanks cheers...
Christian, I think your videos are great, and I enjoy your choice of topics. But why do you caption your channel, "Become an IT Professional?" I am a 71 year old retired lawyer, and I have no interest in becoming an IT Professional. However, I think your tutorials and coverage are great, and I will use many of the things you've taught me on my home network. Vielen Dank für die ausgezeichnete Informationen!
Thank you so much for the kind words 🥰, this is a good question! That's why most of my content is geared towards common IT industry standards and also educates people in what they need in IT jobs. I also want to cover more IT career tips and certs. However, some of my viewers are not working in IT but use this for home lab and projects, which is totally fine and I also want to do more content for home labs as well. But I get it, the caption is something I probably will remove from my branding in the future. Vielen Dank für deine tollen Kommentar!
All your video tutorials are so good, you explain all the functions of each line or code, etc.Thank you.
This is the first time I am watching one of your videos. I loved how you explained the basics of docker compose in such a short amount of time. Thanks a lot for the amazing content!
Thank you so much! :)
Ive playing with docker for past 1 month. This video definitely had help me understand better what those lines means. Now i know how to create docker compose for docker container that the dev team doesn't provide one. Appreciate your video
This was a really great video explaining better than I've seen before. Thank you for sharing and keep sharing. Love your content!
Glad it was helpful!
Simple and Understandable docker-compose explanation. Excellent illustration !!. Thanks and gratitude to you !!
need a petition to have this man replace Mr Tiebe
This channel is a real discovery thank you for this amazing explanation.
I first used this method after version "3" yaml files were not accepted by portainer stacks without switching to swarm mode. Super useful additional information in this video.
Thanks for your time.
Thanks for watching! :)
Awesome videos! Thank you for all your content! Learning Docker with you has been lots of fun :) ...and I'm very jealous of the look of your desktop! That menu up top and that data breach background...love it!
Could you possibly do a video on how to setup windows to look like yours?🤓
Thank you so much!
I've done some videos, maybe take a look at the YT search :) but as I'm not using windows anymore, there is nothing new I can show :D I'm sorry
I think the -d is to run the container in Detached mode, so that it runs in the background
exactly! :)
Very understandable explanation.
Thx
this guy knows his shiat. bravo !
superb. Thank you for creating this tutorial.
You are welcome 😊
I was looking for some tips how to setup a new network with self-defined IP-addresses with docker compose.
Thank you, just beginner, I have more to learning ! :)
Thanks mate! Keep it going :)
Great example
Thanks!
Thank you very much!
Just what I was looking for!
Gracias!
Thank you! I'm glad it was helpful to you.
Man,you made it so simple!! Thanks
Glad it helped!
Would you care to explain what it was you found difficult to understand before?
Nice video, dude!
Thanks!
What is the best way to install docker compose?
I installed docker compose with using the docker repository (docker-compose-plugin), with that method I just get the Version v2.14.1.
I searched in the docker documentation how to update/upgrade to a newer version, it just says to remove and install the docker-compose-plugin again.
So how do I get ther Version 3? Is that just possible if you use another method of installing docker compose?
Ik kijk dit voor besturingssystemen 2,
Tiebe thanks voor niks zeker?
Great video
Nice tut, looking for a docker setup for PHP?
Really 😃 great!
Thanks! 😃
U the best broo
Thank you :D
I hope you post more videos about docker compose
Yea, I've planned some more videos about it and also how to deploy them so stay tuned 😁👍
Simple and understandable explanation, actually I was looking for an explanation of "links" in compose file.
Could you please make another video on installing Magento? It would be really helpful for another developer also.
Thanks.
Thanks 😊 I will check when I could add this to a video, will take some time. Cheers
May you please elaborate more on docker compose like what is the use of below:-
Version: '3.7'
services:
Jwt_API:
build:
Context: .
dockerfile: Dockerfile
environment:
- Any name
Image: jwt_API:latest
Container_name: jwt_API
Volumes:
- ".:/qbc"
Ports:
-"anyport"
Why we have used build, context, dockerfile, containername etc above.
This is when you want to build your own docker images. I will make some tutorials on that in the future, but I don't know when.
Спасибо! Ты лучший!
really good video! thank you !
Thanks! You're welcome
Hi, can I install docker on a subfolder? The main subdomain that my team is using has already installed with Wordpress. So, we want to install a subfolder inside that subdomain. The subfolder will then contains a PHP based application that uses a database. Where to create a database from there? Please let me know. I am new to this. I usually use just basic shared hosting.
[docker_entrypoint:crit] [pid 1] DOCKER: mkdir /data/etc: permission denied :D DOCKER ist so GEIL
Great video! this was really helpful!
Glad it was helpful!
Very Nice , I am trying to create a container with OMV docker images. please suggest
it's hard to find the issue here in the comment section, so why don't you come to our Discord Community, and post some details about your setup, maybe somebody can help you out ;)
@@christianlempa sure, do you have any forum or link to join the discord community
thankyou for such a nice and clear tutorial 👍👍 could you please make another video on deploying laravel or any other framework app using dockerfile.
Thank you for the kind words 😀, more docker content is planned, thanks for the good suggestion!
pywintypes.error: (2, 'CreateFile', 'The system cannot find the file specified.')
During handling of the above exception, another exception occurred:
Thanks! Great video!
Glad you liked it!
Tabs or spaces , how many do you need per indentation?
I'm sure you can use whatever you want, you just need to stick with one scheme.
Hi, thanks for your videos, they are awesome. I have a question in general about docker-compose...if I want to spin up two different Nextcloud instances that have access to the same database application but different DB names, how would that look? Can I just add this to the compose file with different names?
Thanks a lot!!
Sure, that will work. You need to make sure that both nextcloud instances can connect to the same database and then configure separate databases in the config.
Great!
can you share with us with your workspace theme?))
Like the background theme,please share the music
Do you need Docker-compose to run a docker container? I managed to get Portainer up and running without installing Docker-compose. Could that be something new?
Also heard that Kubernetes now comes with a very minimal way of running Docker...
You Don't need docker compose to run containers, it just simplify deploying multiple containers. Kubernetes has their own implementation of a container runtime, they used docker in the past.
@@christianlempa right now i'm working as Noc engineer , now i want to pursue devops tools ,can i learn docker and kubernates ,please suggest me tools to crack a job as devops engineer
Great
Hi Chritsian
how can we build a customized image using docker-compose? I have my dockerfile using docker-compose need to build image
You need to specify a "build" attribute that points to the folder of where your Dockerfile and the source files are located
What OS are you using? Can you make a video about your software setup?
I'm using Windows 10 and yeah I probably will do a video about my complete setup, so thank's for this suggestion :)
Good video.
Subscribed!!
Thank you bro 😀
Hi Christian. Thanks for the awesome work you do!
I followed many of your videos, and they helped me a lot.
If you have time to answer my question, that would be great, because I can't find a solution for my problem in Docker-Swarm.
I've installed "Ghost CMS" on Docker Swarm, along with NGINX-Proxy-Manager. Everything works as expected, except the Ghost CMS.
When I deploy Ghost as a service with multiple instances, I can't login. I get to the login page, put the user & pw and hit enter, and I'l get thrown back to the login screen once again. This does not happen if I deploy Ghost with only 1 instance, either as a service or container. I have a NFS share for the Worker Nodes & the Master, so they can access all the same data of Ghost.
Do you have any Idea for me Christian? ;-)
Have a great day and continue your fantastic job here on YT.
Thanks cheers...
Thank you so much! ;) TBH, I haven't used Docker Swarm before so there is not much I can tell you unfortunately :(
When you specify version "3" will it use 3.0 or latest "3.x" ?
It will always use the latest version you have currently installed, you only need to specify 3.x for backwards compatibility.
Could you go over the namespaces and cgroups ?
that's a good suggestion to cover it on a future video! I will add this to my backlog 😉
hm what about docker-sync ?
Christian, I think your videos are great, and I enjoy your choice of topics. But why do you caption your channel, "Become an IT Professional?" I am a 71 year old retired lawyer, and I have no interest in becoming an IT Professional. However, I think your tutorials and coverage are great, and I will use many of the things you've taught me on my home network. Vielen Dank für die ausgezeichnete Informationen!
Thank you so much for the kind words 🥰, this is a good question! That's why most of my content is geared towards common IT industry standards and also educates people in what they need in IT jobs. I also want to cover more IT career tips and certs. However, some of my viewers are not working in IT but use this for home lab and projects, which is totally fine and I also want to do more content for home labs as well. But I get it, the caption is something I probably will remove from my branding in the future. Vielen Dank für deine tollen Kommentar!
The background music was an issue. I wouldn't recommend playing music during class while the professor is teaching.
classical very light music is fine, but not upbeat.
dont ask me to subscribe before I've watched your video.
which os did you use?
Recently, I switched from Windows to MacOS
i can hardly see it pls change the back ground
great video. the lighting in your face looks a bit off
Thanks man 😊
sorry, not works-> sudo: docker-compose: comand not found
You may check out the docu about how to install docker-compose. Alternatively try out installing it via package management.
MariaDB > MySQL
docker commands should not be run as root user!