Best of Docker β€” March 2022

  1. 1
    Article
    Avatar of devtoDEVΒ·4y

    Docker: Explained to a 5 year old. πŸ‘ΆπŸ»

    Docker is a way to containerize applications (putting code in boxes that can work on their own) Containers are boxes that have no host Operating system, so they are independent of the device they run on. A Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an image.

  2. 2
    Article
    Avatar of vscodeVisual Studio CodeΒ·4y

    The problem with tutorials

    Tutorials on how to use Remote Containers in Visual Studio Code have low completion rates. Laravel PHP project elegantly implements this in their own tutorials to great effect. The idea behind containerized dev environments is that you develop inside of a Docker container. The Remote - Containers extension for VS Code does exactly this.

  3. 3
    Article
    Avatar of devgeniusDev GeniusΒ·4y

    Get started with Docker and Docker Compose

    Docker is a set of platform as a service (PaaS) products that use OS-level virtualization to deliver software in packages called containers. The service has both free and premium tiers. The software that hosts the containers is called Docker Engine. Get started with Docker and Docker Compose.

  4. 4
    Article
    Avatar of towardsdevTowards DevΒ·4y

    6 steps to set up linux server with Nginx Docker & SSL

    6 steps to set up linux server with Nginx Docker & SSL Szymon Kolber. Nginx is an open source web server alternative for Apache. It will encrypt all incoming and outgoing requests what will allow accessing our application through HTTPS. After all like everything takes us enormous amount of time it turned out to be pretty damn simple.

  5. 5
    Article
    Avatar of freecodecampfreeCodeCampΒ·4y

    How to Remove All Docker Images – A Docker Cleanup Guide

    The most popular technology for container management is Docker. Using containers can take a lot of disk space, and you will eventually end up with a full disk. This guide shows you how you analyze used disk space and clean up different Docker resources. All you need is a running Docker daemon and a terminal.

  6. 6
    Article
    Avatar of hashnodeHashnodeΒ·4y

    an open-source & self-hostable Heroku / Netlify alternative

    Coolify is an open-source & self-hostable Heroku / Netlify alternative. It runs docker containers (it will automatically install docker if docker is not present on the system) You can quickly create an application by adding GitHub as the source for applications. Any new push to the main branch will trigger the change.

  7. 7
    Article
    Avatar of towardsdevTowards DevΒ·4y

    3 Simple steps to set up Kafka locally using Docker

    Make sure that you have Docker installed on your machine. Download the spotify/kafka image and run the image as a docker container. Create your very first Kafka topic: There are currently no topics present on the Kafka broker, you can go ahead and create one to see if everything works as expected.