Hey Raw Coding, nice to meet you! I just found your channel and subscribed, love what you're doing! I like how clear and detailed your explanations are as well as the depth of knowledge you have surrounding the topic! Since I run a tech education channel as well, I love to see fellow Content Creators sharing, educating, and inspiring a large global audience. I wish you the best of luck on your TH-cam Journey, can't wait to see you succeed! Your content really stands out and you've put so much thought into your videos! Cheers, happy holidays, and keep up the great work!
That was really a helpful tuto about Docker ,easy to follow easy understand;,thank you so much sir,Please if you could provide some good instructions how to add ssl certificate to our docker app
I’ve not used k8 before but I know what it is and what problem it solves. I’ll take a look if I can make a tutorial with an example or at least relay the concept.
Thank you for the great video. I have a question. Let's assume that I have a build pipeline in Azure DevOps which creates an image and uploads it into the repository. How do I deploy and startup the image using Azure DevOps release pipeline to on Premise PC ?
Hey there, not sure, haven’t worked with on prem for a while. I’m guessing you might have to host your own azure dev ops, or use a vpn that can connect to it. Otherwise it’s about figuring out the manual steps and then putting it in to a bash script.
Hey Anton. Been studying Docker a couple of days and I'm struggling a little. See, I have this project that uses Selenium Webdriver to fetch data from some site. I had to use Selenium Docker as a separate container and then deploy my application and database in 2 more separated containers and hook them up with "docker network connect "myNetwork" "containerId". I was able to run my project and Selenium this way, but it is quite cumbersome setup to make and I feel like a freaking caveman, lol. I heard docker compose would help me to setup the application more easily. But, all the tutorials I've seen start with all dependencies inside the project, in Visual Studio. Mine would have a created Selenium container in docker already, so, there is where I get lost. Could you point me in the right direction, maybe something to read or a video? (Also sorry if I wasn't clear enough. English is not my main language.) Thank you!
Hi IndieBeto docker compose seems like the right tool for the job, docker is not always easy. If you don't own the selenium image, just specify it in the yml file, you don't need it as a source.
Thanks, and yea I uploaded my settings here: gist.github.com/T0shik/6cca262ce0cd6fece11d6c751272b8d2 I also use JetBrains Mono font: www.jetbrains.com/lp/mono/
Good tutorial! By any chance, do you know of any Blazor (WASM, Server) with a Dockerfile example on .net 5 ?? All the latest examples are on .net core 3.1 and those docker files don't work with the template projects from "dotnet new blazorwasm/blazorserver" on .net 5 Hopefully my questions makes sense..
I'm under the impression that Docker CE is now deprecated. github.com/docker/docker-ce AND here: docs.docker.com/engine/release-notes/#20100 I could be wrong however, because I'm pretty new to this.
Donation links in description, share, like etc... I’ll be launching a store soon so if you’d like to wait a little bit so instead of donating rather purchase something from there and get something in return.
Hey Raw Coding, nice to meet you! I just found your channel and subscribed, love what you're doing!
I like how clear and detailed your explanations are as well as the depth of knowledge you have surrounding the topic! Since I run a tech education channel as well, I love to see fellow Content Creators sharing, educating, and inspiring a large global audience. I wish you the best of luck on your TH-cam Journey, can't wait to see you succeed! Your content really stands out and you've put so much thought into your videos!
Cheers, happy holidays, and keep up the great work!
Thanks for the kind words, wish you luck as well :)
You're the best as always! The most clear explanation ever!
Thanks!
To have a general idea of how to use Docker, everyone must go through this small tuto :) thank man
Thank you 🙏
This was very helpful, I started learning docker yesterday. 🙂
Glad I could help
Hey man, this content is exactly what I was looking for. You are the greatest as always. Regards!
Glad I could help :)
Thank you for this Anton 👍🏽
Thank you for watching :)
Nice one! Thanks for this vid!
Thank you for watching
Nice! Thanks for this awesome video!
Thank you for watching)
The most attractive and the best teacher 🤘🏻
Haha cheers :D
More docker videos!
There will be a couple but what would you like to see?
That was really a helpful tuto about Docker ,easy to follow easy understand;,thank you so much sir,Please if you could provide some good instructions how to add ssl certificate to our docker app
Control it from the outside
@@RawCoding you meant adding at the dropley level m using digital ocean to spin up an ubuntu server
You can set it at the reverse proxy level (nginx or caddy) or some dedicated cloud service
dam man i was waiting for such a thing
The wait is over
Very helpful and informative. Please, keep going!!! Will you also cover k8s in the future ?
I’ve not used k8 before but I know what it is and what problem it solves. I’ll take a look if I can make a tutorial with an example or at least relay the concept.
Thank you for the great video.
I have a question. Let's assume that I have a build pipeline in Azure DevOps which creates an image and uploads it into the repository.
How do I deploy and startup the image using Azure DevOps release pipeline to on Premise PC ?
Hey there, not sure, haven’t worked with on prem for a while. I’m guessing you might have to host your own azure dev ops, or use a vpn that can connect to it. Otherwise it’s about figuring out the manual steps and then putting it in to a bash script.
Hey Anton. Been studying Docker a couple of days and I'm struggling a little. See, I have this project that uses Selenium Webdriver to fetch data from some site. I had to use Selenium Docker as a separate container and then deploy my application and database in 2 more separated containers and hook them up with "docker network connect "myNetwork" "containerId". I was able to run my project and Selenium this way, but it is quite cumbersome setup to make and I feel like a freaking caveman, lol.
I heard docker compose would help me to setup the application more easily. But, all the tutorials I've seen start with all dependencies inside the project, in Visual Studio. Mine would have a created Selenium container in docker already, so, there is where I get lost.
Could you point me in the right direction, maybe something to read or a video? (Also sorry if I wasn't clear enough. English is not my main language.)
Thank you!
Hi IndieBeto docker compose seems like the right tool for the job, docker is not always easy. If you don't own the selenium image, just specify it in the yml file, you don't need it as a source.
@@RawCoding Thanks man I'll keep trying. I'll report when I get it done.
Your terminal looks sick! Can you share your settings.json for the terminal theme?
Thanks, and yea I uploaded my settings here: gist.github.com/T0shik/6cca262ce0cd6fece11d6c751272b8d2
I also use JetBrains Mono font: www.jetbrains.com/lp/mono/
Good tutorial! By any chance, do you know of any Blazor (WASM, Server) with a Dockerfile example on .net 5 ?? All the latest examples are on .net core 3.1 and those docker files don't work with the template projects from "dotnet new blazorwasm/blazorserver" on .net 5
Hopefully my questions makes sense..
Makes sense, have you tried Googling?
@@RawCoding yeah I have, and haven't really found anything at the moment.
I'm under the impression that Docker CE is now deprecated. github.com/docker/docker-ce AND here: docs.docker.com/engine/release-notes/#20100 I could be wrong however, because I'm pretty new to this.
The repository is being deprecated, not the tool.
@@RawCoding thank-you very much for the clarification.
❤🔥
Amazing explanation! Well, as always:) How can subscribers help your channel to grow? Donations?
Donation links in description, share, like etc...
I’ll be launching a store soon so if you’d like to wait a little bit so instead of donating rather purchase something from there and get something in return.
Sorry, but this is terrible. Plenty of far better resources both on yt and net in general.
Terrible comment, no feedback nor links to better content. 0/10