I will try to build Hugor via DOCKER this week

Post a reply


This question is a means of preventing automated form submissions by spambots.
Smilies
:smile: :sad: :eek: :shock: :cool: :-x :razz: :oops: :evil: :twisted: :wink: :idea: :arrow: :neutral: :mrgreen:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: I will try to build Hugor via DOCKER this week

Re: I will try to build Hugor via DOCKER this week

by Jizaboz » Sun Jan 23, 2022 2:57 pm

It's kind of a weird concept to grasp. A Docker container itself runs whatever operating system assigned to it via the "image". An image could be something like say an Nginx web server ready to go or just bare bones Alpine Linux.

So, if you have an application that requires multiple containers (RQ Workers, Nginx, ElasticSearch, Redis, python3 apps, etc) then using Kubernetes allows you to view, edit, create, and manage all of the Docker containers within the application's cluster.

Say you had a service running in one container running something like "python manage.py runserver" and while viewing your Kubernetes cluster in the Lens tool, you see that the service only starts then crashes after 1 minute due to a ram error. You then edit the "deployment template" of that service to allocate more RAM to the container via Lens, hit apply, and it auto relaunches with the required amount of RAM.

This article explains the differences better than I can though https://www.ibm.com/cloud/blog/containers-vs-vms

Re: I will try to build Hugor via DOCKER this week

by Tdarcos » Sun Jan 23, 2022 10:20 am

So Kubernetes is like a VM Hypervisor and Docker is like the guest operating system that holds clients? Or am I misunderstanding what is involved?

Re: I will try to build Hugor via DOCKER this week

by Jizaboz » Thu Jan 06, 2022 3:17 pm

Tdarcos wrote: Wed Jan 05, 2022 2:48 pm Does this include Kubernetes? I have heard the two work together in some contexts.
Kubernetes wouldn't really be all that useful in the case of a Hugo game. Basically Kubernetes is used to scale resources for things such as deployments to online production environments with zero downtime.

You are right though in the matter of say you were using the "Lens" tool to visualize a Kubernetes cluster; commonly inside of that cluster are indeed Docker containers running.

Re: I will try to build Hugor via DOCKER this week

by Tdarcos » Wed Jan 05, 2022 2:48 pm

Does this include Kubernetes? I have heard the two work together in some contexts.

I will try to build Hugor via DOCKER this week

by Ice Cream Jonsey » Sat Jan 01, 2022 9:03 pm

realNC told me how to do it, I just have not had time. So I'll try to take time this week. Won't you join me on this thread?

Top