Best of ContainersNovember 2020

  1. 1
    Article
    Avatar of hashnodeHashnode·6y

    How to easily understand Flexbox CSS - (Part 1)

    Flexbox CSS is a one dimensional layout model/method used for laying out items in a row or column fashion. Utilising flexbox allows you to create fully responsive, mobile first layouts. In the next part we'll look at some more specific properties we can use to justify-content to space out flex items inside our flex containers.

  2. 2
    Article
    Avatar of hashnodeHashnode·6y

    Docker Basics you need to know...

    Docker is an open-source platform that lets you build, run, and share applications with Containers. The Docker installation package available in the official Ubuntu repository may not be the latest version. To install Docker from the official Docker repository, we’ll add a new package source, add the GPG key from Docker, and then install the package.

  3. 3
    Article
    Avatar of swlhThe Startup·6y

    How to Train a Real-Time Facemask Object Detector With Tensorflow Object Detection API (TFOD2)

    How to Train a Real-Time Facemask Object Detector With Tensorflow Object Detection API (TFOD2) horczech Follow Nov 11, 2020 · 10 min read this tutorial. The goal of this tutorial is to provide a detailed, step-by-step tutorial that can be followed by anyone with elementary programming skills.

  4. 4
    Article
    Avatar of hashnodeHashnode·6y

    Containerize your web application & deploy it on Kubernetes

    A containerized development environment is easy to manage and share with other developers as it can be easily deployed without any change to their standard environment. In this tutorial, we will create a simple web app using flask & name it app.py. We will then containerize our application by creating an image using Dockerfile. Finally, we'll deploy everything on kubernetes.